-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.88 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.88 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "claude-code-agent-monitor",
"displayName": "Claude Code Agent Monitor",
"description": "Professional integrated dashboard for monitoring Claude Code AI agent activity, token usage, and costs directly in VS Code.",
"version": "1.2.4",
"publisher": "hoangsonw",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Data Science",
"Machine Learning",
"Programming Languages",
"Other"
],
"activationEvents": [
"onView:claude-code-monitor-view"
],
"main": "./extension.js",
"icon": "apple-touch-icon.png",
"galleryBanner": {
"color": "#0f111a",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/hoangsonww/Claude-Code-Agent-Monitor"
},
"homepage": "https://github.com/hoangsonww/Claude-Code-Agent-Monitor/blob/main/vscode-extension/README.md",
"contributes": {
"commands": [
{
"command": "claude-code-agent-monitor.openDashboard",
"title": "Open Agent Dashboard",
"category": "Claude Code",
"icon": "$(dashboard)"
},
{
"command": "claude-code-agent-monitor.refreshStatus",
"title": "Refresh Dashboard Status",
"category": "Claude Code",
"icon": "$(refresh)"
},
{
"command": "claude-code-agent-monitor.clearHistory",
"title": "Clear Monitor History",
"category": "Claude Code",
"icon": "$(trash)"
},
{
"command": "claude-code-agent-monitor.openInBrowser",
"title": "Open Dashboard in Browser",
"category": "Claude Code",
"icon": "$(globe)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "claude-code-monitor",
"title": "Claude Code Agent Monitor",
"icon": "icon.svg"
}
]
},
"views": {
"claude-code-monitor": [
{
"id": "claude-code-monitor-view",
"name": "Monitor Control Center",
"type": "webview"
}
]
},
"menus": {
"view/title": [
{
"command": "claude-code-agent-monitor.openDashboard",
"when": "view == claude-code-monitor-view",
"group": "navigation@1"
},
{
"command": "claude-code-agent-monitor.refreshStatus",
"when": "view == claude-code-monitor-view",
"group": "navigation@2"
},
{
"command": "claude-code-agent-monitor.openInBrowser",
"when": "view == claude-code-monitor-view",
"group": "navigation@3"
}
]
}
},
"devDependencies": {
"@types/vscode": "^1.75.0",
"vsce": "^2.15.0"
},
"scripts": {
"package": "vsce package",
"publish": "vsce publish"
},
"keywords": [
"claude",
"anthropic",
"ai",
"agent",
"monitor",
"dashboard",
"tokens",
"llm"
],
"author": "Son Nguyen",
"license": "MIT"
}