-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
695 lines (695 loc) · 27.1 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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
{
"name": "story-explorer",
"displayName": "Story Explorer",
"description": "Browse and preview Storybook stories inside VS Code",
"publisher": "joshbolduc",
"version": "1.1.0",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/joshbolduc/vscode-story-explorer.git"
},
"bugs": {
"url": "https://github.com/joshbolduc/vscode-story-explorer/issues"
},
"homepage": "https://github.com/joshbolduc/vscode-story-explorer",
"license": "MIT",
"engines": {
"npm": "^9.0.0",
"vscode": "^1.66.0"
},
"categories": [
"Other"
],
"keywords": [
"storybook",
"component",
"story",
"csf"
],
"activationEvents": [
"onCommand:storyExplorer.goToStorySource",
"onCommand:storyExplorer.openPreview",
"onCommand:storyExplorer.openPreviewInBrowser",
"onCommand:storyExplorer.openPreviewToSide",
"onCommand:storyExplorer.openStorybookConfig",
"onCommand:storyExplorer.openStorybookInBrowser",
"onCommand:storyExplorer.refreshAllWebviews",
"onCommand:storyExplorer.refreshWebview",
"onCommand:storyExplorer.restartStorybookServer",
"onCommand:storyExplorer.startStorybookServer",
"onCommand:storyExplorer.stopStorybookServer",
"onView:storyExplorer.storiesView",
"onWebviewPanel:storyExplorer.webviewPreview",
"workspaceContains:**/.storybook/*",
"workspaceContains:**/*.mdx",
"workspaceContains:**/*.stories.js",
"workspaceContains:**/*.stories.jsx",
"workspaceContains:**/*.stories.ts",
"workspaceContains:**/*.stories.tsx"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": false
}
},
"contributes": {
"commands": [
{
"command": "storyExplorer.openPreview",
"title": "Open Preview",
"category": "Story Explorer",
"icon": "$(preview)"
},
{
"command": "storyExplorer.openPreviewToSide",
"title": "Open Preview to the Side",
"category": "Story Explorer",
"icon": "$(open-preview)"
},
{
"command": "storyExplorer.refreshStories",
"title": "Refresh Stories",
"shortTitle": "Refresh",
"category": "Story Explorer",
"icon": "$(refresh)"
},
{
"command": "storyExplorer.refreshWebview",
"title": "Refresh Preview",
"category": "Story Explorer",
"icon": "$(refresh)"
},
{
"command": "storyExplorer.refreshAllWebviews",
"title": "Refresh All Previews",
"category": "Story Explorer",
"icon": "$(refresh)"
},
{
"command": "storyExplorer.goToStorySource",
"title": "Go to Story Source",
"category": "Story Explorer",
"icon": "$(code)"
},
{
"command": "storyExplorer.openStorybookInBrowser",
"title": "Open Storybook in Browser",
"category": "Story Explorer",
"icon": "$(globe)",
"enablement": "storyExplorer.storybookConfigDetected"
},
{
"command": "storyExplorer.openPreviewInBrowser",
"title": "Open Preview in Browser",
"category": "Story Explorer",
"icon": "$(globe)"
},
{
"command": "storyExplorer.openStorybookConfig",
"title": "Open Storybook Config",
"category": "Story Explorer",
"icon": "$(gear)",
"enablement": "storyExplorer.storybookConfigDetected"
},
{
"command": "storyExplorer.startStorybookServer",
"title": "Start Storybook Server",
"category": "Story Explorer",
"icon": "$(gear)",
"enablement": "!storyExplorer.internalServerRunning && storyExplorer.storybookConfigDetected && config.storyExplorer.server.internal.enabled"
},
{
"command": "storyExplorer.stopStorybookServer",
"title": "Stop Storybook Server",
"category": "Story Explorer",
"icon": "$(gear)",
"enablement": "storyExplorer.internalServerRunning"
},
{
"command": "storyExplorer.restartStorybookServer",
"title": "Restart Storybook Server",
"category": "Story Explorer",
"icon": "$(gear)",
"enablement": "storyExplorer.internalServerRunning"
}
],
"configuration": {
"title": "Story Explorer",
"properties": {
"storyExplorer.logLevel": {
"scope": "window",
"markdownDescription": "Log level to use for logging. Logs are available via the [Story Explorer output channel in the output panel](command:storyExplorer.openOutputChannel).",
"default": "error",
"enum": [
"none",
"error",
"warn",
"info",
"debug"
],
"markdownEnumDescriptions": [
"Do not log",
"Log errors only",
"Log warnings and errors",
"Log general operational information, warnings, and errors",
"Log debugging information, general operational information, warnings, and errors"
]
},
"storyExplorer.storybookConfigDir": {
"scope": "window",
"markdownDescription": "Location of the Storybook configuration directory containing `main.js`. By default, Story Explorer will attempt to auto-detect a `.storybook` configuration directory that contains a `main.js` file. If your configuration directory is named something other than `.storybook` or your workspace contains more than one configuration directory, you should manually specify a path to the configuration directory you wish to use.",
"type": "string",
"examples": [
".storybook"
]
},
"storyExplorer.storybookConfig.docs.autodocs": {
"scope": "window",
"markdownDescription": "Overrides the `docs.autodocs` portion of the Storybook configuration. This property configures auto-generated documentation pages.",
"default": null,
"enum": [
null,
"tag",
true,
false
],
"enumItemLabels": [
"Detect from Storybook config",
"Tag",
"Enabled",
"Disabled"
],
"markdownEnumDescriptions": [
"Use the same settings as detected in the Storybook configuration file",
"Show auto-generated documentation entries for files with the `autodocs` tag",
"Show auto-generated documentation entries for all files",
"Do not show auto-generated documentation entries"
]
},
"storyExplorer.storybookConfig.docs.defaultName": {
"scope": "window",
"markdownDescription": "Overrides the `docs.defaultName` portion of the Storybook configuration. This property controls the name of the auto-generated documentation page.",
"default": null,
"type": "string",
"examples": [
"Docs"
]
},
"storyExplorer.storiesGlobs": {
"scope": "window",
"markdownDescription": "Globs specifying the location of stories in the project relative to the workspace root. By default, stories globs are read from the Storybook configuration file. If specified, this takes precedence over the Storybook configuration file.",
"default": null,
"type": [
"string",
"array",
"object"
],
"required": [
"directory"
],
"properties": {
"directory": {
"type": "string"
},
"titlePrefix": {
"type": "string"
},
"files": {
"type": "string"
}
},
"items": {
"type": [
"string",
"object"
],
"required": [
"directory"
],
"properties": {
"directory": {
"type": "string"
},
"titlePrefix": {
"type": "string"
},
"files": {
"type": "string"
}
},
"examples": [
"src/**/*.mdx",
"src/**/*.stories.@(js|jsx|ts|tsx)",
"src/**/*.stories.mdx"
]
},
"examples": [
"src/**/*.stories.mdx",
"src/**/*.stories.@(js|jsx|ts|tsx)",
"src/**/*.mdx",
[
"src/**/*.mdx",
"src/**/*.stories.@(js|jsx|ts|tsx)"
],
[
"src/**/*.stories.mdx",
"src/**/*.stories.@(js|jsx|ts|tsx)"
]
]
},
"storyExplorer.server.internal.storybookBinaryPath": {
"scope": "window",
"markdownDescription": "Path to the `start-storybook` script used to start the Storybook development server. By default, Story Explorer will attempt to auto-detect the path inside `node_modules`.",
"markdownDeprecationMessage": "This option has been replaced with `#storyExplorer.server.internal.startStorybook.path#`. If you used this option to run a script other than `start-storybook`, consider switching to a different launch strategy.",
"type": "string",
"examples": [
"node_modules/.bin/start-storybook"
],
"default": null
},
"storyExplorer.server.internal.commandLineArgs": {
"scope": "window",
"markdownDescription": "Array of command line arguments to pass to the `start-storybook` script.",
"markdownDeprecationMessage": "This option has been replaced with `#storyExplorer.server.internal.startStorybook.args#`. If you used this option to run a script other than `start-storybook`, consider switching to a different launch strategy.",
"type": "array",
"items": {
"type": [
"string",
"number"
]
},
"examples": [
[
"-p",
"6006"
]
],
"default": null
},
"storyExplorer.server.internal.environmentVariables": {
"scope": "window",
"markdownDescription": "Object with environment variables that will be added to the Storybook server process.",
"type": "object",
"additionalProperties": {
"type": [
"string",
"number",
"boolean"
]
}
},
"storyExplorer.server.internal.launchStrategy": {
"scope": "window",
"markdownDescription": "The method to use to launch the Storybook development server.",
"enum": [
"detect",
"npm",
"storybook",
"start-storybook",
"task",
"custom"
],
"enumItemLabels": [
"Detect automatically",
"npm script",
"storybook command (Storybook 7)",
"start-storybook command (Storybook 6)",
"VS Code task",
"Custom command"
],
"markdownEnumDescriptions": [
"Detect automatically",
"Run an npm script",
"Run `storybook dev` directly, for use with Storybook 7",
"Run `start-storybook` directly, for use with Storybook 6",
"Run a VS Code task",
"Run a custom command"
],
"default": "detect"
},
"storyExplorer.server.internal.npm.dir": {
"scope": "window",
"markdownDescription": "Optional path to the directory containing the `package.json` file with the npm script to use. If your workspace contains multiple `package.json` files with the same script name, you can set this to specify which one to use. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `npm` or `detect`.",
"type": "string",
"default": null
},
"storyExplorer.server.internal.npm.script": {
"scope": "window",
"markdownDescription": "Name of the npm script to use to launch the Storybook development server. Defaults to `storybook`. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `npm` or `detect`.",
"type": "string",
"examples": [
"storybook"
],
"default": "storybook"
},
"storyExplorer.server.internal.task.label": {
"scope": "window",
"markdownDescription": "Label of the task to run to launch the Storybook development server. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `task` or `detect`.",
"type": "string"
},
"storyExplorer.server.internal.task.type": {
"scope": "window",
"markdownDescription": "Optional type of the task to run to launch the Storybook development server. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `task` or `detect`.",
"type": "string"
},
"storyExplorer.server.internal.storybook.path": {
"scope": "window",
"markdownDescription": "Path to the `storybook` CLI used to start the Storybook 7 development server. By default, Story Explorer will attempt to auto-detect the path inside `node_modules`. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `storybook` or `detect`.",
"type": "string",
"examples": [
"node_modules/.bin/storybook"
],
"default": null
},
"storyExplorer.server.internal.storybook.args": {
"scope": "window",
"markdownDescription": "Array of command line arguments to pass to the `storybook` CLI when launching a development server. The `dev` argument is always included. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `storybook` or `detect`.",
"type": "array",
"items": {
"type": [
"string",
"number"
]
},
"examples": [
[
"-p",
"6006"
]
]
},
"storyExplorer.server.internal.startStorybook.path": {
"scope": "window",
"markdownDescription": "Path to the `start-storybook` script used to start the Storybook 6 development server. By default, Story Explorer will attempt to auto-detect the path inside `node_modules`. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `start-storybook` or `detect`.",
"type": "string",
"examples": [
"node_modules/.bin/start-storybook"
],
"default": null
},
"storyExplorer.server.internal.startStorybook.args": {
"scope": "window",
"markdownDescription": "Array of command line arguments to pass to the `start-storybook` script. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `start-storybook` or `detect`.",
"type": "array",
"items": {
"type": [
"string",
"number"
]
},
"examples": [
[
"-p",
"6006"
]
],
"default": null
},
"storyExplorer.server.internal.custom.path": {
"scope": "window",
"markdownDescription": "Path to a custom script used to start the Storybook development server. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `custom` or `detect`.",
"type": "string",
"default": null
},
"storyExplorer.server.internal.custom.args": {
"scope": "window",
"markdownDescription": "Array of command line arguments to pass to the custom script. Only used when `#storyExplorer.server.internal.launchStrategy#` is set to `custom` or `detect`.",
"type": "array",
"items": {
"type": [
"string",
"number"
]
}
},
"storyExplorer.server.internal.enabled": {
"scope": "window",
"markdownDescription": "Controls whether to enable the internal Storybook development server. When unchecked, you will have to run the server externally.",
"default": true,
"type": "boolean"
},
"storyExplorer.server.internal.behavior": {
"scope": "window",
"markdownDescription": "Controls when to automatically start a Storybook development server. This setting only applies when `#storyExplorer.server.internal.enabled#` is enabled.",
"default": "deferred",
"enum": [
"immediate",
"deferred"
],
"markdownEnumDescriptions": [
"Start the server automatically when opening the workspace.",
"Wait to start the server automatically until a story preview is opened."
]
},
"storyExplorer.server.external.url": {
"scope": "window",
"markdownDescription": "URL of an externally launched and managed Storybook instance, used when `#storyExplorer.server.internal.enabled#` is disabled. Defaults to `http://localhost:6006`.",
"type": "string",
"examples": [
"http://localhost:6006"
]
},
"storyExplorer.codeLens.stories.enabled": {
"scope": "language-overridable",
"markdownDescription": "Controls whether to display CodeLens results for stories. When enabled, CodeLens results for stories appear above story definitions.",
"type": "boolean",
"default": true
},
"storyExplorer.codeLens.docs.enabled": {
"scope": "language-overridable",
"markdownDescription": "Controls whether to display CodeLens results for docs. When enabled, CodeLens results for docs appear at the top of story files.",
"type": "boolean",
"default": true
},
"storyExplorer.storiesView.showItemsWithoutStories": {
"scope": "window",
"markdownDescription": "Controls whether to display story kinds in the stories view that do not contain any valid stories. These items do not appear in Storybook.",
"type": "boolean",
"default": false
},
"storyExplorer.suggestTitle": {
"scope": "language-overridable",
"markdownDescription": "Controls whether to offer suggestions for titles when specifying a `Meta` object in CSF or MDX files. Suggestions are based on other titles used in the project.",
"type": "boolean",
"default": true
},
"storyExplorer.suggestStoryId": {
"scope": "language-overridable",
"markdownDescription": "Controls whether to offer suggestions for story IDs when using `<Story id=\"...\" />` in MDX files. Suggestions are based on the IDs of other stories in the project.",
"type": "boolean",
"default": true
},
"storyExplorer.preview.mode": {
"scope": "window",
"markdownDescription": "Controls the presentation of the story in the embedded story preview.",
"default": "canvas",
"enum": [
"canvas",
"full"
],
"markdownEnumDescriptions": [
"Displays the story's canvas, without any additional toolbars or Storybook UI.",
"Displays the story within the full Storybook UI."
]
}
}
},
"languages": [
{
"id": "mdx",
"aliases": [
"MDX"
],
"extensions": [
".mdx"
]
}
],
"menus": {
"commandPalette": [
{
"command": "storyExplorer.goToStorySource",
"when": "storyExplorer.storybookPreviewFocused"
},
{
"command": "storyExplorer.refreshWebview",
"when": "storyExplorer.storybookPreviewFocused"
},
{
"command": "storyExplorer.openPreviewInBrowser",
"when": "storyExplorer.storybookPreviewFocused"
},
{
"command": "storyExplorer.refreshAllWebviews",
"when": "storyExplorer.storybookWebviewsOpen"
},
{
"command": "storyExplorer.openPreview",
"when": "false"
},
{
"command": "storyExplorer.openPreviewToSide",
"when": "false"
}
],
"editor/title": [
{
"when": "storyExplorer.storybookPreviewFocused",
"group": "navigation",
"command": "storyExplorer.goToStorySource"
},
{
"when": "storyExplorer.storybookPreviewFocused",
"group": "navigation",
"command": "storyExplorer.refreshWebview"
},
{
"when": "storyExplorer.storybookPreviewFocused",
"group": "navigation",
"command": "storyExplorer.openPreviewInBrowser"
}
],
"view/item/context": [
{
"command": "storyExplorer.openPreviewInBrowser",
"when": "view == storyExplorer.storiesView && viewItem == story",
"group": "inline"
},
{
"command": "storyExplorer.openPreview",
"alt": "storyExplorer.openPreviewToSide",
"when": "view == storyExplorer.storiesView && viewItem == story",
"group": "inline"
}
],
"view/title": [
{
"command": "storyExplorer.openStorybookConfig",
"when": "view == storyExplorer.storiesView",
"group": "navigation"
},
{
"command": "storyExplorer.openStorybookInBrowser",
"when": "view == storyExplorer.storiesView",
"group": "navigation"
},
{
"command": "storyExplorer.refreshStories",
"when": "view == storyExplorer.storiesView",
"group": "navigation"
}
]
},
"views": {
"explorer": [
{
"id": "storyExplorer.storiesView",
"name": "Stories",
"contextualTitle": "Story Explorer",
"icon": "$(bookmark)"
}
]
},
"viewsWelcome": [
{
"view": "storyExplorer.storiesView",
"contents": "Looking for stories...",
"when": "!storyExplorer.initialLoadComplete || storyExplorer.loadingStories"
},
{
"view": "storyExplorer.storiesView",
"contents": "No Storybook configuration or stories were found. Try manually specifying your project's [configuration directory](command:storyExplorer.openStorybookConfigDirSetting) or [stories](command:storyExplorer.openStoriesGlobsSetting).",
"when": "storyExplorer.initialLoadComplete && !storyExplorer.loadingStories && !storyExplorer.storybookConfigDetected"
},
{
"view": "storyExplorer.storiesView",
"contents": "There was a problem parsing your Storybook configuration. [Check your Storybook configuration](command:storyExplorer.openStorybookConfig), or [try manually specifying your project's stories](command:storyExplorer.openStoriesGlobsSetting).",
"when": "storyExplorer.initialLoadComplete && !storyExplorer.loadingStories && storyExplorer.storybookConfigDetected && storyExplorer.storybookConfigParseFailed"
},
{
"view": "storyExplorer.storiesView",
"contents": "No stories were found. Add a story to see it appear here, or [check your Storybook configuration](command:storyExplorer.openStorybookConfig), or [try manually specifying your project's stories](command:storyExplorer.openStoriesGlobsSetting).",
"when": "storyExplorer.initialLoadComplete && !storyExplorer.loadingStories && storyExplorer.storybookConfigDetected && !storyExplorer.storybookConfigParseFailed"
}
]
},
"main": "./dist/extension/index.js",
"scripts": {
"build": "npm run -s build:webview && npm run -s build:configParser && npm run -s build:extension",
"build:configParser": "npm run -s build:configParser:base -- --sourcemap",
"build:extension": "npm run -s build:extension:base -- --sourcemap",
"build:webview": "npm run -s build:webview:base -- --sourcemap=inline",
"build:configParser:base": "esbuild ./configParser/index.ts --bundle --outdir=dist/configParser --external:esbuild-wasm --alias:esbuild=esbuild-wasm --format=cjs --platform=node --target=node16.13.0",
"build:extension:base": "esbuild ./src/index.ts --bundle --outdir=dist/extension --external:vscode --loader:.html=text --format=cjs --platform=node --target=node16.13.0",
"build:webview:base": "esbuild ./webview/entry-story.ts ./webview/entry-host.ts --bundle --loader:.html=text --outdir=dist/webview --target=chrome89",
"watch": "concurrently npm:watch:webview npm:watch:configParser npm:watch:extension",
"watch:extension": "npm run -s build:extension -- --watch",
"watch:configParser": "npm run -s build:configParser -- --watch",
"watch:webview": "npm run -s build:webview -- --watch",
"build:production": "npm run -s build:webview:base -- --minify && npm run -s build:configParser:base -- --minify && npm run -s build:extension:base -- --minify",
"package": "npm run -s build:production && vsce package --githubBranch main",
"deploy": "vsce publish --packagePath vsix/*.vsix",
"format": "prettier --check '{.vscode,src}/**/*.{json,ts}' '*.{json,md}'",
"format:fix": "npm run -s format -- --write",
"generate-settings-markdown": "node -r ts-eager/register ./scripts/generateSettingsReadmeMarkdown.ts",
"lint": "eslint src --ext ts --max-warnings 0",
"lint:fix": "npm run -s lint -- --fix",
"release": "standard-version",
"test": "vitest run",
"typecheck": "tsc --build",
"typecheck:watch": "npm run -s typecheck -- --watch"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
},
"dependencies": {
"esbuild-wasm": "0.18.5"
},
"devDependencies": {
"@babel/parser": "7.26.3",
"@babel/traverse": "7.26.4",
"@babel/types": "7.26.3",
"@commitlint/config-conventional": "17.6.5",
"@componentdriven/csf": "0.0.2-alpha.0",
"@mdx-js/mdx": "1.6.22",
"@mdx-js/mdx-2": "npm:@mdx-js/[email protected]",
"@types/babel__traverse": "7.20.6",
"@types/http-proxy": "1.17.15",
"@types/lodash": "4.17.13",
"@types/node": "16.11.68",
"@types/node-netstat": "1.8.4",
"@types/picomatch": "2.3.4",
"@types/semver": "7.5.8",
"@types/vscode": "1.66.0",
"@types/vscode-webview": "1.57.5",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"@vitest/coverage-v8": "0.32.2",
"@vscode/vsce": "2.19.0",
"concurrently": "8.2.2",
"esbuild": "0.18.5",
"esbuild-register": "3.6.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.31.0",
"fast-glob": "3.3.2",
"http-proxy": "1.18.1",
"lodash": "4.17.21",
"node-netstat": "1.9.0",
"p-limit": "4.0.0",
"picomatch": "2.3.1",
"pidtree": "0.6.0",
"prettier": "2.8.8",
"rxjs": "7.8.1",
"semver": "7.6.3",
"snyk-nodejs-lockfile-parser": "1.58.14",
"standard-version": "9.5.0",
"ts-eager": "2.0.2",
"typescript": "5.1.3",
"vitest": "0.32.2",
"vscode-uri": "3.0.7"
}
}