-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.41 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.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
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
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "claude-code-dashboard",
"displayName": "Claude Code Dashboard",
"description": "Real-time dashboard for all your Claude Code projects — sessions, usage, tokens, and more.",
"version": "1.6.1",
"publisher": "jspw",
"license": "AGPL-3.0-only",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/jspw/Claude-Code-Dashboard"
},
"homepage": "https://claude-code-dashboard-jspw.vercel.app",
"bugs": {
"url": "https://github.com/jspw/Claude-Code-Dashboard/issues"
},
"keywords": [
"claude",
"claude code",
"anthropic",
"ai",
"dashboard",
"usage",
"tokens",
"cost"
],
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "claude-dashboard",
"title": "Claude Code Dashboard",
"icon": "$(pulse)"
}
]
},
"views": {
"claude-dashboard": [
{
"id": "claudeDashboard.sidebar",
"name": "Claude Projects",
"type": "webview"
}
]
},
"commands": [
{
"command": "claudeDashboard.openDashboard",
"title": "Open Full Dashboard",
"category": "Claude Code Dashboard"
},
{
"command": "claudeDashboard.openProject",
"title": "Open Project Detail",
"category": "Claude Code Dashboard"
},
{
"command": "claudeDashboard.refresh",
"title": "Refresh",
"category": "Claude Code Dashboard",
"icon": "$(refresh)"
}
],
"menus": {
"view/title": [
{
"command": "claudeDashboard.refresh",
"when": "view == claudeDashboard.sidebar",
"group": "navigation"
}
]
},
"configuration": {
"title": "Claude Code Dashboard",
"properties": {
"claudeDashboard.monthlyTokenBudget": {
"type": "number",
"default": 0,
"description": "Monthly token budget. Set to 0 to disable alerts."
},
"claudeDashboard.monthlyBudgetUsd": {
"type": "number",
"default": 0,
"description": "Monthly cost budget in USD. Alerts fire at 80% and 100%. Set to 0 to disable."
}
}
}
},
"scripts": {
"build": "node esbuild.js && cd webview-ui && npm run build",
"build:ext": "node esbuild.js",
"build:ui": "cd webview-ui && npm run build",
"watch:ext": "node esbuild.js --watch",
"watch:ui": "cd webview-ui && npm run dev",
"prepare": "node scripts/setup-git-hooks.mjs",
"typecheck": "tsc --noEmit",
"typecheck:all": "npm run typecheck && cd webview-ui && npm run typecheck",
"vscode:prepublish": "npm run build",
"package": "vsce package",
"lint:commit-msg": "node scripts/validate-commit-message.mjs",
"lint:commits": "node scripts/validate-commit-range.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:all": "npm test && cd webview-ui && npm test"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vitest/coverage-v8": "^3.2.4",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.20.0",
"ovsx": "^0.10.9",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
}
}