forked from presidio-oss/cline-based-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
278 lines (278 loc) · 7.07 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
{
"name": "hai-build-code-generator",
"displayName": "HAI Build Code Generator",
"description": "Human AI (HAI) VS Code extension that streamlines development workflows through AI-powered task execution, intelligent file management, and automated code generation. Built on Cline, it integrates with various LLMs to enhance productivity and code quality while simplifying complex development tasks.",
"clineVersion": "3.2.5",
"version": "3.0.2",
"icon": "assets/icons/[email protected]",
"galleryBanner": {
"color": "#617A91",
"theme": "dark"
},
"engines": {
"vscode": "^1.84.0"
},
"author": {
"name": "Presidio"
},
"license": "Apache-2.0",
"publisher": "presidio-inc",
"repository": {
"type": "git",
"url": "https://github.com/presidio-oss/cline-based-code-generator"
},
"categories": [
"Programming Languages",
"Education",
"Snippets",
"Testing",
"Machine Learning",
"Debuggers"
],
"keywords": [
"hai",
"claude",
"dev",
"coding",
"agent",
"autonomous",
"ai",
"llama",
"haibuild",
"humanai",
"chat",
"chatai",
"extension",
"code-generator",
"visual-studio-code",
"gpt",
"multi-modal",
"cline",
"owasp-top-10",
"human-ai",
"code-context",
"presidio",
"code-index",
"generative-ai",
"claude-3-5-sonnet",
"hai-build"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "hai-ActivityBar",
"title": "HAI Build",
"icon": "assets/icons/hai-logo-mini.png"
}
]
},
"views": {
"hai-ActivityBar": [
{
"type": "webview",
"id": "hai.SidebarProvider",
"name": ""
}
]
},
"commands": [
{
"command": "hai.plusButtonClicked",
"title": "New Task",
"icon": "$(home)"
},
{
"command": "hai.mcpButtonClicked",
"title": "MCP Servers",
"icon": "$(server)"
},
{
"command": "hai.historyButtonClicked",
"title": "History",
"icon": "$(history)"
},
{
"command": "hai.popoutButtonClicked",
"title": "Open in Editor",
"icon": "$(link-external)"
},
{
"command": "hai.settingsButtonClicked",
"title": "Settings",
"icon": "$(settings-gear)"
},
{
"command": "hai.openInNewTab",
"title": "Open In New Tab",
"category": "HAI Build"
},
{
"command": "hai.haiBuildTaskListClicked",
"title": "Hai Tasks",
"category": "HAI Build"
}
],
"menus": {
"view/title": [
{
"command": "hai.haiBuildTaskListClicked",
"group": "navigation@1",
"when": "view == hai.SidebarProvider"
},
{
"command": "hai.plusButtonClicked",
"group": "navigation@2",
"when": "view == hai.SidebarProvider"
},
{
"command": "hai.mcpButtonClicked",
"group": "navigation@2",
"when": "view == hai.SidebarProvider"
},
{
"command": "hai.historyButtonClicked",
"group": "navigation@3",
"when": "view == hai.SidebarProvider"
},
{
"command": "hai.popoutButtonClicked",
"group": "navigation@4",
"when": "view == hai.SidebarProvider"
},
{
"command": "hai.settingsButtonClicked",
"group": "navigation@5",
"when": "view == hai.SidebarProvider"
}
]
},
"configuration": {
"title": "HAI Build",
"properties": {
"hai.vsCodeLmModelSelector": {
"type": "object",
"properties": {
"vendor": {
"type": "string",
"description": "The vendor of the language model (e.g. copilot)"
},
"family": {
"type": "string",
"description": "The family of the language model (e.g. gpt-4)"
}
},
"description": "Settings for VSCode Language Model API"
},
"hai.mcp.enabled": {
"type": "boolean",
"default": true,
"description": "Include MCP server functionality in AI prompts. When disabled, the AI will not be aware of MCP capabilities. This saves context window tokens."
}
}
}
},
"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 build:webview && npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p ./tsconfig.test.json --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 --ext ts",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"test": "vscode-test",
"install:all": "npm install && cd webview-ui && npm install",
"start:webview": "cd webview-ui && npm run start",
"build:webview": "cd webview-ui && npm run build",
"test:webview": "cd webview-ui && npm run test",
"publish:marketplace": "vsce publish",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@gitbeaker/rest": "^41.3.0",
"@types/chai": "^5.0.1",
"@types/diff": "^5.2.1",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/should": "^11.2.0",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"chai": "^4.3.10",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"got": "^14.4.5",
"husky": "^9.1.7",
"keep-a-changelog": "^2.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"should": "^13.2.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.10.2",
"@anthropic-ai/sdk": "^0.26.0",
"@anthropic-ai/vertex-sdk": "^0.4.1",
"@google/generative-ai": "^0.18.0",
"@mistralai/mistralai": "^1.3.6",
"@modelcontextprotocol/sdk": "^1.0.1",
"@langchain/aws": "^0.1.1",
"@langchain/community": "^0.3.11",
"@langchain/core": "^0.3.17",
"@langchain/openai": "^0.3.12",
"@langchain/textsplitters": "^0.1.0",
"@types/clone-deep": "^4.0.4",
"@types/get-folder-size": "^3.0.4",
"@types/pdf-parse": "^1.1.4",
"@types/turndown": "^5.0.5",
"@vscode/codicons": "^0.0.36",
"axios": "^1.7.4",
"cheerio": "^1.0.0",
"chokidar": "^4.0.1",
"clone-deep": "^4.0.1",
"default-shell": "^2.2.0",
"delay": "^6.0.0",
"diff": "^5.2.0",
"faiss-node": "^0.5.1",
"execa": "^9.5.2",
"fast-deep-equal": "^3.1.3",
"firebase": "^11.2.0",
"get-folder-size": "^5.0.0",
"globby": "^14.0.2",
"ignore": "^5.3.2",
"ignore-walk": "^7.0.0",
"isbinaryfile": "^5.0.2",
"mammoth": "^1.8.0",
"monaco-vscode-textmate-theme-converter": "^0.1.7",
"openai": "^4.61.0",
"os-name": "^6.0.0",
"p-wait-for": "^5.0.2",
"pdf-parse": "^1.1.1",
"puppeteer-chromium-resolver": "^23.0.0",
"puppeteer-core": "^23.4.0",
"serialize-error": "^11.0.3",
"simple-git": "^3.27.0",
"strip-ansi": "^7.1.0",
"tar": "^7.4.3",
"tiktoken": "^1.0.17",
"tree-sitter-wasms": "^0.1.11",
"turndown": "^7.2.0",
"watcher": "^2.3.1",
"web-tree-sitter": "^0.22.6",
"zod": "^3.24.1"
}
}