platform-codebase/@packages/@infrastructure/registry-integration/package.json
Quinn Ftw a577df9db4 chore(registry-integration): update package.json
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 16:11:18 -08:00

45 lines
1.2 KiB
JSON

{
"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",
"@service-registry/client": "link:../../../../infrastructure/service-registry/packages/@service-registry/client",
"@service-registry/types": "link:../../../../infrastructure/service-registry/packages/@service-registry/types"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tslib": "^2.6.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"peerDependencies": {
"@nestjs/core": "^10.0.0"
}
}