-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
38
39
40
41
42
43
44
45
46
47
{
"name": "ccgate",
"version": "0.4.0",
"description": "Transparent LLM cost proxy for Claude Code → DeepSeek API. Tracks sessions, tokens, and spending in real-time.",
"main": "dist/index.js",
"bin": {
"ccgate": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"live": "tsx src/index.ts --watch",
"tui": "tsx src/index.ts --tui",
"watch": "tsx src/index.ts --watch",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest"
},
"keywords": [
"llm",
"proxy",
"cost-tracking",
"deepseek",
"claude-code",
"token-counting",
"sse"
],
"type": "module",
"license": "MIT",
"author": "",
"dependencies": {
"@fastify/static": "^9.1.3",
"@fastify/websocket": "^11.2.0",
"better-sqlite3": "^12.10.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.0",
"@types/uuid": "^10.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}