-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.41 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
{
"name": "context-tracker",
"version": "0.4.0",
"description": "Local request viewer for Claude Code, Codex and OpenCode.",
"type": "module",
"license": "MIT",
"author": "conrad621 <majikang0621@gmail.com>",
"homepage": "https://conrad621.github.io/context-tracker/",
"engines": {
"node": ">=18"
},
"bin": {
"context-tracker": "bin/context-tracker.js"
},
"main": "src/proxy.js",
"files": [
"bin/",
"src/",
"config/pricing.json",
"config/profiles.example.json",
"README.md",
"README.zh.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"proxy": "node src/proxy.js",
"viewer": "node src/viewer.js",
"anthropic": "node src/proxy.js anthropic",
"openai": "node src/proxy.js openai",
"deepseek": "node src/proxy.js deepseek",
"start": "node bin/context-tracker.js help",
"test": "node --test",
"prepublishOnly": "node --test"
},
"keywords": [
"ai-coding-agent",
"agent-observability",
"claude-code",
"codex",
"opencode",
"anthropic",
"openai",
"local-proxy",
"llm",
"llm-observability",
"prompt-debugging",
"prompt-inspection",
"tool-calling"
],
"repository": {
"type": "git",
"url": "git+https://github.com/conrad621/context-tracker.git"
},
"bugs": {
"url": "https://github.com/conrad621/context-tracker/issues"
},
"publishConfig": {
"access": "public"
}
}