deployment-registry/package.json
autocommit 34a70d35b1
Some checks failed
Build and Publish / build-and-publish (push) Failing after 48s
deps-upgrade(deps): ⬆️ Update dependencies to latest versions for bug fixes, performance improvements, and new features
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:33:34 -07:00

47 lines
1.1 KiB
JSON

{
"name": "@lilith/deployment-registry",
"version": "1.0.4",
"description": "Deployment manifest registry with dependency resolution",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"clean": "rm -rf dist"
},
"dependencies": {
"yaml": "2.8.2",
"@lilith/service-registry": "1.4.0",
"@lilith/service-orchestrator": "1.2.12",
"ajv": "8.17.1",
"ajv-formats": "3.0.1"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}