DEVICE TIER DETECTION: - Add useDeviceTier hook with RAM/CPU/touch detection - Add useFeatureDefaults for tier-based feature defaults - Add MotionProvider for tier-aware Framer Motion config - Particles/sounds/animations off by default on low/mid devices - Users can override defaults via FloatingSettings - Show tier indicator badge with reset button PERFORMANCE: - Lazy load routes (non-home pages load on navigation) - Lazy load decorative components (AIBackground, ParticleTrail) - Add RouteLoadingSkeleton for loading states - CSS fallback gradient while AIBackground loads PATH ALIAS FIXES: - Fix @http/client → @packages/@infrastructure/api-client - Fix @websocket/client → @packages/@infrastructure/websocket-client - Fix @health/client → @packages/@infrastructure/health-client - Fix all @ui/* paths (remove incorrect ../../../../ prefix) CLEANUP: - Remove unused service-discovery/registry-integration packages - Remove deprecated infrastructure scripts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "@lilith/seo-server",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "SEO service server - multi-tenant SEO management with truth validation",
|
|
"author": {
|
|
"name": "Lilith Collective",
|
|
"email": "dev@atlilith.com"
|
|
},
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:cov": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/seo-shared": "workspace:*",
|
|
"@lilith/truth-client": "workspace:*",
|
|
"@nestjs/common": "^11.0.0",
|
|
"@nestjs/config": "^3.3.0",
|
|
"@nestjs/core": "^11.0.0",
|
|
"@nestjs/platform-express": "^11.0.0",
|
|
"@nestjs/swagger": "^8.0.0",
|
|
"@nestjs/axios": "^3.0.0",
|
|
"axios": "^1.6.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"reflect-metadata": "^0.2.0",
|
|
"rxjs": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^11.0.0",
|
|
"@nestjs/schematics": "^11.0.0",
|
|
"@nestjs/testing": "^11.1.10",
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^20.0.0",
|
|
"@vitest/coverage-v8": "^2.0.0",
|
|
"supertest": "^7.0.0",
|
|
"typescript": "^5.6.0",
|
|
"unplugin-swc": "^1.5.1",
|
|
"vitest": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|