-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.69 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
{
"name": "token-meter",
"version": "0.4.0",
"description": "An open-source, session-aware live token meter for Codex Desktop and Claude Code in Claude Desktop.",
"type": "module",
"private": true,
"license": "MIT",
"author": "Sergio Chan",
"homepage": "https://github.com/SergioChan/token-meter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SergioChan/token-meter.git"
},
"bugs": {
"url": "https://github.com/SergioChan/token-meter/issues"
},
"keywords": [
"codex",
"claude-code",
"claude-desktop",
"token-meter",
"agent-observability",
"token-usage",
"macos"
],
"os": [
"darwin"
],
"engines": {
"node": ">=22.13.0"
},
"dependencies": {
"pg": "^8.16.3"
},
"devDependencies": {
"pg-mem": "^3.0.5"
},
"scripts": {
"check": "node scripts/check.mjs",
"ci": "npm run check && npm test",
"screenshots": "node scripts/capture-readme-screenshots.mjs",
"snapshot": "node src/cli.mjs snapshot",
"claude:snapshot": "node src/cli.mjs claude-snapshot",
"claude:install": "./scripts/install-claude-meter-macos.sh",
"claude:doctor": "./scripts/doctor-claude-meter-macos.sh",
"claude:status": "./scripts/status-claude-meter-macos.sh",
"claude:uninstall": "./scripts/uninstall-claude-meter-macos.sh",
"codex:inject": "node src/cli.mjs inject",
"codex:remove": "node src/cli.mjs remove",
"registry:migrate:status": "node server/migrate.mjs status",
"registry:migrate": "node server/migrate.mjs up",
"registry:migrate:reconcile": "node server/migrate.mjs reconcile",
"registry:migrate:verify": "node server/migrate.mjs verify",
"test": "node --test"
}
}