Files
kima-hub/frontend/package.json
T
Your Name 60892c12e7 fix: multi-container docker-compose proxy, audiobookshelf sync bugs, add sync button
Fixes #158 -- fresh docker-compose install shows login instead of setup
wizard because Next.js rewrites were compiled with 127.0.0.1:3006 baked
in. Added NEXT_PUBLIC_BACKEND_URL as a Dockerfile build arg, defaulting
to http://backend:3006 in docker-compose.yml so the frontend container
proxies to the backend service correctly.

Audiobookshelf sync fixes:
- syncAudiobook returns boolean; skipped books no longer count as synced
- Sync notification now surfaces failed/skipped counts
- downloadCover has 10s fetch timeout (was unbounded)
- book.size changed to book.media?.size for audio-only size

Added sync button on audiobooks page so users can trigger a sync without
going through settings or the enrichment system.

Bump to v1.7.2
2026-03-18 13:50:18 -05:00

63 lines
1.8 KiB
JSON

{
"name": "kima-frontend",
"version": "1.7.2",
"description": "Kima web frontend",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Chevron7Locked/kima-hub.git"
},
"private": true,
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start -H 0.0.0.0 -p 3030",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:predeploy": "playwright test tests/e2e/predeploy --reporter=list",
"test:predeploy:ui": "playwright test tests/e2e/predeploy --ui",
"test:predeploy:headed": "playwright test tests/e2e/predeploy --headed",
"analyze": "ANALYZE=true next build --webpack"
},
"dependencies": {
"@deck.gl/core": "^9.2.11",
"@deck.gl/layers": "^9.2.11",
"@deck.gl/react": "^9.2.11",
"@luma.gl/core": "^9.2.6",
"@luma.gl/engine": "^9.2.6",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"@tanstack/react-query": "^5.90.10",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/dompurify": "^3.0.5",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"deck.gl": "^9.2.11",
"dompurify": "^3.3.1",
"framer-motion": "^12.34.3",
"lucide-react": "^0.552.0",
"next": "^16.0.10",
"postprocessing": "^6.38.3",
"qrcode.react": "^4.2.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"tailwind-merge": "^3.5.0",
"three": "^0.183.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.3",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"tailwindcss": "^4.2.1",
"typescript": "^5"
}
}