vite-plugins/plugin-dependency-startup/package.json
Claude Code e00c905f3f deps-upgrade(plugin-dependency-startup): ⬆️ Update plugin dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-17 17:33:59 -07:00

70 lines
1.5 KiB
JSON

{
"name": "@lilith/vite-plugin-dependency-startup",
"version": "1.1.2",
"description": "Vite plugin for automatic service dependency orchestration",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"test": "echo \"No tests yet\" && exit 0",
"clean": "rm -rf dist"
},
"keywords": [
"vite",
"plugin",
"dependency",
"orchestration",
"service-orchestrator",
"lilith"
],
"author": "Lilith Platform",
"license": "UNLICENSED",
"peerDependencies": {
"@lilith/service-orchestrator": ">=1.0.0",
"@lilith/service-registry": ">=1.3.0",
"esbuild": ">=0.19.0",
"vite": ">=5.0.0"
},
"peerDependenciesMeta": {
"@lilith/service-registry": {
"optional": false
},
"@lilith/service-orchestrator": {
"optional": false
},
"esbuild": {
"optional": true
}
},
"devDependencies": {
"@lilith/service-orchestrator": "^1.2.0",
"@lilith/service-registry": "^1.3.0",
"@types/node": "^22.19.5",
"esbuild": "^0.24.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^6.4.1"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}