llmfit/llmfit-web/package.json
Phuc Truong 37dd0dbca4 feat(dashboard): ship embedded web UI and auto-start it from CLI
- add React/Vite llmfit-web dashboard with fit explorer and theme toggle

- embed built web assets into llmfit binary and serve from / with SPA fallback

- keep existing /api/v1 contracts and add CI/release build steps for web assets

- auto-launch local dashboard for non-serve commands while preserving explicit serve mode
2026-03-18 16:40:00 +00:00

25 lines
534 B
JSON

{
"name": "llmfit-web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^26.0.0",
"vite": "^5.4.12",
"vitest": "^2.1.8"
}
}