-
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.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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": "claude-code-usage",
"version": "2.8.3",
"description": "A lightweight CLI tool for analyzing Claude Code usage statistics and costs locally",
"main": "index.js",
"bin": {
"claude-code-usage": "bin/cli.js",
"ccu": "bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js"
},
"keywords": [
"claude",
"claude-code",
"claude-ai",
"anthropic",
"ai",
"usage",
"statistics",
"cli",
"cost-tracking",
"token-counter",
"developer-tools",
"api-usage"
],
"author": "Evan Long <mail@evanlong.me>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"fs-extra": "^11.1.1",
"nanospinner": "^1.2.2"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanlong-me/claude-code-usage.git"
},
"bugs": {
"url": "https://github.com/evanlong-me/claude-code-usage/issues"
},
"homepage": "https://github.com/evanlong-me/claude-code-usage#readme"
}