-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
660 lines (660 loc) · 29.6 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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
{
"name": "azurerm-vscode-tools",
"displayName": "Azure Resource Manager (ARM) Tools",
"description": "Language server, editing tools and snippets for Azure Resource Manager (ARM) template files.",
"version": "0.15.14",
"publisher": "msazurermtools",
"config": {
"$comment.ARM_LANGUAGE_SERVER_NUGET_VERSION": "E.g., 3.0.0-preview.24163.1, or leave blank to pick up the latest",
"ARM_LANGUAGE_SERVER_NUGET_VERSION": ""
},
"categories": [
"Azure",
"Programming Languages",
"Linters",
"Formatters",
"Snippets"
],
"capabilities": {
"virtualWorkspaces": {
"supported": false
}
},
"keywords": [
"Azure Template",
"ARM",
"Resource Manager",
"Azure",
"Snippets"
],
"repository": {
"url": "https://github.com/Microsoft/vscode-azurearmtools.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-azurearmtools/issues"
},
"galleryBanner": {
"color": "E7F1FA",
"theme": "light"
},
"homepage": "https://github.com/Microsoft/vscode-azurearmtools/blob/main/README.md",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "AzureRMTools128x128.png",
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
"engines": {
"$comment": "Must match version of @types/vscode in devDepndencies",
"vscode": "^1.75.0"
},
"preview": true,
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc",
"onCommand:azurerm-vscode-tools.codeAction.extractParameter",
"onCommand:azurerm-vscode-tools.codeAction.extractVariable"
],
"contributes": {
"grammars": [
{
"language": "arm-template",
"scopeName": "source.json.arm-template",
"path": "dist/grammars/JSONC.arm.tmLanguage.json"
},
{
"scopeName": "source.tle.arm-template",
"path": "dist/grammars/arm-expression-string.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Azure Resource Manager Tools",
"properties": {
"azureResourceManagerTools.autoDetectJsonTemplates": {
"type": "boolean",
"default": true,
"description": "Enables auto-detection of deployment template files with the extension *.json or *.jsonc. If set to true (default), the editor language will automatically be set to Azure Resource Manager Template for any *.json/*.jsonc file which contains an appropriate Azure Resource Manager Template schema."
},
"azureResourceManagerTools.languageServer.path": {
"type": "string",
"description": "Override the default location of the language server assembly folder or file path (requires restart)"
},
"azureResourceManagerTools.languageServer.waitForDebugger": {
"type": "boolean",
"default": false,
"description": "If set to true, the language server process will wait in startup until a debugger is attached, and then will force a break (requires restart)"
},
"azureResourceManagerTools.languageServer.traceLevel": {
"type": "string",
"enum": [
"Trace",
"Debug",
"Information",
"Warning",
"Error",
"Critical",
"None"
],
"default": "Warning",
"description": "Sets the trace (log) level in the Output window for the Azure Template Language Server (requires restart)"
},
"azureResourceManagerTools.languageServer.dotnetExePath": {
"type": "string",
"description": "(Requires restart) If specified, overrides the use of a local version of dotnet core the extension and instead points to another installed version of dotnet.exe (must match the version needed by the extension)"
},
"azureResourceManagerTools.checkForLatestSchema": {
"type": "boolean",
"description": "Check if the schema for deployment templates is using an out-of-date version and suggest updating",
"default": true
},
"azureResourceManagerTools.checkForMatchingParameterFiles": {
"type": "boolean",
"description": "Check if an opened template file has a matching params file and ask to use it",
"default": true
},
"azureResourceManagerTools.parameterFiles": {
"type": "object",
"description": "Specifies which parameter file to use for each given template file. Specifying the parameter file allows more thorough validation.",
"default": {},
"additionalProperties": {
"type": "string"
}
},
"azureResourceManagerTools.codelens.enable": {
"type": "boolean",
"description": "Enables or disables all Code Lens features",
"default": true
},
"azureResourceManagerTools.codelens.parameters": {
"type": "boolean",
"description": "Enables Code Lens for parameter definitions and values",
"default": true
},
"azureResourceManagerTools.codelens.resourceChildren": {
"type": "boolean",
"description": "Enables Code Lens that displays the parent and children of each resource",
"default": true
}
}
},
"views": {
"explorer": [
{
"id": "azurerm-vscode-tools.template-outline",
"name": "ARM Template Outline",
"when": "showAzureTemplateView"
}
]
},
"languages": [
{
"id": "arm-template",
"aliases": [
"Azure Resource Manager Template"
],
"configuration": "dist/grammars/jsonc.arm.language-configuration.json",
"mimetypes": []
}
],
"commands": [
{
"$comment": "============= Developer commands =============",
"category": "Azure Resource Manager Tools (Developer)",
"title": "Show Insertion Context at current location (for snippet authors)",
"command": "azurerm-vscode-tools.developer.showInsertionContext"
},
{
"category": "Azure Resource Manager Tools (Developer)",
"title": "Reset Global State",
"command": "azurerm-vscode-tools.developer.resetGlobalState"
},
{
"category": "Azure Resource Manager Tools (Developer)",
"title": "Show Available Resource Types and Versions",
"command": "azurerm-vscode-tools.developer.showAvailableResourceTypesAndVersions"
},
{
"$comment": "============= Programmatic =============",
"category": "Azure Resource Manager Tools",
"title": "Go to parameter value",
"command": "azurerm-vscode-tools.codeLens.gotoParameterValue",
"$comment2": "Code lens on a parameter definition - navigates to parameter value"
},
{
"category": "Azure Resource Manager Tools",
"title": "Open a linked template file",
"command": "azurerm-vscode-tools.codeLens.openLinkedTemplateFile",
"$comment2": "Code lens on a linked template - opens the linked template"
},
{
"category": "Azure Resource Manager Tools",
"title": "Reload a linked template file",
"command": "azurerm-vscode-tools.codeLens.reloadLinkedTemplateFile",
"$comment2": "Code lens on a linked template - reloads the linked template"
},
{
"$comment": "============= Insert Item =============",
"category": "Azure Resource Manager Tools",
"title": "Insert Item...",
"command": "azurerm-vscode-tools.insertItem",
"icon": {
"light": "icons/insertItemLight.svg",
"dark": "icons/insertItemDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Insert Variable...",
"command": "azurerm-vscode-tools.insertVariable",
"icon": {
"light": "icons/insertItemLight.svg",
"dark": "icons/insertItemDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Insert Function...",
"command": "azurerm-vscode-tools.insertFunction",
"icon": {
"light": "icons/insertItemLight.svg",
"dark": "icons/insertItemDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Insert Resource...",
"command": "azurerm-vscode-tools.insertResource",
"icon": {
"light": "icons/insertItemLight.svg",
"dark": "icons/insertItemDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Insert Parameter...",
"command": "azurerm-vscode-tools.insertParameter",
"icon": {
"light": "icons/insertItemLight.svg",
"dark": "icons/insertItemDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Insert Output...",
"command": "azurerm-vscode-tools.insertOutput",
"icon": {
"light": "icons/insertItemLight.svg",
"dark": "icons/insertItemDark.svg"
}
},
{
"$comment": "============= Template sorting =============",
"category": "Azure Resource Manager Tools",
"title": "Sort Template...",
"command": "azurerm-vscode-tools.sortTemplate",
"icon": {
"light": "icons/sortLight.svg",
"dark": "icons/sortDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Sort Functions",
"command": "azurerm-vscode-tools.sortFunctions",
"icon": {
"light": "icons/sortLight.svg",
"dark": "icons/sortDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Sort Outputs",
"command": "azurerm-vscode-tools.sortOutputs",
"icon": {
"light": "icons/sortLight.svg",
"dark": "icons/sortDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Sort Parameters",
"command": "azurerm-vscode-tools.sortParameters",
"icon": {
"light": "icons/sortLight.svg",
"dark": "icons/sortDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Sort Resources",
"command": "azurerm-vscode-tools.sortResources",
"icon": {
"light": "icons/sortLight.svg",
"dark": "icons/sortDark.svg"
}
},
{
"category": "Azure Resource Manager Tools",
"title": "Sort Variables",
"command": "azurerm-vscode-tools.sortVariables",
"icon": {
"light": "icons/sortLight.svg",
"dark": "icons/sortDark.svg"
}
},
{
"$comment": "============= Template file commands =============",
"category": "Azure Resource Manager Tools",
"title": "Select/Create Parameter File...",
"command": "azurerm-vscode-tools.selectParameterFile",
"enablement": "editorLangId==arm-template"
},
{
"category": "Azure Resource Manager Tools",
"title": "Open Parameter File",
"command": "azurerm-vscode-tools.openParameterFile",
"enablement": "azurerm-vscode-tools-hasParamFile",
"$enablement.comment": "Shows up when it's a template file, but only enabled if there is an associated param file"
},
{
"$comment": "============= Parameter file commands =============",
"category": "Azure Resource Manager Tools",
"title": "Open Template File",
"command": "azurerm-vscode-tools.openTemplateFile",
"enablement": "azurerm-vscode-tools-hasTemplateFile",
"$enablement.comment": "Shows up when it's a param file, but only enabled if there is an associated template file"
},
{
"category": "Azure Resource Manager Tools",
"title": "Add All Missing Parameters",
"command": "azurerm-vscode-tools.codeAction.addAllMissingParameters",
"enablement": "azurerm-vscode-tools-hasTemplateFile",
"$enablement.comment": "Shows up when it's a param file, but only enabled if there is an associated template file"
},
{
"category": "Azure Resource Manager Tools",
"title": "Add Missing Required Parameters",
"command": "azurerm-vscode-tools.codeAction.addMissingRequiredParameters",
"enablement": "azurerm-vscode-tools-hasTemplateFile",
"$enablement.comment": "Shows up when it's a param file, but only enabled if there is an associated template file"
}
],
"menus": {
"commandPalette": [
{
"command": "azurerm-vscode-tools.sortFunctions",
"when": "never"
},
{
"command": "azurerm-vscode-tools.sortOutputs",
"when": "never"
},
{
"command": "azurerm-vscode-tools.sortParameters",
"when": "never"
},
{
"command": "azurerm-vscode-tools.sortResources",
"when": "never"
},
{
"command": "azurerm-vscode-tools.sortVariables",
"when": "never"
},
{
"command": "azurerm-vscode-tools.insertParameter",
"when": "never"
},
{
"command": "azurerm-vscode-tools.insertVariable",
"when": "never"
},
{
"command": "azurerm-vscode-tools.insertOutput",
"when": "never"
},
{
"command": "azurerm-vscode-tools.insertFunction",
"when": "never"
},
{
"command": "azurerm-vscode-tools.insertResource",
"when": "never"
},
{
"command": "azurerm-vscode-tools.openTemplateFile",
"when": "never"
},
{
"command": "azurerm-vscode-tools.codeLens.openLinkedTemplateFile",
"when": "never"
},
{
"command": "azurerm-vscode-tools.codeLens.reloadLinkedTemplateFile",
"when": "never"
},
{
"command": "azurerm-vscode-tools.codeLens.gotoParameterValue",
"when": "never"
}
],
"editor/context": [
{
"$comment": "============= Template file commands =============",
"command": "azurerm-vscode-tools.selectParameterFile",
"group": "zzz_arm-template@1",
"when": "editorLangId==arm-template"
},
{
"command": "azurerm-vscode-tools.openParameterFile",
"group": "zzz_arm-template@2",
"when": "editorLangId==arm-template",
"$when.comment": "Shows up when it's a template file, but only enabled if there is an associated param file"
},
{
"command": "azurerm-vscode-tools.sortTemplate",
"when": "editorLangId==arm-template",
"group": "zzz_arm-template@3"
},
{
"command": "azurerm-vscode-tools.insertItem",
"when": "editorLangId==arm-template",
"group": "zzz_arm-template@4"
},
{
"$comment": "============= Parameter file commands =============",
"command": "azurerm-vscode-tools.openTemplateFile",
"group": "zzz_arm-params@2",
"when": "azurerm-vscode-tools-isParamFile",
"$when.comment": "Shows up when it's a param file, but only enabled if there is an associated template file"
}
],
"view/item/context": [
{
"$comment": "============= Treeview commands =============",
"command": "azurerm-vscode-tools.sortFunctions",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /functions@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.sortOutputs",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /outputs@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.sortParameters",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /parameters@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.sortResources",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /resources@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.sortVariables",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /variables@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.insertParameter",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /parameters@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.insertVariable",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /variables@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.insertOutput",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /outputs@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.insertFunction",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /functions@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.insertResource",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /resources@\\d/",
"group": "arm-template"
},
{
"command": "azurerm-vscode-tools.sortFunctions",
"when": "view == azurerm-vscode-tools.template-outline && viewItem == functions@1",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.sortOutputs",
"when": "view == azurerm-vscode-tools.template-outline && viewItem == outputs@1",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.sortParameters",
"when": "view == azurerm-vscode-tools.template-outline && viewItem == parameters@1",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.sortResources",
"when": "view == azurerm-vscode-tools.template-outline && viewItem == resources@1",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.sortVariables",
"when": "view == azurerm-vscode-tools.template-outline && viewItem == variables@1",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.insertParameter",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /parameters@\\d/",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.insertVariable",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /variables@\\d/",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.insertOutput",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /outputs@\\d/",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.insertFunction",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /functions@\\d/",
"group": "inline"
},
{
"command": "azurerm-vscode-tools.insertResource",
"when": "view == azurerm-vscode-tools.template-outline && viewItem =~ /resources@\\d/",
"group": "inline"
}
],
"editor/title": [
{
"$comment": "============= Template file commands =============",
"command": "azurerm-vscode-tools.selectParameterFile",
"group": "zzz_arm-template@1",
"when": "editorLangId==arm-template"
},
{
"command": "azurerm-vscode-tools.openParameterFile",
"group": "zzz_arm-template@2",
"when": "editorLangId==arm-template",
"$when.comment": "Shows up when it's a template file, but only enabled if there is an associated param file"
},
{
"$comment": "============= Parameter file commands =============",
"command": "azurerm-vscode-tools.openTemplateFile",
"group": "zzz_arm-params@2",
"when": "azurerm-vscode-tools-isParamFile",
"$when.comment": "Shows up when it's a param file, but only enabled if there is an associated template file"
}
],
"editor/title/context": [
{
"$comment": "============= Template file commands =============",
"command": "azurerm-vscode-tools.selectParameterFile",
"group": "zzz_arm-template@1",
"when": "editorLangId==arm-template"
},
{
"command": "azurerm-vscode-tools.openParameterFile",
"group": "zzz_arm-template@2",
"when": "editorLangId==arm-template",
"$when.comment": "Shows up when it's a template file, but only enabled if there is an associated param file"
},
{
"$comment": "============= Parameter file commands =============",
"command": "azurerm-vscode-tools.openTemplateFile",
"group": "zzz_arm-params@2",
"when": "azurerm-vscode-tools-isParamFile",
"$when.comment": "Shows up when it's a param file, but only enabled if there is an associated template file"
}
],
"view/title": [
{
"command": "azurerm-vscode-tools.insertItem",
"when": "view == azurerm-vscode-tools.template-outline",
"group": "navigation@1"
},
{
"command": "azurerm-vscode-tools.sortTemplate",
"when": "view == azurerm-vscode-tools.template-outline",
"group": "navigation@2"
}
]
}
},
"main": "main",
"scripts": {
"vscode:prepublish": "gulp error-vsce-package",
"build": "gulp build-grammars && npm run get-language-server && gulp verify-test-uses-extension-bundle && tsc -p ./",
"compile": "gulp build-grammars && npm run get-language-server && gulp verify-test-uses-extension-bundle && tsc -watch -p ./",
"get-language-server": "gulp get-language-server",
"$lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose",
"lint": "",
"$lint-fix": "tslint --project tsconfig.json -t verbose --fix",
"package": "npm run webpack-prod && npm run get-language-server && gulp package",
"pretest": "npm run pretest-prod",
"pretest-prod": "npm run webpack-prod && gulp pretest",
"pretest-dev": "npm run webpack && gulp pretest",
"$test.comment": "Runs tests from the webpacked extension. If you want to run tests from the source code directly, run from without vscode.",
"test": "node ./dist/test/runTest.js",
"all": "npm i && npm test && npm run lint",
"webpack": "gulp webpack-prod",
"webpack-dev": "npm run build && gulp webpack-dev",
"webpack-prod": "npm run build && gulp webpack-prod",
"webpack-profile": "webpack --profile --json --mode production > webpack-stats.json && echo Use http://webpack.github.io/analyse to analyze the stats",
"build-grammars": "gulp build-grammars",
"watch-grammars": "gulp watch-grammars",
"verify-test-uses-extension-bundle": "gulp verify-test-uses-extension-bundle"
},
"$devDependencies.comment": "@types/estree is to fix eslint issue, see https://stackoverflow.com/questions/67806963/types-eslint-error-chainexpression-and-importexpression-members-of-estree-not#:~:text=Solution%20to%20this%20problem%20is%3A%20npm%20install%20--save-dev,again%3A%20npm%20install%20Errors%20should%20be%20gone%20now.",
"devDependencies": {
"@types/decompress": "^4.2.7",
"@types/estree": "^1.0.6",
"@types/fs-extra": "^11.0.4",
"@types/gulp": "^4.0.17",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.3",
"@types/recursive-readdir": "^2.2.4",
"@types/rimraf": "2.0.2",
"@types/shelljs": "0.8.15",
"@types/vscode": "^1.75.0",
"@types/vinyl": "^2.0.12",
"@types/webpack": "^5.28.5",
"@vscode/test-cli": "0.0.10",
"@vscode/test-electron": "^2.4.1",
"@microsoft/vscode-azext-dev": "^2.1.0",
"chokidar": "4.0.1",
"crypto": "^1.0.1",
"glob": "^7.2.3",
"glob-promise": "^4.2.2",
"gulp": "^5.0.0",
"mocha": "^10.8.2",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"nuget": "^2.0.2",
"recursive-readdir": "^2.2.3",
"rimraf": "3.0.2",
"shelljs": "^0.8.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.0.3",
"vsce": "^1.87.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@microsoft/vscode-azext-utils": "^2.5.11",
"fs-extra": "^11.2.0",
"moment": "^2.30.1",
"strip-json-comments": "^3.1.1",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageclient": "^7.0.0"
},
"extensionDependencies": [
"ms-dotnettools.vscode-dotnet-runtime"
]
}