Update all package.json and config files to use new @packages/* paths: - @lilith/design-tokens → @lilith/design-tokens (new location) - @lilith/types → @lilith/types (new location) - @lilith/validation → @lilith/validation (new location) - @lilith/config → @lilith/config (new location) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@lilith/health-client",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Health check utilities and indicators for the lilith platform services",
|
|
"author": {
|
|
"name": "QuinnFTW",
|
|
"email": "TransQuinnFTW@pm.me",
|
|
"url": "https://github.com/transquinnftw"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/transquinnftw/lilith-platform.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
|
},
|
|
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc",
|
|
"test": "vitest run --passWithNoTests",
|
|
"lint": "eslint . --ext ts"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/common": "^11.1.11",
|
|
"@nestjs/terminus": "^11.0.0",
|
|
"ioredis": "^5.3.0",
|
|
"pg": "^8.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/config": "workspace:*",
|
|
"@types/node": "^20.0.0",
|
|
"@types/pg": "^8.10.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|