forked from superdesigndev/superdesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
282 lines (282 loc) · 8.69 KB
/
package.json
File metadata and controls
282 lines (282 loc) · 8.69 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
{
"name": "superdesign-official",
"displayName": "Superdesign Dev",
"description": "The 1st Design Agent lives inside your IDE",
"version": "0.0.14",
"publisher": "SuperdesignDev",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/superdesigndev/superdesign"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"AI",
"Other"
],
"keywords": [
"design",
"ui",
"mockup",
"wireframe",
"component",
"ai",
"agent",
"figma",
"prototype",
"layout",
"frontend",
"react",
"html",
"css",
"claude",
"anthropic",
"generator",
"automation"
],
"activationEvents": [
"onCommand:superdesign.helloWorld",
"onView:superdesign.chatView"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "superdesign.helloWorld",
"title": "Hello World",
"category": "Superdesign"
},
{
"command": "superdesign.configureApiKey",
"title": "Configure Anthropic API Key",
"category": "Superdesign"
},
{
"command": "superdesign.configureOpenAIApiKey",
"title": "Configure OpenAI API Key",
"category": "Superdesign"
},
{
"command": "superdesign.configureOpenAIUrl",
"title": "Configure OpenAI url",
"category": "Superdesign"
},
{
"command": "superdesign.configureOpenRouterApiKey",
"title": "Configure OpenRouter API Key",
"category": "Superdesign"
},
{
"command": "superdesign.showChatSidebar",
"title": "Show Chat Sidebar",
"category": "Superdesign"
},
{
"command": "superdesign.openCanvas",
"title": "Open Canvas View",
"category": "Superdesign",
"icon": "$(window)"
},
{
"command": "superdesign.clearChat",
"title": "Clear Chat",
"category": "Superdesign",
"icon": "$(clear-all)"
},
{
"command": "superdesign.resetWelcome",
"title": "Reset Welcome Screen",
"category": "Superdesign"
},
{
"command": "superdesign.initializeProject",
"title": "Initialize Superdesign",
"category": "Superdesign"
},
{
"command": "superdesign.openSettings",
"title": "Open Settings",
"category": "Superdesign",
"icon": "$(settings-gear)"
}
],
"menus": {
"view/title": [
{
"command": "superdesign.openCanvas",
"when": "view == superdesign.chatView",
"group": "navigation"
},
{
"command": "superdesign.openSettings",
"when": "view == superdesign.chatView",
"group": "navigation"
},
{
"command": "superdesign.clearChat",
"when": "view == superdesign.chatView",
"group": "navigation"
}
]
},
"views": {
"superdesign-sidebar": [
{
"type": "webview",
"id": "superdesign.chatView",
"name": "SUPER DESIGN",
"when": "true"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "superdesign-sidebar",
"title": "Superdesign",
"icon": "icon.svg"
}
]
},
"configuration": {
"title": "Superdesign",
"properties": {
"superdesign.llmProvider": {
"type": "string",
"enum": [
"claude-api",
"claude-code"
],
"enumDescriptions": [
"Use Anthropic API key to communicate with Claude via SDK",
"Use local claude binary for enhanced code execution capabilities"
],
"default": "claude-api",
"description": "Choose the LLM provider to use for AI interactions",
"scope": "application"
},
"superdesign.anthropicApiKey": {
"type": "string",
"description": "Anthropic API key for Claude Code integration (required for claude-api provider)",
"scope": "application"
},
"superdesign.claudeCodePath": {
"type": "string",
"description": "Path to claude binary (defaults to 'claude' for npm install, use 'claude-code' if installed via shell script)",
"scope": "application"
},
"superdesign.claudeCodeModelId": {
"type": "string",
"enum": [
"claude-sonnet-4-20250514",
"claude-3-5-sonnet-20241022",
"claude-3-5-haiku-20241022",
"claude-3-opus-20240229"
],
"default": "claude-sonnet-4-20250514",
"description": "Model ID to use with claude binary",
"scope": "application"
},
"superdesign.claudeCodeThinkingBudget": {
"type": "number",
"default": 50000,
"description": "Thinking budget tokens for claude-code provider",
"scope": "application"
},
"superdesign.openaiApiKey": {
"type": "string",
"description": "OpenAI API key for custom agent",
"scope": "application"
},
"superdesign.openaiUrl": {
"type": "string",
"description": "OpenAI url for custom agent",
"scope": "application"
},
"superdesign.openrouterApiKey": {
"type": "string",
"description": "OpenRouter API key for custom agent",
"scope": "application"
},
"superdesign.aiModelProvider": {
"type": "string",
"enum": [
"openai",
"anthropic",
"openrouter",
"claude-code"
],
"default": "anthropic",
"description": "AI model provider for custom agent (OpenAI, Anthropic, OpenRouter, or Claude Code - Note: Claude Code should be used via the main LLM Provider setting instead)",
"scope": "application"
},
"superdesign.aiModel": {
"type": "string",
"description": "Specific AI model to use (e.g., gpt-4o, claude-3-5-sonnet-20241022)",
"scope": "application"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test",
"test:llm": "tsc --project tsconfig.test.json && node dist-test/test/llm-service.test.js",
"test:core": "tsc --project tsconfig.test.json && node dist-test/test/core-components.test.js",
"test:read": "tsc --project tsconfig.test.json && node dist-test/test/read-tool.test.js",
"test:write-edit": "tsc --project tsconfig.test.json && node dist-test/test/write-edit-tools.test.js",
"test:ls-grep-glob": "tsc --project tsconfig.test.json && node dist-test/test/ls-grep-glob-tools.test.js",
"test:agent": "tsc --project tsconfig.test.json && node dist-test/test/llm-service.test.js && node dist-test/test/core-components.test.js",
"test:tools": "tsc --project tsconfig.test.json && node dist-test/test/read-tool.test.js && node dist-test/test/write-edit-tools.test.js && node dist-test/test/ls-grep-glob-tools.test.js"
},
"devDependencies": {
"@types/mime-types": "^3.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.19",
"@ai-sdk/openai": "^1.3.22",
"@anthropic-ai/claude-code": "^1.0.31",
"@openrouter/ai-sdk-provider": "^0.7.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"ai": "^4.3.16",
"execa": "^9.6.0",
"glob": "^11.0.3",
"highlight.js": "^11.11.1",
"lucide-react": "^0.522.0",
"micromatch": "^4.0.8",
"mime-types": "^3.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-zoom-pan-pinch": "^3.7.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"zod": "^3.25.67"
}
}