-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.17 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.17 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
{
"name": "claude-status-monitor",
"displayName": "Claude Status Monitor",
"description": "Real-time monitoring of Claude API and Claude Code service status directly in your IDE",
"version": "1.0.0",
"publisher": "REPOZY",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/REPOZY/Claude-Status-Monitor-Extension.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"claude",
"anthropic",
"status",
"monitor",
"uptime"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"icon": "media/icon.png",
"contributes": {
"commands": [
{
"command": "claudeStatus.showPanel",
"title": "Claude Status: Show Status Panel"
},
{
"command": "claudeStatus.refresh",
"title": "Claude Status: Refresh Now"
}
],
"configuration": {
"title": "Claude Status Monitor",
"properties": {
"claudeStatus.pollingInterval": {
"type": "number",
"default": 60,
"minimum": 15,
"description": "Polling interval in seconds (minimum 15)"
},
"claudeStatus.watchedComponents": {
"type": "array",
"default": [
"Claude API (api.anthropic.com)",
"Claude Code"
],
"items": {
"type": "string"
},
"description": "Component names to monitor"
},
"claudeStatus.showNotifications": {
"type": "boolean",
"default": true,
"description": "Show popup notifications for status changes"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --minify",
"watch": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --watch",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"esbuild": "^0.20.0",
"typescript": "^5.3.0"
}
}