Files
discord-fishbowl/admin-frontend/package.json
root 10563900a3 Implement comprehensive LLM provider system with global cost protection
- Add multi-provider LLM architecture supporting OpenRouter, OpenAI, Gemini, and custom providers
- Implement global LLM on/off switch with default DISABLED state for cost protection
- Add per-character LLM configuration with provider-specific models and settings
- Create performance-optimized caching system for LLM enabled status checks
- Add API key validation before enabling LLM providers to prevent broken configurations
- Implement audit logging for all LLM enable/disable actions for cost accountability
- Create comprehensive admin UI with prominent cost warnings and confirmation dialogs
- Add visual indicators in character list for custom AI model configurations
- Build character-specific LLM client system with global fallback mechanism
- Add database schema support for per-character LLM settings
- Implement graceful fallback responses when LLM is globally disabled
- Create provider testing and validation system for reliable connections
2025-07-08 07:35:48 -07:00

61 lines
1.4 KiB
JSON

{
"name": "discord-fishbowl-admin",
"version": "1.0.0",
"private": true,
"homepage": "/admin",
"dependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"react-scripts": "^5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^3.0.0",
"@tailwindcss/forms": "^0.5.0",
"tailwindcss": "^3.3.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"axios": "^1.6.0",
"socket.io-client": "^4.7.0",
"recharts": "^2.8.0",
"lucide-react": "^0.294.0",
"react-hot-toast": "^2.4.0",
"date-fns": "^2.30.0",
"clsx": "^2.0.0",
"@headlessui/react": "^1.7.0",
"react-hook-form": "^7.48.0",
"@hookform/resolvers": "^3.3.0",
"zod": "^3.22.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^29.0.0",
"react-scripts": "5.0.1"
},
"proxy": "http://localhost:8000"
}