forked from mm7894215/TokenTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.43 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "tokentracker-cli",
"version": "0.14.3",
"description": "Token usage tracker for AI agent CLIs (Claude Code, Codex, Cursor, Gemini, Kiro, OpenCode, OpenClaw, Every Code, Hermes, GitHub Copilot, Kimi Code, CodeBuddy, oh-my-pi, pi, Craft Agents, Kilo CLI, Kilo Code)",
"main": "src/cli.js",
"bin": {
"tokentracker-cli": "bin/tracker.js",
"tracker": "bin/tracker.js",
"tokentracker": "bin/tracker.js",
"tokentracker-tracker": "bin/tracker.js"
},
"files": [
"bin/",
"src/",
"dashboard/dist/",
"LICENSE",
"README.md"
],
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"scripts": {
"ci:local": "npm test && npm run validate:copy && npm run validate:ui-hardcode && npm run validate:guardrails && node --test test/architecture-guardrails.test.js && npm --prefix dashboard run build",
"copy:pull": "node scripts/copy-sync.cjs pull",
"copy:push": "node scripts/copy-sync.cjs push",
"dashboard:build": "npm --prefix dashboard run build",
"dashboard:dev": "npm --prefix dashboard run dev",
"dashboard:open": "bash scripts/open-dashboard.sh",
"dashboard:preview": "npm --prefix dashboard run preview",
"dev:shim": "node scripts/dev-bin-shim.cjs",
"audit:tokens": "node scripts/audit-token-correctness.cjs",
"graph:auto-index": "node scripts/graph/auto-index.cjs",
"graph:scip": "node scripts/graph/generate-scip.cjs",
"pricing:build-seed": "node scripts/build-pricing-seed.cjs",
"prepublishOnly": "node scripts/build-pricing-seed.cjs",
"test": "node --test test/*.test.js",
"validate:copy": "node scripts/validate-copy-registry.cjs",
"validate:guardrails": "node scripts/validate-architecture-guardrails.cjs",
"validate:retros": "node scripts/validate-retros.cjs",
"validate:ui-hardcode": "node scripts/ops/validate-ui-hardcode.cjs"
},
"dependencies": {
"undici": "^8.2.0"
},
"devDependencies": {
"@sourcegraph/scip-typescript": "^0.3.6",
"esbuild": "0.27.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mm7894215/TokenTracker.git"
},
"homepage": "https://www.tokentracker.cc",
"bugs": {
"url": "https://github.com/mm7894215/TokenTracker/issues"
},
"keywords": [
"token",
"tracker",
"ai",
"claude",
"codex",
"cursor",
"gemini",
"kiro",
"opencode",
"usage",
"cost"
],
"license": "MIT",
"engines": {
"node": ">=20"
}
}