-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 3.97 KB
/
Copy pathpackage.json
File metadata and controls
150 lines (150 loc) · 3.97 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "chutes-usage-vscode",
"displayName": "Chutes Usage Monitor — Track Chutes API Usage & Quotas",
"description": "Monitor your Chutes AI usage, rolling limits, and request quotas in a VS Code sidebar dashboard and status bar — secure key storage, auto-refresh, theme-aware. Unofficial third-party extension.",
"version": "0.4.8",
"publisher": "mikesoft",
"author": {
"name": "Michael Gasperini",
"url": "https://mikesoft.it"
},
"repository": {
"type": "git",
"url": "https://github.com/TheStreamCode/chutes-usage-vscode"
},
"homepage": "https://github.com/TheStreamCode/chutes-usage-vscode",
"bugs": {
"url": "https://github.com/TheStreamCode/chutes-usage-vscode/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/TheStreamCode"
},
"pricing": "Free",
"galleryBanner": {
"color": "#0d1117",
"theme": "dark"
},
"license": "MIT",
"categories": [
"Visualization",
"Other"
],
"keywords": [
"chutes",
"chutes ai",
"usage",
"quota",
"rolling limits",
"billing",
"dashboard",
"api",
"monitor",
"status bar",
"llm"
],
"engines": {
"vscode": "^1.103.0"
},
"main": "./out/src/extension.js",
"icon": "media/icon.png",
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "chutesUsageVscode.openDashboard",
"title": "Open Dashboard",
"category": "Chutes Usage Monitor",
"icon": "$(graph)"
},
{
"command": "chutesUsageVscode.refresh",
"title": "Refresh",
"category": "Chutes Usage Monitor",
"icon": "$(refresh)"
},
{
"command": "chutesUsageVscode.setApiKey",
"title": "Set API Key",
"category": "Chutes Usage Monitor",
"icon": "$(key)"
},
{
"command": "chutesUsageVscode.removeApiKey",
"title": "Remove API Key",
"category": "Chutes Usage Monitor",
"icon": "$(trash)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "chutesUsageVscode",
"title": "Chutes Usage Monitor",
"icon": "media/icon.svg"
}
]
},
"views": {
"chutesUsageVscode": [
{
"type": "webview",
"id": "chutesUsageVscode.dashboard",
"name": "Dashboard",
"icon": "media/icon.svg"
}
]
},
"viewsWelcome": [
{
"view": "chutesUsageVscode.dashboard",
"contents": "[Set your Chutes API key](command:chutesUsageVscode.setApiKey) to start monitoring usage."
}
],
"menus": {
"view/title": [
{
"command": "chutesUsageVscode.refresh",
"when": "view == chutesUsageVscode.dashboard",
"group": "navigation"
},
{
"command": "chutesUsageVscode.setApiKey",
"when": "view == chutesUsageVscode.dashboard",
"group": "navigation"
}
]
},
"configuration": {
"title": "Chutes Usage Monitor",
"properties": {
"chutesUsageVscode.refreshIntervalSeconds": {
"type": "number",
"default": 60,
"minimum": 15,
"maximum": 900,
"description": "Refresh interval in seconds."
},
"chutesUsageVscode.showStatusBar": {
"type": "boolean",
"default": true,
"description": "Show the Chutes Usage Monitor status bar item."
}
}
}
},
"scripts": {
"compile": "tsc -p ./ && tsc -p ./tsconfig.webview.json && node scripts/copy-webview-assets.mjs",
"watch": "tsc -w -p ./",
"test": "npm run compile && node --test out/src/test/**/*.test.js",
"package": "vsce package",
"vscode:prepublish": "npm run compile",
"vscode:uninstall": "node ./out/src/lifecycle.js"
},
"devDependencies": {
"@vscode/codicons": "^0.0.45",
"@vscode/vsce": "^3.8.1",
"@types/node": "^25.6.0",
"@types/vscode": "^1.103.0",
"typescript": "^6.0.2"
}
}