forked from xiufengsun/TokenTracker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.26 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@ipv9/tokentracker-cli",
"version": "0.39.57",
"description": "Local-first token and cost dashboard for 22 AI coding tools, including Claude Code, Codex, Cursor, Gemini, Kiro, OpenCode, OpenClaw, Copilot, Antigravity, Zed, and Goose.",
"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/",
"scripts/install-local-service.sh",
"scripts/uninstall-local-service.sh",
"LICENSE",
"README.md"
],
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"scripts": {
"ci:local": "npm run dashboard:build && npm --prefix dashboard run test && npm test && npm run validate:copy && npm run validate:ui-hardcode && npm run validate:guardrails && npm run validate:curated-expiry && npm run validate:outbound && npm run docs:openwiki:check && node --test test/architecture-guardrails.test.js",
"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",
"docs:openwiki:check": "node scripts/openwiki-check-facts.cjs",
"docs:openwiki:extract": "node scripts/openwiki-extract-facts.cjs",
"docs:openwiki:update": "bash scripts/docs-update.sh",
"docs:openwiki:verify": "bash scripts/openwiki-verify.sh",
"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",
"test:graph": "node --test test/graph/*.test.js",
"pricing:build-seed": "node scripts/build-pricing-seed.cjs",
"prepublishOnly": "npm run dashboard:build && node scripts/build-pricing-seed.cjs",
"test": "node --test test/*.test.js",
"validate:copy": "node scripts/validate-copy-registry.cjs",
"validate:curated-expiry": "node scripts/validate-curated-expiry.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",
"validate:outbound": "node scripts/validate-outbound.cjs"
},
"dependencies": {
"@mongodb-js/zstd": "^2.0.1",
"undici": "^7.29.0"
},
"devDependencies": {
"@sourcegraph/scip-typescript": "^0.3.6",
"esbuild": "0.27.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pitimon/TokenTracker.git"
},
"homepage": "https://github.com/pitimon/TokenTracker#readme",
"bugs": {
"url": "https://github.com/pitimon/TokenTracker/issues"
},
"keywords": [
"token-usage",
"cost-tracking",
"ai-cli",
"ai-dashboard",
"claude",
"claude-code",
"codex",
"cursor",
"gemini",
"kiro",
"opencode",
"openclaw",
"copilot",
"antigravity",
"zed",
"goose",
"local-first",
"rate-limits"
],
"license": "MIT",
"engines": {
"node": ">=20.18.1"
}
}