-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
459 lines (459 loc) · 14 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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
{
"name": "vscode-deno",
"displayName": "Deno",
"description": "A language server client for Deno.",
"author": "Deno Land Inc.",
"license": "MIT",
"version": "3.10.0",
"icon": "deno.png",
"galleryBanner": {
"color": "#3B3738",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/denoland/vscode_deno"
},
"bugs": {
"url": "https://github.com/denoland/vscode_deno/issues"
},
"publisher": "denoland",
"categories": [
"Programming Languages",
"Formatters",
"Linters",
"Debuggers",
"Other"
],
"keywords": [
"deno"
],
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:markdown",
"onLanguage:json",
"onLanguage:jsonc",
"onDebugInitialConfigurations",
"onDebugResolve:typescript",
"onDebugResolve:typescriptreact",
"onDebugResolve:javascript",
"onDebugResolve:javascriptreact",
"onCommand:deno.welcome",
"onCommand:deno.initializeWorkspace",
"onCommand:deno.reloadImportRegistries",
"onWebviewPanel:welcomeDeno"
],
"main": "./client/dist/main",
"contributes": {
"breakpoints": [
{
"language": "typescript"
},
{
"language": "javascript"
},
{
"language": "typescriptreact"
},
{
"language": "javascriptreact"
}
],
"debuggers": [
{
"type": "deno",
"label": "Deno",
"runtime": "deno",
"languages": [
"typescript",
"javascript",
"typescriptreact",
"javascriptreact"
]
}
],
"commands": [
{
"command": "deno.cache",
"title": "Cache Dependencies",
"category": "Deno",
"description": "Cache the active workspace document and its dependencies.",
"enablement": "deno:lspReady"
},
{
"command": "deno.initializeWorkspace",
"title": "Initialize Workspace Configuration",
"category": "Deno",
"description": "Initialize the workspace configuration for Deno."
},
{
"command": "deno.reloadImportRegistries",
"title": "Reload Import Registries Cache",
"category": "Deno",
"description": "Reload any cached import registry responses.",
"enablement": "deno:lspReady"
},
{
"command": "deno.restart",
"title": "Restart Language Server",
"category": "Deno",
"description": "Restart the Deno language server."
},
{
"command": "deno.status",
"title": "Language Server Status",
"category": "Deno",
"description": "Provide a status document of the language server.",
"enablement": "deno:lspReady"
},
{
"command": "deno.welcome",
"title": "Welcome",
"category": "Deno",
"description": "Open the welcome page for the Deno extension."
}
],
"configuration": {
"type": "object",
"title": "Deno",
"properties": {
"deno.enable": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls if the Deno Language Server is enabled. When enabled, the extension will disable the built-in VSCode JavaScript and TypeScript language services, and will use the Deno Language Server (`deno lsp`) instead.\n\n**Not recommended to be enabled globally.**",
"scope": "resource",
"examples": [
true,
false
]
},
"deno.path": {
"type": "string",
"default": null,
"markdownDescription": "A path to the `deno` CLI executable. By default, the extension looks for `deno` in the `PATH`, but if set, will use the path specified instead.",
"scope": "window",
"examples": [
"/usr/bin/deno",
"C:\\Program Files\\deno\\deno.exe"
]
},
"deno.cache": {
"type": "string",
"default": null,
"markdownDescription": "A path to the cache directory for Deno. By default, the operating system's cache path plus `deno` is used, or the `DENO_DIR` environment variable, but if set, this path will be used instead.",
"scope": "window"
},
"deno.codeLens.implementations": {
"type": "boolean",
"default": false,
"markdownDescription": "Enables or disables the display of code lens information for implementations of items in the code.",
"scope": "window",
"examples": [
true,
false
]
},
"deno.codeLens.references": {
"type": "boolean",
"default": false,
"markdownDescription": "Enables or disables the display of code lens information for references of items in the code.",
"scope": "window",
"examples": [
true,
false
]
},
"deno.codeLens.referencesAllFunctions": {
"type": "boolean",
"default": false,
"markdownDescription": "Enables or disables the display of code lens information for all functions in the code.",
"scope": "window",
"examples": [
true,
false
]
},
"deno.codeLens.test": {
"type": "boolean",
"default": true,
"markdownDescription": "Enables or disables the display of code lenses that allow running of individual tests in the code.",
"scope": "resource"
},
"deno.codeLens.testArgs": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"--allow-all"
],
"markdownDescription": "Additional arguments to use with the run test code lens. Defaults to `[ \"--allow-all\" ]`.",
"scope": "resource"
},
"deno.config": {
"type": "string",
"default": null,
"markdownDescription": "The file path to a configuration file. This is the equivalent to using `--config` on the command line. The path can be either be relative to the workspace, or an absolute path.\n\nIt is recommend you name it `deno.json` or `deno.jsonc`.\n\n**Not recommended to be set globally.**",
"scope": "window",
"examples": [
"./deno.jsonc",
"/path/to/deno.jsonc",
"C:\\path\\to\\deno.jsonc"
]
},
"deno.importMap": {
"type": "string",
"default": null,
"markdownDescription": "The file path to an import map. This is the equivalent to using `--import-map` on the command line.\n\n[Import maps](https://deno.land/manual@v1.6.0/linking_to_external_code/import_maps) provide a way to \"relocate\" modules based on their specifiers. The path can either be relative to the workspace, or an absolute path.\n\n**Not recommended to be set globally.**",
"scope": "window",
"examples": [
"./import_map.json",
"/path/to/import_map.json",
"C:\\path\\to\\import_map.json"
]
},
"deno.suggest.autoImports": {
"type": "boolean",
"default": true,
"scope": "window"
},
"deno.suggest.completeFunctionCalls": {
"type": "boolean",
"default": false,
"scope": "window"
},
"deno.suggest.names": {
"type": "boolean",
"default": true,
"scope": "window"
},
"deno.suggest.paths": {
"type": "boolean",
"default": true,
"scope": "window"
},
"deno.suggest.imports.autoDiscover": {
"type": "boolean",
"default": true,
"markdownDescription": "If enabled, when new hosts/origins are encountered that support import suggestions, you will be prompted to enable or disable it. Defaults to `true`.",
"scope": "window"
},
"deno.suggest.imports.hosts": {
"type": "object",
"default": {
"https://deno.land": true,
"https://cdn.nest.land": true,
"https://crux.land": true
},
"markdownDescription": "Controls which hosts are enabled for import suggestions.",
"scope": "window",
"examples": {
"https://deno.land": true
}
},
"deno.unstable": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls if code will be type checked with Deno's unstable APIs. This is the equivalent to using `--unstable` on the command line.\n\n**Not recommended to be enabled globally.**",
"scope": "window",
"examples": [
true,
false
]
},
"deno.lint": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls if linting information will be provided by the Deno Language Server.\n\n**Not recommended to be enabled globally.**",
"scope": "window",
"examples": [
true,
false
]
},
"deno.internalDebug": {
"type": "boolean",
"default": false,
"markdownDescription": "Determines if the internal debugging information for the Deno language server will be logged to the _Deno Language Server_ console.",
"scope": "window",
"examples": [
true,
false
]
}
}
},
"jsonValidation": [
{
"fileMatch": [
"import*map*.json",
"importMap*.json"
],
"url": "./schemas/import_map.schema.json"
},
{
"fileMatch": [
"deno.json",
"deno.jsonc"
],
"url": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json"
},
{
"fileMatch": "deno-import-intellisense.json",
"url": "./schemas/registry-completions.schema.json"
}
],
"problemPatterns": [
{
"name": "deno",
"patterns": [
{
"regexp": "^(warning|error): (?:(\\S+) \\[(?:ERROR|WARN)\\]: )?(.*)$",
"severity": 1,
"code": 2,
"message": 3
},
{
"regexp": "^\\s{4}at\\s.*((?:file|http|https|data|blob):[^:]+):(\\d+):(\\d+)$",
"file": 1,
"line": 2,
"column": 3
}
]
},
{
"name": "deno-test",
"patterns": [
{
"regexp": "^(\\S+:\\s.*)$",
"message": 1
},
{
"regexp": "^\\s{4}at\\s.*((?:file|http|https|data|blob):[^:]+):(\\d+):(\\d+)$",
"file": 1,
"line": 2,
"column": 3
}
]
},
{
"name": "deno-lint",
"patterns": [
{
"regexp": "^\\(([^)]*)\\)\\s(.*)$",
"code": 1,
"message": 2
},
{
"regexp": "^\\s{4}at\\s([^:]+):(\\d+):(\\d+)$",
"file": 1,
"line": 2,
"column": 3
}
]
}
],
"problemMatchers": [
{
"name": "deno",
"owner": "deno-cli",
"source": "deno-cli",
"fileLocation": [
"absolute"
],
"pattern": "$deno"
},
{
"name": "deno-test",
"owner": "deno-test",
"source": "deno-test",
"fileLocation": [
"absolute"
],
"severity": "error",
"pattern": "$deno-test"
},
{
"name": "deno-lint",
"owner": "deno-lint",
"source": "deno-lint",
"fileLocation": [
"absolute"
],
"severity": "warning",
"pattern": "$deno-lint"
}
],
"taskDefinitions": [
{
"type": "deno",
"required": [
"command"
],
"properties": {
"label": {
"type": "string"
},
"command": {
"type": "string",
"description": "The Deno command to run.",
"examples": [
"bundle",
"cache",
"compile",
"lint",
"test"
]
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "Arguments to pass to the command."
},
"env": {
"type": "object",
"patternProperties": {
".+": {
"type": "string"
}
},
"description": "Environment variables to set when executing the command."
}
}
}
],
"typescriptServerPlugins": [
{
"name": "typescript-deno-plugin",
"enableForWorkspaceTypeScriptVersions": true
}
]
},
"scripts": {
"vscode:prepublish": "npm i && npm run esbuild-plugin && npm i && npm run esbuild-base",
"esbuild-base": "esbuild ./client/src/extension.ts --bundle --outfile=client/dist/main.js --external:vscode --format=cjs --platform=node",
"esbuild-plugin": "esbuild ./typescript-deno-plugin/src/index.ts --bundle --outfile=typescript-deno-plugin/dist/index.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-plugin -- --sourcemap && npm run esbuild-base -- --sourcemap",
"test-compile": "tsc -b",
"fmt": "deno fmt .vscode .github client/src media typescript-deno-plugin/src typescript-deno-plugin/*.md docs package.json tsconfig.json README.md CHANGELOG.md",
"lint": "deno lint --unstable client/src typescript-deno-plugin/src docs",
"watch": "tsc -b -w",
"postinstall": "cd typescript-deno-plugin && npm i && cd ../client && npm i && cd .."
},
"dependencies": {
"typescript-deno-plugin": "./typescript-deno-plugin"
},
"devDependencies": {
"@types/node": "^14.14.25",
"esbuild": "^0.12.24",
"typescript": "^4.4.2"
}
}