-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.02 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
48
{
"name": "agentcost",
"version": "1.0.0",
"description": "Monitor what your AI coding agents are spending. Real-time TUI + web dashboard for OpenAI, Anthropic, Google, and more.",
"main": "src/index.js",
"bin": {
"agentcost": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"proxy": "node src/index.js --proxy-only",
"dashboard": "node src/index.js --web-only",
"tui": "node src/index.js --tui-only",
"dev": "node src/index.js --all"
},
"keywords": [
"ai",
"agent",
"cost",
"monitor",
"dashboard",
"openai",
"anthropic",
"claude",
"gpt",
"token",
"usage",
"billing",
"proxy",
"tui",
"terminal"
],
"author": "betty02",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.7.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"express": "^4.21.0",
"http-proxy": "^1.18.1",
"ws": "^8.18.0"
},
"engines": {
"node": ">=18.0.0"
}
}