forked from xiufengsun/TokenTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.71 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
{
"name": "tokentracker-cli",
"version": "0.80.0",
"description": "Local-first AI coding token usage and cost tracker for 27 tools, with a dashboard, desktop pet, widgets, achievements, and native macOS/Windows apps.",
"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",
"sync-versions": "node scripts/sync-versions.cjs",
"version": "node scripts/sync-versions.cjs && git add TokenTrackerBar/project.yml TokenTrackerWin/TokenTrackerWin.csproj"
},
"dependencies": {
"@mongodb-js/zstd": "^2.0.1",
"undici": "^8.7.0",
"yauzl": "^3.4.0"
},
"devDependencies": {
"@sourcegraph/scip-typescript": "^0.4.0",
"esbuild": "0.28.1"
},
"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",
"ai-coding-tools",
"desktop-pet",
"desktop-widget",
"macos",
"windows",
"observability"
],
"license": "MIT",
"engines": {
"node": ">=20"
}
}