-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 999 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 999 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "claude-code-cost",
"version": "0.7.0",
"description": "Cost dashboard for Claude Code usage",
"main": "server.js",
"bin": {
"claude-code-cost": "./server.js"
},
"scripts": {
"start": "node server.js",
"dev": "node server.js --open",
"prepare": "husky || true"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"express": "^4.18.2",
"open": "^11.0.0"
},
"devDependencies": {
"husky": "^9.0.0"
},
"keywords": [
"claude",
"claude-code",
"cost",
"dashboard",
"anthropic",
"ai",
"cli",
"usage"
],
"homepage": "https://github.com/NikiforovAll/claude-code-cost",
"repository": {
"type": "git",
"url": "git+https://github.com/NikiforovAll/claude-code-cost.git"
},
"bugs": {
"url": "https://github.com/NikiforovAll/claude-code-cost/issues"
},
"author": "NikiforovAll",
"license": "MIT",
"files": [
"server.js",
"public/",
"README.md",
"LICENSE"
]
}