-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
194 lines (194 loc) · 4.97 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
{
"name": "10minions-vscode",
"displayName": "10Minions (GPT-4 enabled)",
"license": "MIT",
"description": "Your Army of GPT-4 Powered Coding Buddies.",
"publisher": "10Clouds",
"icon": "resources/ext-icon.png",
"pricing": "Free",
"repository": {
"url": "https://github.com/10clouds/10minions-vscode",
"issues": "https://github.com/10clouds/10minions-vscode/issues"
},
"version": "0.9.12-dev",
"engines": {
"vscode": "^1.78.0",
"node": ">=18.0.0"
},
"keywords": [
"chatgpt",
"openai",
"gpt",
"gpt-4",
"copilot",
"ai",
"explain",
"find bugs",
"refactor",
"typescript",
"autocomplete",
"c#",
"c++",
"codex",
"co-pilot",
"documentation",
"go",
"golang",
"intellisense",
"java",
"javascript",
"kotlin",
"openai",
"php",
"pilot",
"python",
"refactor",
"ruby",
"snippets"
],
"categories": [
"Programming Languages",
"Linters",
"Formatters",
"Snippets",
"Machine Learning",
"Education"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "10minions.ask",
"title": "10Minions: Ask 10Minions to do something"
}
],
"keybindings": [
{
"command": "10minions.ask",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "10Minions",
"type": "object",
"properties": {
"10minions.apiKey": {
"type": "string",
"markdownDescription": "API key from [OpenAI](https://platform.openai.com/account/api-keys)",
"order": 0
},
"10minions.enableCompletionSounds": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable or disable playing sounds when 10Minions finishes processing your task",
"order": 1
},
"10minions.sendDiagnosticsData": {
"type": "boolean",
"default": true,
"markdownDescription": "Allow tasks to be sent for diagnostic purposes to improve accuracy of results. This data will only be used to improve the service and will not be shared with third parties. If turned off, no data will be sent to 10Clouds, only to OpenAI.",
"order": 2
}
}
},
"menus": {
"editor/context": [
{
"command": "10minions.ask",
"when": "editorTextFocus",
"group": "10minions-menu-group@1"
}
],
"commandPalette": [
{
"command": "10minions.ask"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "10minions",
"title": "10Minions",
"icon": "resources/icon.svg"
}
]
},
"views": {
"10minions": [
{
"type": "webview",
"id": "10minions.sideBar",
"name": "10Minions"
}
]
}
},
"scripts": {
"vscode:publish": "yarn run package && vsce publish",
"vscode:pre-release": "yarn run package && vsce publish --pre-release",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@inquirer/confirm": "^2.0.4",
"@inquirer/prompts": "^2.3.0",
"@inquirer/select": "^1.2.3",
"@types/async": "^3.2.20",
"@types/async-lock": "^1.4.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "18.x",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/react-transition-group": "^4.4.6",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-electron": "^2.3.0",
"async": "^3.2.4",
"babel-loader": "^9.1.2",
"chalk": "^5.3.0",
"clsx": "^2.0.0",
"commander": "^11.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"process": "^0.11.10",
"request": "^2.88.2",
"ts-loader": "^9.4.2",
"tsx": "^3.12.7",
"typescript": "^5.2.2",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@svgr/webpack": "^8.1.0",
"async-lock": "^1.4.0",
"gpt-tokenizer": "^2.1.1",
"jsonschema": "^1.4.1",
"langchain": "^0.0.77",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flip-move": "^3.0.5",
"react-transition-group": "^4.4.5"
}
}