-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.14 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
{
"name": "@j___avi/tokentrace",
"version": "0.5.1",
"description": "Token tracing and session recording for coding agents.",
"type": "module",
"bin": {
"tt": "bin/tt.mjs",
"tokentrace-mcp": "bin/tokentrace-mcp.mjs"
},
"files": [
"bin",
"dashboard/dist",
"dashboard/server.mjs",
"docs/assets",
"docs/EXAMPLES.md",
"docs/PUBLIC_RELEASE_CHECKLIST.md",
"docs/ROADMAP.md",
"docs/RUN_FORMAT.md",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"check": "npm test && npm pack --dry-run --cache .npm-cache",
"serve": "node dashboard/server.mjs"
},
"engines": {
"node": ">=20"
},
"keywords": [
"agents",
"telemetry",
"token-tracing",
"codex",
"claude",
"developer-tools",
"mcp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fjgbue/tokentrace.git"
},
"bugs": {
"url": "https://github.com/fjgbue/tokentrace/issues"
},
"homepage": "https://github.com/fjgbue/tokentrace#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^5.2.1"
}
}