-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 936 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 936 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
{
"name": "claudeoo",
"version": "0.1.0",
"description": "Accurate token usage & cost tracker for Claude Code — real-time cost tracking, per-turn breakdowns, and session reports",
"license": "MIT",
"author": "stoic",
"repository": {
"type": "git",
"url": "https://github.com/stoic/claudeoo"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"token-tracker",
"cost-tracker",
"usage",
"cli",
"api-monitor"
],
"bin": {
"claudeoo": "dist/cli.js"
},
"main": "dist/cli.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc && cp src/pricing.json src/interceptor-loader.js dist/",
"dev": "tsx src/cli.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=22.5.0"
}
}