-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
290 lines (290 loc) · 8.67 KB
/
package.json
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
283
284
285
286
287
288
289
290
{
"name": "sota-swe",
"displayName": "CodeStory: SOTA SWE",
"publisher": "codestoryai",
"description": "Codestory's extension for SOTA agentic editing",
"version": "0.0.11",
"private": true,
"engines": {
"vscode": "^1.84.0"
},
"repository": {
"type": "git",
"url": "https://github.com/codestoryai/extension"
},
"homepage": "https://codestory.ai",
"icon": "dist/icon.png",
"categories": [
"AI",
"Chat",
"Programming Languages",
"Education",
"Snippets",
"Testing"
],
"keywords": [
"aide",
"codestory",
"claude",
"dev",
"openrouter",
"coding",
"agent",
"autonomous",
"chatgpt",
"sonnet",
"ai",
"llama"
],
"activationEvents": [],
"main": "./dist/extension.js",
"l10n": "./l10n",
"contributes": {
"commands": [
{
"command": "sota-swe.show-browser",
"title": "Open browser",
"icon": "$(browser)",
"category": "SotaSWE"
},
{
"command": "sota-swe.go-to-new-task",
"title": "Start new task",
"icon": "$(add)",
"category": "SotaSWE"
},
{
"command": "sota-swe.go-to-settings",
"title": "Show settings",
"icon": "$(settings-gear)",
"category": "SotaSWE"
}
],
"menus": {
"view/title": [
{
"command": "sota-swe.show-browser",
"when": "view == sota-swe-panel",
"group": "navigation@2"
},
{
"command": "sota-swe.go-to-settings",
"when": "view == sota-swe-panel",
"group": "navigation@1"
},
{
"command": "sota-swe.go-to-new-task",
"when": "view == sota-swe-panel",
"group": "navigation@0"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "sota-swe",
"title": "SotaSWE",
"icon": "./dist/icon.png"
}
]
},
"views": {
"sota-swe": [
{
"type": "webview",
"id": "sota-swe-panel",
"name": "SotaSWE"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && 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",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-flow": "^7.25.9",
"@svgr/core": "^8.1.0",
"@tailwindcss/forms": "^0.5.9",
"@types/diff": "^5.0.3",
"@types/js-levenshtein": "^1.1.3",
"@types/lodash": "^4.14.202",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.9",
"@types/node": "18.x",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^9.0.2",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"autoprefixer": "^10.4.20",
"esbuild": "^0.23.0",
"esbuild-plugin-svgr": "^3.0.0",
"esbuild-style-plugin": "^1.6.3",
"eslint": "^9.13.0",
"flow-remove-types": "^2.256.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"dependencies": {
"@google-cloud/storage": "^7.0.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@shikijs/markdown-it": "^1.23.1",
"@tiptap/extension-document": "^2.9.1",
"@tiptap/extension-history": "^2.9.1",
"@tiptap/extension-image": "^2.9.1",
"@tiptap/extension-paragraph": "^2.9.1",
"@tiptap/extension-placeholder": "^2.9.1",
"@tiptap/extension-text": "^2.9.1",
"@tiptap/pm": "^2.9.1",
"@tiptap/react": "^2.9.1",
"@tiptap/suggestion": "^2.9.1",
"@types/http-proxy": "^1.17.15",
"@types/markdown-it": "^14.1.2",
"@vscode/codicons": "^0.0.36",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"delay": "^6.0.0",
"diff": "^5.1.0",
"http-proxy": "^1.18.1",
"isomorphic-dompurify": "^2.16.0",
"js-levenshtein": "^1.1.6",
"lodash": "^4.17.21",
"lru-cache": "^10.2.0",
"markdown-it": "^14.1.0",
"minimist": "^1.2.8",
"minisearch": "^7.1.0",
"node-fetch": "^3.3.2",
"openai": "^4.0.1",
"parse5": "^7.2.1",
"posthog-node": "^3.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"seti-file-icons": "^0.0.8",
"shiki": "^1.23.1",
"tailwind-merge": "^2.5.4",
"ts-morph": "^19.0.0",
"uuid": "^11.0.3",
"vscode-uri": "^3.0.8",
"web-tree-sitter": "^0.20.8",
"winston": "^3.10.0",
"winston-vscode": "^1.0.0",
"ws": "^7",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"configuration": {
"type": "object",
"title": "Aide Extension settings",
"properties": {
"aide.resetNotifications": {
"type": "boolean",
"default": false,
"description": "Reset 'Don't show again' notifications"
},
"aide.activeDirectories": {
"type": "string",
"default": "",
"description": "Set the active directories for Aide to look at as comma separated values of absolute path. For example: /a/b/c , /d/e/f"
},
"aide.testSuiteRunCommand": {
"type": "string",
"default": "",
"description": "Tell Aide how to run your test suite, for example for jest framework and when using yarn the command will be: `yarn run jest test`"
},
"codestory.openaiApiKey": {
"type": "string",
"default": "NOT_SET",
"description": "Use a custom api key for OpenAI"
},
"codestory.disableTelemetry": {
"type": "boolean",
"default": false,
"description": "Disable telemetry and logging on the backend"
},
"codestory.disableUseNameLookup": {
"type": "boolean",
"default": false,
"description": "Disable user name lookup from env"
},
"aide.systemInstruction": {
"type": "string",
"default": "",
"description": "Set custom instructions for the AI, this can be information about the repository you are working or nuances you want the AI to handle"
},
"aide.useExactSelection": {
"type": "boolean",
"default": true,
"description": "Uses the exact matching of the selection rather than expanding on it"
},
"aide.sidecarURL": {
"type": "string",
"default": "http://127.0.0.1:42424",
"description": "The url of the sidecar which is required for aide to work"
},
"aide.sidecarUseSelfRun": {
"type": "boolean",
"default": false,
"description": "If the side-binary is being run on its own, we can set this to true allowing for rapid proto-typing"
},
"aide.disableIndexing": {
"type": "boolean",
"default": true,
"description": "Disable indexing of the repository"
},
"aide.inlineCompletion.triggerMode": {
"type": "string",
"default": "automatic",
"description": "Set the trigger mode for inline completions, can be either of automatic or manual"
},
"aide.inlineCompletion.enableTabAutocomplete": {
"type": "boolean",
"default": true,
"description": "Enable tab autocomplete for inline completions"
},
"aide.inlineCompletion.toggleTabAutoCompleteEnabled": {
"type": "boolean",
"default": true,
"description": "Toggle tab autocomplete for inline completions"
},
"aide.inlineCompletion.copyClipBoardContent": {
"type": "boolean",
"default": true,
"description": "Should we allow clip board content to be sent over"
},
"aide.deepReasoning": {
"type": "boolean",
"default": false,
"description": "Should use deep reasoning before making edits"
},
"aide.specialToolAgentUseAtYourOwnRisk": {
"type": "boolean",
"default": false,
"description": "Tool use agent, use it at your own risk this is not ready for production yet"
}
}
}
}