-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
216 lines (216 loc) · 6.01 KB
/
package.json
File metadata and controls
216 lines (216 loc) · 6.01 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
{
"name": "eca",
"displayName": "ECA (Editor Code Assistant)",
"description": "ECA (Editor Code Assistant) integration for VsCode",
"icon": "assets/logo.png",
"version": "0.48.0",
"publisher": "editor-code-assistant",
"author": {
"name": "Eric Dallo",
"email": "ercdll1337@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/editor-code-assistant/eca-vscode.git"
},
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/editor-code-assistant/eca-vscode/issues"
},
"engines": {
"vscode": "^1.75.0"
},
"sponsor": {
"url": "https://github.com/sponsors/ericdallo"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": [
{
"title": "ECA",
"properties": {
"eca.serverPath": {
"type": "string",
"default": "",
"markdownDescription": "The absolute path to the `eca` server binary. Will take effect after a restart of eca."
},
"eca.serverArgs": {
"type": "string",
"default": "",
"markdownDescription": "Extra args for the eca start command, example: \"--log-level debug\"."
},
"eca.usageStringFormat": {
"type": "string",
"default": "{sessionTokens} / {contextLimit} ({sessionCost})",
"markdownDescription": "Format string for the usage (tokens/cost) in chat window. variables available:\n\n - `sessionCost`\n- `lastMessageCost`\n- `sessionTokens`\n- `contextLimit`\n- `outputLimit`."
},
"eca.rewrite.promptPrefix": {
"type": "string",
"default": "",
"markdownDescription": "Prefix appended to rewrite prompts."
},
"eca.rewrite.finishAction": {
"type": "string",
"enum": [
"showActions",
"accept"
],
"default": "showActions",
"markdownDescription": "What to do when streaming finishes. 'accept' auto-dismisses the green highlight; 'showActions' keeps Accept/Reject lens visible."
}
}
}
],
"commands": [
{
"command": "eca.manage",
"title": "ECA: Manage server"
},
{
"command": "eca.start",
"title": "ECA: Start server process"
},
{
"command": "eca.stop",
"title": "ECA: Stop server process"
},
{
"command": "eca.restart",
"title": "ECA: Restart server process"
},
{
"command": "eca.chat.focus",
"title": "ECA: Open chat"
},
{
"command": "eca.mcp-details.focus",
"title": "ECA: Open MCP Details"
},
{
"command": "eca.settings.focus",
"title": "ECA: Open Settings"
},
{
"command": "eca.chat.addContextToSystemPrompt",
"title": "ECA: Add context to system prompt"
},
{
"command": "eca.chat.send-prompt-new-chat",
"title": "ECA: Send prompt to new chat"
},
{
"command": "eca.chat.send-prompt",
"title": "ECA: Send prompt to current chat"
},
{
"command": "eca.rewrite",
"title": "ECA: Rewrite"
},
{
"command": "eca.rewrite.accept",
"title": "ECA: Rewrite Accept"
},
{
"command": "eca.rewrite.reject",
"title": "ECA: Rewrite Reject"
}
],
"submenus": [
{
"id": "eca.menu",
"label": "ECA"
}
],
"menus": {
"editor/context": [
{
"submenu": "eca.menu",
"group": "navigation@100",
"when": "editorTextFocus"
}
],
"eca.menu": [
{
"command": "eca.rewrite",
"group": "0_rewrite",
"when": "editorHasSelection"
},
{
"command": "eca.chat.addContextToSystemPrompt",
"group": "1_context"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "eca",
"title": "ECA",
"icon": "assets/logo.svg"
}
]
},
"views": {
"eca": [
{
"type": "webview",
"id": "eca.webview",
"name": "ECA",
"icon": "assets/logo.png",
"visibility": "visible"
}
]
}
},
"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 && npm run build:gui",
"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 -b --noEmit",
"lint": "eslint src",
"test": "vscode-test",
"vsix": "vsce package",
"dev:gui": "cd eca-webview && npm run dev",
"build:gui": "cd eca-webview && npm run build",
"publish": "npm run publish:vscode && npm run publish:ovsx",
"publish:vscode": "vsce publish",
"publish:ovsx": "ovsx publish -p $ECA_OPENVSX_TOKEN"
},
"dependencies": {
"extract-zip": "^2.0.1",
"follow-redirects": "^1.15.9",
"jsonc-parser": "^3.3.1",
"ovsx": "^0.10.5",
"sass": "^1.89.2",
"vscode-jsonrpc": "^8.2.1"
},
"devDependencies": {
"@types/follow-redirects": "^1.13.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.5.0",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3",
"vsce": "^2.15.0"
}
}