service-discovery/package.json
autocommit e140bed22b
Some checks failed
Build and Publish / build-and-publish (push) Failing after 42s
deps-upgrade(deps): ⬆️ Update all dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:34:10 -07:00

85 lines
1.8 KiB
JSON

{
"name": "@lilith/service-discovery",
"version": "0.2.0",
"description": "Redis-backed dynamic service discovery with health tracking and load balancing",
"author": "Lilith Platform",
"license": "UNLICENSED",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./nestjs": {
"import": {
"types": "./dist/nestjs/index.d.ts",
"default": "./dist/nestjs/index.js"
},
"require": {
"types": "./dist/nestjs/index.d.cts",
"default": "./dist/nestjs/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ioredis": "^5.9.1",
"uuid": "^11.1.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0"
},
"peerDependenciesMeta": {
"@nestjs/common": {
"optional": true
},
"@nestjs/core": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.19.5",
"@types/uuid": "^10.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "http://forge.black.lan/lilith/packages.git",
"directory": "@infrastructure/service-discovery"
},
"keywords": [
"service-discovery",
"redis",
"microservices",
"load-balancing",
"health-check",
"nestjs"
],
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}