llm-gateway/package.json
Rene Fichtmueller 0191c60b64 chore: commit deployed gateway state (dashboard, streaming, routing, bridges, cost-tracking)
Live production state on Erik that had drifted from Gitea — deployed across several
sessions but never committed. Excludes deploy/ecosystem.config.cjs (holds live tokens).

- dashboard: passive usage-report endpoint, per-device entries, CEST timezone, cost-panel rounding
- completion: SSE + HTTP/2 streaming
- pipeline: routing-rules, request-scorer, external-providers (subscription bridges)
- cost-tracking: tokenvault migration, cost-calculator, request-logger
- infra: docker-compose bridge env, server/health/tls, deps
2026-06-05 20:23:33 +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"
}
}