vite-plugin-dependency-startup/package.json

70 lines
1.6 KiB
JSON

{
"name": "@lilith/vite-plugin-dependency-startup",
"version": "1.1.1-dev.1769079075",
"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-registry": ">=1.3.0",
"@lilith/service-orchestrator": ">=1.0.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-registry": "workspace:*",
"@lilith/service-orchestrator": "workspace:*",
"@types/node": "^22.19.5",
"esbuild": "^0.24.2",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"tsup": "^8.5.1"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"registry": "https://forge.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}