-
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.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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": "claude-usage-cli",
"version": "0.1.0",
"description": "View Claude Code API usage directly in your terminal",
"main": "dist/index.js",
"bin": {
"claude-usage": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"anthropic",
"usage",
"cli",
"tokens",
"cost"
],
"author": "Hamid",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/claude-usage-cli"
},
"homepage": "https://github.com/yourusername/claude-usage-cli#readme",
"bugs": {
"url": "https://github.com/yourusername/claude-usage-cli/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"inquirer": "^9.2.12"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}