-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.99 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
{
"name": "codex-claude-ctx-monitor",
"displayName": "Codex Claude Context Monitor",
"description": "Track Codex and Claude Code context usage in the VS Code status bar.",
"version": "0.0.10",
"type": "commonjs",
"publisher": "jialei2005",
"repository": {
"type": "git",
"url": "https://github.com/cabbage2000-lab/Codex-Claude-Monitor.git"
},
"bugs": {
"url": "https://github.com/cabbage2000-lab/Codex-Claude-Monitor/issues"
},
"homepage": "https://github.com/cabbage2000-lab/Codex-Claude-Monitor#readme",
"license": "MIT",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"claude",
"claude-code",
"codex",
"token",
"context",
"status bar"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "agentTokenStatus.refresh",
"title": "Codex-Claude-Monitor: Refresh"
},
{
"command": "agentTokenStatus.handoff",
"title": "Codex-Claude-Monitor: Handoff"
}
],
"configuration": {
"title": "Codex-Claude-Monitor",
"properties": {
"agentTokenStatus.sessionsRoot": {
"type": "string",
"default": "",
"description": "Optional absolute path to the Codex sessions directory. Leave empty to use ~/.codex/sessions."
},
"agentTokenStatus.claudeRoot": {
"type": "string",
"default": "",
"description": "Optional absolute path to the Claude Code home directory. Leave empty to use ~/.claude."
},
"agentTokenStatus.refreshIntervalMs": {
"type": "number",
"default": 10000,
"minimum": 1000,
"description": "How often to refresh token usage from local agent session files."
}
}
}
},
"scripts": {
"test": "node --test test/*.test.js",
"package": "npx --yes @vscode/vsce package --out dist/"
}
}