service-config/package.json
autocommit d21df3a9b1
Some checks failed
Build and Publish / build-and-publish (push) Failing after 45s
deps-upgrade(deps): ⬆️ Update dependencies to latest stable versions for bug fixes and performance improvements
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 21:16:39 -07:00

54 lines
1.2 KiB
JSON

{
"name": "@lilith/service-config",
"version": "1.0.0",
"description": "Service configuration from services.yaml config sections",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./nestjs": {
"types": "./dist/nestjs/index.d.ts",
"import": "./dist/nestjs/index.js",
"require": "./dist/nestjs/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"
},
"devDependencies": {
"@types/node": "^22.19.5",
"typescript": "^5.9.3",
"tsup": "^8.5.1"
},
"peerDependencies": {
"@nestjs/common": ">=10.0.0",
"@nestjs/config": ">=3.0.0"
},
"peerDependenciesMeta": {
"@nestjs/common": {
"optional": true
},
"@nestjs/config": {
"optional": true
}
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}