-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
222 lines (222 loc) · 7.09 KB
/
package.json
File metadata and controls
222 lines (222 loc) · 7.09 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
{
"name": "askii",
"displayName": "ASKII",
"description": "ASKII is an AI code assistant with style ( •_•)>⌐■-■ (⌐■_■)",
"version": "0.2.7",
"icon": "icon.png",
"publisher": "danisss9",
"repository": {
"type": "git",
"url": "https://github.com/danisss9/ASKII"
},
"engines": {
"vscode": "^1.108.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "askii.clearCache",
"title": "ASKII: Clear Cache",
"category": "ASKII"
},
{
"command": "askii.askQuestion",
"title": "Ask ASKII",
"category": "ASKII"
},
{
"command": "askii.editCode",
"title": "ASKII Edit",
"category": "ASKII"
},
{
"command": "askii.doTask",
"title": "ASKII Do",
"category": "ASKII"
},
{
"command": "askii.controlTask",
"title": "ASKII Control",
"category": "ASKII"
},
{
"command": "askii.browseTask",
"title": "ASKII Browse",
"category": "ASKII"
},
{
"command": "askii.reloadWiki",
"title": "ASKII: Reload Wiki",
"category": "ASKII"
}
],
"configuration": {
"title": "ASKII",
"properties": {
"askii.llmPlatform": {
"type": "string",
"enum": [
"ollama",
"copilot",
"lmstudio",
"openai",
"anthropic"
],
"default": "ollama",
"description": "LLM platform to use (ollama, copilot, lmstudio, openai, or anthropic)"
},
"askii.ollamaUrl": {
"type": "string",
"default": "http://localhost:11434",
"description": "URL of the Ollama API server"
},
"askii.lmStudioUrl": {
"type": "string",
"default": "ws://localhost:1234",
"description": "URL of the LM Studio API server"
},
"askii.ollamaModel": {
"type": "string",
"default": "gemma3:270m",
"description": "Ollama model to use for explanations"
},
"askii.copilotModel": {
"type": "string",
"default": "gpt-4o",
"description": "GitHub Copilot model family to use for explanations"
},
"askii.lmStudioModel": {
"type": "string",
"default": "qwen/qwen3-coder-30b",
"description": "LM Studio model to use for explanations"
},
"askii.openaiApiKey": {
"type": "string",
"default": "",
"description": "OpenAI API key (used when llmPlatform is openai)"
},
"askii.openaiModel": {
"type": "string",
"default": "gpt-4o",
"description": "OpenAI model to use (e.g. gpt-4o, gpt-4-turbo)"
},
"askii.openaiUrl": {
"type": "string",
"default": "",
"description": "OpenAI-compatible base URL (leave empty for api.openai.com). Use this for Azure OpenAI or other compatible APIs."
},
"askii.anthropicApiKey": {
"type": "string",
"default": "",
"description": "Anthropic API key (used when llmPlatform is anthropic)"
},
"askii.anthropicModel": {
"type": "string",
"default": "claude-opus-4-6",
"description": "Anthropic model to use (e.g. claude-opus-4-6, claude-sonnet-4-6, claude-haiku-4-5)"
},
"askii.inlineHelperMode": {
"type": "string",
"enum": [
"off",
"helpful",
"funny",
"wiki"
],
"enumDescriptions": [
"Disable inline decorations",
"Show concise code explanations",
"Show humorous comments",
"Show relevant wiki documentation snippets (requires askii.wikiPath to be indexed)"
],
"default": "off",
"description": "Inline helper mode for code decorations"
},
"askii.doMaxRounds": {
"type": "number",
"default": 5,
"minimum": 1,
"description": "Maximum number of interaction rounds for ASKII Do command"
},
"askii.doAutoConfirm": {
"type": "boolean",
"default": false,
"description": "Automatically confirm create/modify/delete actions in ASKII Do without prompting"
},
"askii.formatAfterEdit": {
"type": "boolean",
"default": false,
"description": "Automatically format files after ASKII Edit or ASKII Do creates/modifies them"
},
"askii.browserHeadless": {
"type": "boolean",
"default": false,
"description": "Launch the Puppeteer browser in headless mode for ASKII Browse (set to false to show the browser window)"
},
"askii.chromePath": {
"type": "string",
"default": "",
"description": "Path to the Chrome/Chromium executable for ASKII Browse (e.g. C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe). Leave empty to use the system default."
},
"askii.wikiEnabled": {
"type": "boolean",
"default": false,
"description": "Enable wiki RAG context for Ask / Edit / Do commands. Requires askii.wikiPath to be set and the wiki to be indexed via ASKII: Reload Wiki."
},
"askii.wikiPath": {
"type": "string",
"default": "",
"description": "Path to folder containing .md documentation files used for wiki RAG context. Run 'ASKII: Reload Wiki' after changing this or updating the docs."
}
}
}
},
"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",
"release": "vsce publish"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/screenshot-desktop": "^1.15.0",
"@types/vscode": "^1.108.1",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@lmstudio/immer-with-plugins": "^10.1.1",
"@lmstudio/sdk": "^1.5.0",
"jimp": "^0.22.12",
"markdown-it": "^14.1.1",
"minisearch": "^7.2.0",
"ollama": "^0.6.3",
"openai": "^6.25.0",
"puppeteer-core": "^24.37.5",
"screenshot-desktop": "^1.12.7"
}
}