llm-gateway/package.json
Rene Fichtmueller c7c457ae2a feat: merge Gitea main (injection-defense, bridges, dashboard) + Erik WIP features
Reconcile 6-week divergence: Gitea main (injection-defense, output-defense,
prompt-guard-client, admin-auth, start-with-env, dashboard-v2, savings-calculator,
race-mode, gamification + 13 more modules) merged with Erik's deployed features
(usage-report endpoint, per-device entries, CEST timezone, cost-panel, bridge routing).
ecosystem.config.cjs excluded (live token, never commit).
2026-06-05 21:07:57 +00:00

24 lines
697 B
JSON

{
"name": "llm-gateway",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=packages/gateway",
"build": "npm run build --workspace=packages/gateway",
"start": "npm run start --workspace=packages/gateway",
"learning": "npm run start --workspace=packages/learning",
"install:all": "npm install",
"test": "vitest",
"db:migrate": "bash scripts/init-db.sh",
"models:pull": "bash scripts/pull-models.sh",
"ctx-health": "npm run start --workspace=packages/ctx-health",
"ctx-health:dev": "npm run dev --workspace=packages/ctx-health"
},
"dependencies": {
"jose": "^6.2.3"
}
}