-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 879 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "llm-budget-proxy",
"version": "1.0.0",
"description": "Lightweight reverse proxy for LLM API rate limiting, per-user token budgets, and cost dashboards",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"seed": "tsx scripts/seed-keys.ts"
},
"keywords": [
"llm",
"rate-limiting",
"token-budgets",
"cost-control",
"openai-proxy"
],
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.9.1",
"fastify": "^5.3.3",
"tiktoken": "^1.0.21",
"yaml": "^2.7.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}