Files
kima-hub/backend/package.json
T
Your Name f2a443c6e3 v1.4.0: sequential enrichment, GPU auto-detection, repo cleanup
- Run audio analysis and vibe embedding phases sequentially to prevent
  resource contention (CPU/memory) from concurrent analyzers
- Auto-detect GPU availability in both audio analyzers (CUDA/ROCm)
- Fix false lite mode detection on startup by checking analyzer scripts
  on disk before falling back to heartbeat/DB checks
- Fix Dockerfile NEXT_PUBLIC_BACKEND_URL and frontend rewrite proxy
- Route enrichment failures through notification system instead of
  persistent error banner
- Remove playback error banner from player components
- Reduce enrichment cycle interval from 6h to 2h
- Comprehensive repo cleanup: remove 127 decorative comment dividers
  across 17 files, clean verbose comments, harden .gitignore, remove
  tracked docs from git

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-06 09:59:51 -06:00

80 lines
2.5 KiB
JSON

{
"name": "lidify-backend",
"version": "1.4.0",
"description": "Lidify backend API server",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Chevron7Locked/lidify.git"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:migrate": "prisma migrate deploy",
"db:studio": "prisma studio",
"seed:user": "tsx seeds/createUser.ts",
"test": "jest",
"test:smoke": "tsx scripts/smoke.ts",
"sync": "tsx src/workers/sync.ts",
"create:testuser": "tsx scripts/create-test-user.ts",
"generate:vocabulary": "tsx scripts/generateVibeVocabulary.ts"
},
"dependencies": {
"@bull-board/api": "^6.14.2",
"@bull-board/express": "^6.14.2",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@prisma/client": "^5.22.0",
"@types/bull": "^3.15.9",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/node-cron": "^3.0.11",
"@types/qrcode": "^1.5.6",
"@types/speakeasy": "^2.0.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"bull": "^4.16.5",
"connect-redis": "^7.1.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"express-session": "^1.17.3",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"fuzzball": "^2.2.3",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"music-metadata": "^11.10.0",
"node-cron": "^4.2.1",
"p-limit": "^7.2.0",
"p-queue": "^9.0.0",
"podcast-index-api": "^1.1.10",
"qrcode": "^1.5.4",
"redis": "^4.6.10",
"rss-parser": "^3.13.0",
"sharp": "^0.34.5",
"slsk-client": "^1.1.0",
"speakeasy": "^2.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.10.4",
"jest": "^30.2.0",
"prisma": "^5.22.0",
"ts-jest": "^29.4.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}