-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "claude-token-tracker",
"version": "0.1.0",
"description": "Token usage dashboard for Claude Code — tracks costs, sessions, models, and tools with real-time updates",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint lib/ server.js",
"badges": "vitest run --reporter=json --outputFile=.vitest-report.json && node scripts/update-badges.js --report .vitest-report.json && rm -f .vitest-report.json",
"postinstall": "node scripts/setup.js"
},
"author": "Martin Pfeffer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pepperonas/claude-token-tracker.git"
},
"keywords": [
"claude",
"token",
"tracker",
"dashboard",
"usage",
"cost",
"anthropic",
"claude-code"
],
"engines": {
"node": ">=20.12"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"chokidar": "^4.0.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"supertest": "^7.0.0",
"vitest": "^4.1.8"
}
}