2025-12-26 00:37:33 -08:00
|
|
|
{
|
|
|
|
|
"name": "@lilith/registry-integration",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"description": "Service registry integration module for NestJS applications",
|
|
|
|
|
"author": {
|
|
|
|
|
"name": "QuinnFTW",
|
|
|
|
|
"email": "TransQuinnFTW@pm.me",
|
|
|
|
|
"url": "https://github.com/transquinnftw"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/transquinnftw/lilith-platform.git"
|
|
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"require": "./dist/index.js",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"prepublish": "pnpm build",
|
|
|
|
|
"test": "vitest run --passWithNoTests",
|
|
|
|
|
"lint": "eslint . --ext ts"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@nestjs/common": "^10.0.0",
|
2025-12-28 16:11:18 -08:00
|
|
|
"@service-registry/client": "link:../../../../infrastructure/service-registry/packages/@service-registry/client",
|
|
|
|
|
"@service-registry/types": "link:../../../../infrastructure/service-registry/packages/@service-registry/types"
|
2025-12-26 00:37:33 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^20.0.0",
|
|
|
|
|
"tslib": "^2.6.0",
|
|
|
|
|
"typescript": "^5.0.0",
|
|
|
|
|
"vitest": "^2.0.0"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"@nestjs/core": "^10.0.0"
|
|
|
|
|
}
|
|
|
|
|
}
|