forked from cwclancy/pearai-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
443 lines (443 loc) · 14.2 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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
{
"publisher": "pearai",
"name": "pearai-extension",
"version": "0.0.1",
"displayName": "PearAI - ChatGPT for Visual Studio Code",
"description": "Generate code, edit code, explain code, generate tests, find bugs, diagnose errors",
"keywords": [
"ai",
"chatgpt",
"gpt",
"openai",
"codex",
"copilot",
"code explanation"
],
"categories": [
"Machine Learning",
"Programming Languages",
"Linters",
"Formatters",
"Data Science",
"Education",
"Testing"
],
"icon": "./app/vscode/asset/media/extension-icon.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"node": ">=18",
"vscode": "^1.72.0"
},
"homepage": "https://github.com/trypear/pearai-extension",
"repository": "https://github.com/trypear/pearai-extension",
"bugs": "https://github.com/trypear/pearai-extension/issues",
"extensionKind": [
"workspace"
],
"main": "./lib/extension/dist/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "pearai.enterOpenAIApiKey",
"category": "PearAI",
"title": "Enter OpenAI API key"
},
{
"command": "pearai.clearOpenAIApiKey",
"category": "PearAI",
"title": "Clear OpenAI API key"
},
{
"command": "pearai.startChat",
"title": "Start Chat 💬",
"category": "PearAI",
"icon": "$(comment-discussion)"
},
{
"command": "pearai.editCode",
"title": "Edit Code 🖊️",
"category": "PearAI",
"icon": "$(edit)"
},
{
"command": "pearai.explainCode",
"title": "Explain Code 💬",
"category": "PearAI",
"icon": "$(comment-discussion)"
},
{
"command": "pearai.generateCode",
"title": "Generate Code 🪄",
"category": "PearAI",
"icon": "$(wand)"
},
{
"command": "pearai.generateUnitTest",
"title": "Generate Unit Test 🪄",
"category": "PearAI",
"icon": "$(beaker)"
},
{
"command": "pearai.diagnoseErrors",
"title": "Diagnose Errors 💬",
"category": "PearAI",
"icon": "$(search-fuzzy)"
},
{
"command": "pearai.findBugs",
"title": "Find Bugs 💬",
"category": "PearAI",
"icon": "$(bug)"
},
{
"command": "pearai.touchBar.startChat",
"category": "PearAI",
"title": "💬"
},
{
"command": "pearai.showChatPanel",
"title": "Show Chat Panel 💬",
"category": "PearAI",
"icon": "$(comment-discussion)"
},
{
"command": "pearai.getStarted",
"title": "Get Started",
"category": "PearAI",
"icon": "$(question)"
},
{
"command": "pearai.showLogs",
"title": "Show Logs",
"category": "PearAI",
"icon": "$(output)"
},
{
"command": "pearai.indexRepository",
"title": "Index Repository",
"category": "PearAI",
"enablement": "config.pearai.indexRepository.enabled"
}
],
"configuration": {
"title": "PearAI",
"properties": {
"pearai.syntaxHighlighting.useVisualStudioCodeColors": {
"type": "boolean",
"default": false,
"markdownDescription": "Use the Visual Studio Code Theme colors for syntax highlighting in the diff viewer. Might not work with all themes. Only applies to newly opened diffs.",
"scope": "application"
},
"pearai.indexRepository.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable the command to index your repository and give more context to the AI model. Experimental.",
"scope": "application"
},
"pearai.action.editCode.showInEditorContextMenu": {
"type": "boolean",
"default": true,
"markdownDescription": "Show this action in the editor context menu, when you right-click on the code.",
"scope": "application"
},
"pearai.action.startChat.showInEditorContextMenu": {
"type": "boolean",
"default": true,
"markdownDescription": "Show this action in the editor context menu, when you right-click on the code.",
"scope": "application"
},
"pearai.action.explainCode.showInEditorContextMenu": {
"type": "boolean",
"default": true,
"markdownDescription": "Show this action in the editor context menu, when you right-click on the code.",
"scope": "application"
},
"pearai.action.findBugs.showInEditorContextMenu": {
"type": "boolean",
"default": true,
"markdownDescription": "Show this action in the editor context menu, when you right-click on the code.",
"scope": "application"
},
"pearai.action.generateUnitTest.showInEditorContextMenu": {
"type": "boolean",
"default": true,
"markdownDescription": "Show this action in the editor context menu, when you right-click on the code.",
"scope": "application"
},
"pearai.action.diagnoseErrors.showInEditorContextMenu": {
"type": "boolean",
"default": true,
"markdownDescription": "Show this action in the editor context menu, when you right-click on the code.",
"scope": "application"
},
"pearai.logger.level": {
"type": "string",
"default": "info",
"enum": [
"debug",
"info",
"warning",
"error"
],
"enumDescriptions": [
"Show all logs",
"Show all logs except the debug ones",
"Only show warnings and errors",
"Only show errors"
],
"markdownDescription": "Specify the verbosity of logs that will appear in 'PearAI: Show Logs'.",
"scope": "application"
},
"pearai.openAI.surfacePromptForPlus": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable UI to surface the prompt text to use with OpenAI plus web chat",
"scope": "application"
},
"pearai.openAI.baseUrl": {
"type": "string",
"default": "https://api.openai.com/v1/",
"markdownDescription": "Specify the URL to the OpenAI API. If you are using a proxy, you can set it here.",
"scope": "application"
},
"pearai.model": {
"type": "string",
"default": "gpt-3.5-turbo-0125",
"enum": [
"gpt-3.5-turbo",
"gpt-3.5-turbo-16k",
"gpt-3.5-turbo-1106",
"gpt-3.5-turbo-0125",
"gpt-4",
"gpt-4-32k",
"gpt-4-1106-preview",
"gpt-4-0125-preview",
"gpt-4-turbo-preview",
"llama.cpp"
],
"enumDescriptions": [
"OpenAI GPT-3.5-turbo: 4k context window. Faster, less expensive model. Less accurate.",
"OpenAI GPT-3.5-turbo: 16k context window. Faster, less expensive model. Less accurate.",
"OpenAI GPT-3.5-turbo: 16k context window. Faster, less expensive. Less accurate.",
"OpenAI GPT-3.5-turbo: 16k context window. Faster, less expensive. Less accurate. The latest GPT-3.5 Turbo model with higher accuracy at responding in requested formats and a fix for a bug which caused a text encoding issue for non-English language function calls. Returns a maximum of 4,096 output tokens.",
"OpenAI GPT-4: 8k context window. Expensive, slow model. More accurate.",
"OpenAI GPT-4: 32k context window. Expensive, slow model. More accurate.",
"OpenAI GPT-4 Turbo: 128k context window. Expensive (but cheaper than 32k), slow model. More accurate.",
"OpenAI GPT-4 Turbo: 128k context window. Expensive (but cheaper than 32k), slow model. More accurate. The latest GPT-4 model intended to reduce cases of \"laziness\" where the model doesn't complete a task.",
"OpenAI GPT-4 Turbo: Currently points to gpt-4-0125-preview.",
"(Experimental) Llama.cpp: Calls Llama.cpp running locally on http://127.0.0.1:8080. Use for local models with Llama 2 prompt format."
],
"markdownDescription": "Select the OpenAI model that you want to use.",
"scope": "application"
}
}
},
"keybindings": [
{
"command": "pearai.startChat",
"when": "isMac",
"key": "Cmd+l"
},
{
"command": "pearai.startChat",
"when": "!isMac",
"key": "Alt+l"
},
{
"command": "pearai.editCode",
"when": "isMac",
"key": "Ctrl+Cmd+e"
},
{
"command": "pearai.editCode",
"when": "!isMac",
"key": "Ctrl+Alt+e"
},
{
"command": "pearai.generateCode",
"when": "isMac",
"key": "Ctrl+Cmd+g"
},
{
"command": "pearai.generateCode",
"when": "!isMac",
"key": "Ctrl+Alt+g"
}
],
"menus": {
"view/title": [
{
"command": "pearai.startChat",
"when": "view == pearai.chat",
"group": "navigation@1"
}
],
"touchBar": [
{
"command": "pearai.touchBar.startChat",
"group": "pearai"
}
],
"commandPalette": [
{
"command": "pearai.touchBar.startChat",
"when": "false"
}
],
"editor/context": [
{
"command": "pearai.startChat",
"group": "pearai",
"when": "config.pearai.action.startChat.showInEditorContextMenu && editorHasSelection"
},
{
"command": "pearai.editCode",
"group": "pearai",
"when": "config.pearai.action.editCode.showInEditorContextMenu && editorHasSelection"
},
{
"command": "pearai.explainCode",
"group": "pearai",
"when": "config.pearai.action.explainCode.showInEditorContextMenu && editorHasSelection"
},
{
"command": "pearai.findBugs",
"group": "pearai",
"when": "config.pearai.action.findBugs.showInEditorContextMenu && editorHasSelection"
},
{
"command": "pearai.generateUnitTest",
"group": "pearai",
"when": "config.pearai.action.generateUnitTest.showInEditorContextMenu && editorHasSelection"
},
{
"command": "pearai.diagnoseErrors",
"group": "pearai",
"when": "config.pearai.action.diagnoseErrors.showInEditorContextMenu && editorHasSelection"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "pearai",
"title": "PearAI",
"icon": "./app/vscode/asset/media/sidebar-icon.svg"
}
]
},
"views": {
"pearai": [
{
"id": "pearai.chat",
"name": "Chat",
"type": "webview"
}
]
},
"walkthroughs": [
{
"id": "pearai",
"title": "PearAI",
"description": "The Best AI-Powered Code Editor",
"steps": [
{
"id": "setup",
"title": "Setup PearAI",
"description": "[Enter your OpenAI API key](command:pearai.enterOpenAIApiKey) to get started.",
"media": {
"markdown": "./app/vscode/dev/walkthrough/setup.md"
}
},
{
"id": "chat",
"title": "AI Chat",
"description": "Chat with PearAI about your code and software development topics.",
"media": {
"markdown": "./app/vscode/dev/walkthrough/chat.md"
}
},
{
"id": "generate-code",
"title": "Generate Code",
"description": "Generate code by instructing PearAI.",
"media": {
"markdown": "./app/vscode/dev/walkthrough/generate-code.md"
}
},
{
"id": "edit-code",
"title": "Edit Code",
"description": "Change the selected code by instructing PearAI to create an edit.",
"media": {
"markdown": "./app/vscode/dev/walkthrough/edit-code.md"
}
},
{
"id": "other-actions",
"title": "Other Actions",
"description": "Generate unit tests, explain code, find bugs, and more.",
"media": {
"markdown": "./app/vscode/dev/walkthrough/other-actions.md"
}
},
{
"id": "tips-and-tricks",
"title": "Tips and Tricks",
"description": "How to get the most out of PearAI.",
"media": {
"markdown": "./app/vscode/dev/walkthrough/tips-and-tricks.md"
}
},
{
"id": "project",
"title": "Project",
"description": "Learn more about the PearAI open source project.",
"media": {
"markdown": "./app/vscode/dev/walkthrough/project.md"
}
}
]
}
]
},
"scripts": {
"prepare": "husky install",
"build-all": "cross-env NODE_ENV=production yarn nx run-many --target=build",
"build-extension": "yarn nx run vscode:build",
"test": "yarn nx run extension:test",
"test-watch": "yarn nx run extension:test-watch",
"package": "yarn nx run vscode:package",
"deploy:vscode": "yarn nx run vscode:publish-vscode",
"deploy:ovsx": "yarn nx run vscode:publish-ovsx"
},
"workspaces": [
"app/*",
"lib/*"
],
"private": true,
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vscode/vsce": "2.16.0",
"cross-env": "^7.0.3",
"esbuild": "0.16.10",
"eslint": "^8.32.0",
"eslint-config-prettier": "8.6.0",
"husky": "^8.0.0",
"lint-staged": "13.1.0",
"nx": "^19.0.4",
"ovsx": "0.8.0",
"prettier": "2.8.3",
"typescript": "4.9.5",
"vitest": "0.28.3"
}
}