-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
317 lines (317 loc) · 9.26 KB
/
package.json
File metadata and controls
317 lines (317 loc) · 9.26 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
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
{
"name": "code-decode",
"displayName": "Code Decode",
"description": "Decode code intent by translating identifiers for easier reading",
"version": "0.0.4",
"publisher": "addtion99",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/addtion99/code-decode.git"
},
"homepage": "https://github.com/addtion99/code-decode#readme",
"bugs": {
"url": "https://github.com/addtion99/code-decode/issues"
},
"keywords": [
"translation",
"vscode",
"developer-tools",
"i18n",
"chinese",
"identifier",
"code-readability"
],
"icon": "media/icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "codeTranslator.clearCache",
"title": "Code Decode:0 Clear Translation Cache"
},
{
"command": "codeTranslator.refreshTranslatedView",
"title": "Code Decode:0 Refresh Current Translated View"
},
{
"command": "codeTranslator.setApiKey",
"title": "Code Decode:1 Set API Key"
},
{
"command": "codeTranslator.setRequestConcurrency",
"title": "Code Decode:1 Set API Concurrency"
},
{
"command": "codeTranslator.selectProvider",
"title": "Code Decode:1 Select API Provider"
},
{
"command": "codeTranslator.setApiProvider",
"title": "Code Decode:1 Set API Provider"
},
{
"command": "codeTranslator.translateThisProject",
"title": "Code Decode:2 Translate This Project"
},
{
"command": "codeTranslator.translateThisFile",
"title": "Code Decode:2 Translate This File"
},
{
"command": "codeTranslator.toggleAutoTranslate",
"title": "Code Decode:2 Auto Translate (Recommended!)"
},
{
"command": "codeTranslator.useInlayMode",
"title": "Code Decode:3 Use Inlay Mode(Recommended!)"
},
{
"command": "codeTranslator.useSplitMode",
"title": "Code Decode:3 Use Split Mode"
},
{
"command": "codeTranslator.applyGhostTheme",
"title": "Code Decode: Apply Ghost Theme Colors"
},
{
"command": "codeTranslator.restoreDefaultTheme",
"title": "Code Decode: Restore Default Theme Colors"
}
],
"keybindings": [
{
"command": "codeTranslator.useSplitMode",
"key": "ctrl+alt+t",
"mac": "cmd+alt+t",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "Code Decode",
"properties": {
"codeTranslator.provider": {
"type": "string",
"enum": [
"gemini",
"demo",
"openaiCompatible",
"openrouter",
"deepseek",
"glm",
"doubao",
"siliconflow",
"moonshot",
"groq",
"together",
"zhipu",
"deepl",
"custom"
],
"default": "gemini",
"description": "Translation provider type. Default is Gemini; others are OpenAI-compatible providers."
},
"codeTranslator.apiBaseUrl": {
"type": "string",
"default": "https://generativelanguage.googleapis.com/v1beta/openai",
"description": "Base URL for OpenAI-compatible translation API (Gemini AI Studio by default)."
},
"codeTranslator.model": {
"type": "string",
"default": "gemini-2.5-flash-lite",
"description": "Model used for identifier translation."
},
"codeTranslator.sourceLanguage": {
"type": "string",
"default": "en",
"description": "Source language for identifiers."
},
"codeTranslator.targetLanguage": {
"type": "string",
"default": "zh-CN",
"description": "Target language for identifiers."
},
"codeTranslator.viewMode": {
"type": "string",
"enum": [
"inlay",
"split"
],
"default": "inlay",
"description": "Display mode: inlay hints only, or translated split diff view only."
},
"codeTranslator.renderMode": {
"type": "string",
"enum": [
"translatedOnly",
"bilingual",
"inlay"
],
"default": "inlay",
"description": "How translated identifiers are rendered."
},
"codeTranslator.skipPatterns": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"^[ijk]$",
"^tmp$",
"^ctx$",
"^res$"
],
"description": "Regex patterns for identifiers to skip."
},
"codeTranslator.maxBatchTerms": {
"type": "number",
"default": 80,
"minimum": 1,
"description": "Max normalized terms per request. Larger value reduces per-request prompt overhead."
},
"codeTranslator.requestConcurrency": {
"type": "number",
"default": 3,
"minimum": 1,
"description": "Max number of concurrent translation API requests."
},
"codeTranslator.requestTimeoutMs": {
"type": "number",
"default": 20000,
"minimum": 1000,
"description": "Translation request timeout in milliseconds."
},
"codeTranslator.includeGlobs": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/*.js",
"**/*.ts",
"**/*.jsx",
"**/*.tsx",
"**/*.c",
"**/*.cpp",
"**/*.h",
"**/*.hpp",
"**/*.java",
"**/*.py",
"**/*.go",
"**/*.rs",
"**/*.rb",
"**/*.php",
"**/*.swift",
"**/*.kt",
"**/*.kts",
"**/*.scala",
"**/*.vue",
"**/*.svelte",
"**/*.m",
"**/*.mm",
"**/*.cs",
"**/*.fs",
"**/*.fsx",
"**/*.r",
"**/*.R",
"**/*.lua",
"**/*.zig",
"**/*.v",
"**/*.dart"
],
"description": "Globs for source files to include in project translate. Only these files are scanned. Use [\"**/*\"] to scan all files."
},
"codeTranslator.excludeGlobs": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/node_modules/**",
"**/.git/**",
"**/dist/**",
"**/build/**",
"**/out/**",
"**/venv/**",
"**/__pycache__/**",
"**/.vscode/**",
"**/target/**",
"**/.next/**",
"**/coverage/**"
],
"description": "Workspace globs excluded from project scan."
},
"codeTranslator.protectedTerms": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"ctx",
"dto",
"http",
"https",
"json",
"url",
"id",
"ids"
],
"description": "Identifier terms that must never be translated."
},
"codeTranslator.glossary": {
"type": "object",
"default": {},
"additionalProperties": {
"type": "string"
},
"description": "Custom glossary map. Key can be identifier or normalized phrase; value is the desired translation."
},
"codeTranslator.forceDiffSideBySide": {
"type": "boolean",
"default": true,
"description": "Force translated diff view to open in side-by-side mode."
},
"codeTranslator.hideDiffOverviewRuler": {
"type": "boolean",
"default": true,
"description": "Hide the right-side diff overview ruler (red/green bar)."
},
"codeTranslator.hideDiffIndicators": {
"type": "boolean",
"default": true,
"description": "Hide diff indicators and revert icons in split diff view."
},
"codeTranslator.autoTranslate": {
"type": "boolean",
"default": false,
"description": "Automatically translate files when you open them (after a short delay). Builds up translations incrementally as you browse — no need to translate the entire project."
},
"codeTranslator.autoTranslateDebounceMs": {
"type": "number",
"default": 1000,
"minimum": 100,
"description": "Debounce delay in ms before auto-translating the active file. Increase to reduce API calls when switching tabs quickly."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npx tsc -p ./",
"watch": "npx tsc -watch -p ./",
"package": "npx vsce package"
},
"devDependencies": {
"@types/node": "^20",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.0.0",
"typescript": "^5.6.0"
}
}