-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
727 lines (727 loc) · 26.2 KB
/
Copy pathpackage.json
File metadata and controls
727 lines (727 loc) · 26.2 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
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
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
{
"name": "specwright",
"displayName": "Specwright BDD - Playwright-BDD Test Explorer",
"description": "Run, debug & explore Playwright-BDD (playwright-bdd) Gherkin tests in the Test Explorer. Full .feature authoring: autocomplete, hover, go-to-definition, find references, diagnostics, snippets, tag filtering, parallel runs, and step-definition generation. Works alongside Cucumber.",
"version": "0.3.9",
"icon": "icon.png",
"publisher": "upscaled-dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/upscaled-dev/specwright.git"
},
"homepage": "https://github.com/upscaled-dev/specwright#readme",
"bugs": {
"url": "https://github.com/upscaled-dev/specwright/issues"
},
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"Testing",
"Programming Languages",
"Debuggers",
"Formatters",
"Snippets",
"Linters"
],
"keywords": [
"playwright-bdd",
"playwright",
"playwright test",
"bdd",
"behavior driven development",
"typescript",
"gherkin",
"gherkin syntax highlighting",
"cucumber",
"test explorer",
"test runner",
"feature",
"feature files",
"scenario",
"scenario outline",
"step definitions",
"given when then",
"e2e",
"end-to-end",
"testing",
"test automation",
"acceptance testing",
"living documentation",
"qa",
"codelens",
"debug tests",
"tags",
"examples",
"cucumber.js",
"specwright"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "gherkin",
"aliases": [
"Gherkin",
"feature"
],
"extensions": [
".feature"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/gherkin-light.svg",
"dark": "./icons/gherkin-dark.svg"
}
}
],
"grammars": [
{
"language": "gherkin",
"scopeName": "text.gherkin.feature",
"path": "./syntaxes/gherkin.tmLanguage.json"
}
],
"snippets": [
{
"language": "gherkin",
"path": "./snippets/gherkin.code-snippets"
}
],
"breakpoints": [
{
"language": "gherkin"
}
],
"configuration": {
"type": "object",
"title": "Specwright",
"properties": {
"playwrightBddRunner.playwrightCommand": {
"type": "string",
"default": "npx playwright test",
"description": "Command to run Playwright tests (e.g., 'npx playwright test', 'pnpm exec playwright test', 'yarn playwright test')"
},
"playwrightBddRunner.bddgenCommand": {
"type": "string",
"default": "npx bddgen",
"description": "Command to generate Playwright spec files from .feature files (playwright-bdd's codegen step). Set to empty to skip if your playwright.config.ts already runs bddgen via defineBddProject."
},
"playwrightBddRunner.preRunCommand": {
"type": "string",
"default": "",
"description": "Command to run before each test execution (e.g., 'npm run build:fixtures'). Empty disables the hook. If the command exits non-zero, the test run is aborted."
},
"playwrightBddRunner.featuresGenDir": {
"type": "string",
"default": ".features-gen",
"description": "Directory where bddgen writes generated spec files, relative to the working directory. Used to mirror feature-file breakpoints into generated specs when debugging."
},
"playwrightBddRunner.workingDirectory": {
"type": "string",
"default": "",
"description": "Working directory for running tests. Empty = inferred per run: the directory of the nearest playwright.config.* above the feature file (so monorepo packages resolve their own bddgen/playwright binaries), falling back to the file's workspace folder."
},
"playwrightBddRunner.testFilePattern": {
"type": "string",
"default": "**/*.feature",
"description": "Glob pattern for feature file discovery"
},
"playwrightBddRunner.enableCodeLens": {
"type": "boolean",
"default": true,
"description": "Enable CodeLens buttons on feature files (disable if conflicting with other extensions)"
},
"playwrightBddRunner.parallelExecution": {
"type": "boolean",
"default": false,
"description": "Pass --workers to Playwright to enable parallel execution"
},
"playwrightBddRunner.maxParallelProcesses": {
"type": "number",
"default": 4,
"minimum": 1,
"maximum": 16,
"description": "Maximum number of Playwright workers when parallel execution is enabled"
},
"playwrightBddRunner.reporter": {
"type": "string",
"examples": [
"list",
"line",
"dot",
"html",
"json",
"junit",
"github",
"blob",
"null",
"list,json",
"./my-reporter.ts"
],
"default": "list",
"description": "Reporter(s) for Playwright test output: a built-in name (list, line, dot, html, json, junit, github, blob, null), a custom reporter module path, or a comma-separated list of these. Terminal display only; result mapping always uses the JSON reporter."
},
"playwrightBddRunner.useConfigReporters": {
"type": "boolean",
"default": false,
"description": "Run the reporters declared in your Playwright config instead of the extension injecting its own. Lets a custom reporter run alongside the extension's Test Results panel. Requires a bare ['json'] entry (no outputFile) in your config's reporter array — the extension steers it to its temp file via PLAYWRIGHT_JSON_OUTPUT_NAME and parses that."
},
"playwrightBddRunner.tags": {
"type": "string",
"default": "",
"description": "Default tag expression passed to bddgen --tags (e.g., '@smoke and not @wip')"
},
"playwrightBddRunner.dryRun": {
"type": "boolean",
"default": false,
"description": "Enable Playwright --list to see what tests would be executed without running them"
},
"playwrightBddRunner.stepDefinitionPaths": {
"type": "array",
"scope": "resource",
"items": {
"type": "string"
},
"default": [
"features/steps/**/*.ts",
"features/steps/**/*.js",
"tests/steps/**/*.ts",
"steps/**/*.ts"
],
"description": "Glob patterns for TypeScript/JavaScript files containing playwright-bdd Given/When/Then step definitions. Globs resolve per workspace folder, so each package in a monorepo can point at its own step directories. Used for 'Go to Definition' navigation from steps in .feature files."
},
"playwrightBddRunner.stepDefinitionExcludePaths": {
"type": "array",
"scope": "resource",
"items": {
"type": "string"
},
"default": [],
"description": "Additional glob patterns excluded from step-definition discovery, merged with the built-in excludes (node_modules, the generated featuresGenDir, playwright-report, test-results). Use this to exclude generated or report directories whose files contain Given/When/Then invocations that would otherwise be mistaken for step definitions. Example: \"**/reports/**\". Resolves per workspace folder."
},
"playwrightBddRunner.enableStepDefinitionNavigation": {
"type": "boolean",
"default": true,
"description": "Enable 'Go to Definition' from a Gherkin step to its TypeScript step definition. Disable if conflicting with another extension."
},
"playwrightBddRunner.enableStepDiagnostics": {
"type": "boolean",
"default": true,
"description": "Highlight Gherkin steps in .feature files that have no matching playwright-bdd step definition. Provides a 'Create step definition' quick fix."
},
"playwrightBddRunner.enableStepsPanel": {
"type": "boolean",
"default": true,
"description": "Show the Specwright Steps panel in the Activity Bar: all step definitions grouped by keyword with usage counts, plus Gherkin steps with no matching definition. Disabling releases the panel and its share of the step-usage index."
},
"playwrightBddRunner.enableStepAutocomplete": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Suggest existing playwright-bdd step definitions when typing a step in a .feature file. 'auto' disables completions when the Cucumber (Gherkin) Full Support extension is installed to avoid duplicate suggestions. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.enableTagAutocomplete": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Suggest existing tags when typing @ in a .feature file. 'auto' disables completions when the Cucumber (Gherkin) Full Support extension is installed to avoid duplicate suggestions. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.enableStepHover": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Show the matching playwright-bdd step definition's pattern and source location when hovering over a step in a .feature file. 'auto' disables the hover when the Cucumber (Gherkin) Full Support extension is installed to avoid duplicate tooltips. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.enableStepReferences": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Enable 'Find All References' on a playwright-bdd step definition to list every Gherkin step in .feature files that matches it. 'auto' disables references when the Cucumber (Gherkin) Full Support extension is installed to avoid duplicate results. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.enableStepUsageCodeLens": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Show a 'Used N times' CodeLens above each Given/When/Then step definition. Clicking the CodeLens opens VS Code's References panel. 'auto' disables the CodeLens when the Cucumber (Gherkin) Full Support extension is installed to avoid duplicate annotations. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.enableUnusedStepDiagnostics": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Publish an Information-severity diagnostic on each playwright-bdd step definition that has zero matching steps across all .feature files in the workspace. 'auto' disables the diagnostic when the Cucumber (Gherkin) Full Support extension is installed to avoid duplicate annotations. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.enableStepLiteralPromotion": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Offer a refactor on a Gherkin step that promotes a hard-coded literal (\"foo\", 42, 3.14) into a Cucumber-expression parameter ({string}, {int}, {float}), updating both the .feature file and the matching step definition. 'auto' disables when the Cucumber (Gherkin) Full Support extension is installed. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.enableTableFormatting": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"default": "auto",
"description": "Auto-align Gherkin data tables (| col | col |) when VS Code's 'Format Document' runs on a .feature file. 'auto' disables when the Cucumber (Gherkin) Full Support extension is installed to avoid duplicate formatting. 'on' always enables. 'off' always disables."
},
"playwrightBddRunner.collapseMarkdownExportSections": {
"type": "boolean",
"default": false,
"description": "Render the collapsible sections in exported feature/step Markdown catalogs collapsed by default. Recommended for large catalogs so the document opens as a scannable outline."
}
}
},
"commands": [
{
"command": "playwrightBddRunner.discoverTests",
"title": "Discover Tests",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.refreshTests",
"title": "Refresh Tests",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runAllTests",
"title": "Run All Tests",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runScenario",
"title": "Run Scenario",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.debugScenario",
"title": "Debug Scenario",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runAllTestsParallel",
"title": "Run All Tests in Parallel",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runFeatureFile",
"title": "Run Feature File",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runScenarioWithTags",
"title": "Run Scenario with Tags",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runFeatureFileWithTags",
"title": "Run Feature File with Tags",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runScenarioWithContext",
"title": "Run Scenario",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.debugScenarioWithContext",
"title": "Debug Scenario",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.runFeatureFileWithContext",
"title": "Run Feature File",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.setOrganizationStrategy",
"title": "Set Organization Strategy",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.setTagBasedOrganization",
"title": "Organize by Tags",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.setFileBasedOrganization",
"title": "Organize by File",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.setScenarioTypeOrganization",
"title": "Organize by Scenario Type",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.setFlatOrganization",
"title": "Flat Organization",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.setFeatureBasedOrganization",
"title": "Hierarchical Organization",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.debugOrganization",
"title": "Debug Organization Strategy",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.showOutput",
"title": "Show Test Output",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.validateConfiguration",
"title": "Validate Configuration",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.generateStepDefinitions",
"title": "Generate Missing Step Definitions",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.generateStepDefinitionForStep",
"title": "Create Step Definition For Step",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.goToStepDefinition",
"title": "Go to Step Definition",
"category": "Specwright"
},
{
"command": "playwrightBddRunner.refreshStepsPanel",
"title": "Refresh Steps Panel",
"category": "Specwright",
"icon": "$(refresh)"
},
{
"command": "playwrightBddRunner.exportSteps",
"title": "Export Steps",
"category": "Specwright",
"icon": "$(export)"
},
{
"command": "playwrightBddRunner.exportScenarios",
"title": "Export All Scenarios",
"category": "Specwright",
"icon": "$(book)"
},
{
"command": "playwrightBddRunner.insertStep",
"title": "Insert Step…",
"category": "Specwright",
"icon": "$(insert)"
},
{
"command": "playwrightBddRunner.scaffoldStepFromPanel",
"title": "Create Step Definition",
"category": "Specwright",
"icon": "$(add)"
},
{
"command": "playwrightBddRunner.scaffoldFeatureFromPanel",
"title": "Generate Missing Step Definitions",
"category": "Specwright",
"icon": "$(add)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "specwright",
"title": "Specwright BDD",
"icon": "media/activity-bar-icon.svg"
}
]
},
"views": {
"specwright": [
{
"id": "playwrightBddRunner.stepsExplorer",
"name": "Steps",
"icon": "media/activity-bar-icon.svg",
"contextualTitle": "Specwright BDD"
}
]
},
"menus": {
"commandPalette": [
{
"command": "playwrightBddRunner.discoverTests",
"when": "resourceExtname == .feature"
},
{
"command": "playwrightBddRunner.refreshTests",
"when": "resourceExtname == .feature"
},
{
"command": "playwrightBddRunner.runAllTests",
"when": "resourceExtname == .feature"
},
{
"command": "playwrightBddRunner.runAllTestsParallel",
"when": "resourceExtname == .feature"
},
{
"command": "playwrightBddRunner.runFeatureFile",
"when": "resourceExtname == .feature"
},
{
"command": "playwrightBddRunner.generateStepDefinitions",
"when": "resourceExtname == .feature"
},
{
"command": "playwrightBddRunner.goToStepDefinition",
"when": "resourceExtname == .feature"
},
{
"command": "playwrightBddRunner.generateStepDefinitionForStep",
"when": "false"
},
{
"command": "playwrightBddRunner.runScenarioWithContext",
"when": "false"
},
{
"command": "playwrightBddRunner.debugScenarioWithContext",
"when": "false"
},
{
"command": "playwrightBddRunner.runFeatureFileWithContext",
"when": "false"
},
{
"command": "playwrightBddRunner.scaffoldStepFromPanel",
"when": "false"
},
{
"command": "playwrightBddRunner.scaffoldFeatureFromPanel",
"when": "false"
}
],
"view/title": [
{
"command": "playwrightBddRunner.refreshStepsPanel",
"when": "view == playwrightBddRunner.stepsExplorer",
"group": "navigation@1"
},
{
"command": "playwrightBddRunner.exportSteps",
"when": "view == playwrightBddRunner.stepsExplorer",
"group": "navigation@2"
},
{
"command": "playwrightBddRunner.exportScenarios",
"when": "view == playwrightBddRunner.stepsExplorer",
"group": "navigation@3"
}
],
"view/item/context": [
{
"command": "playwrightBddRunner.insertStep",
"when": "view == playwrightBddRunner.stepsExplorer && viewItem == stepDefinition",
"group": "inline"
},
{
"command": "playwrightBddRunner.scaffoldStepFromPanel",
"when": "view == playwrightBddRunner.stepsExplorer && viewItem == unmatchedStep",
"group": "inline"
},
{
"command": "playwrightBddRunner.scaffoldFeatureFromPanel",
"when": "view == playwrightBddRunner.stepsExplorer && viewItem == unmatchedFile",
"group": "inline"
}
],
"editor/context": [
{
"submenu": "playwrightBddRunner.contextSubmenu",
"when": "resourceExtname == .feature && editorTextFocus && resourceScheme == file",
"group": "playwrightBddRunner@1"
}
],
"editor/title/context": [
{
"submenu": "playwrightBddRunner.contextSubmenu",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "playwrightBddRunner@1"
}
],
"explorer/context": [
{
"submenu": "playwrightBddRunner.contextSubmenu",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "playwrightBddRunner@1"
}
],
"testing/item/context": [
{
"submenu": "playwrightBddRunner.organizationSubmenu",
"group": "playwrightBddRunner@1"
}
],
"testing/view/context": [
{
"command": "playwrightBddRunner.discoverTests",
"group": "playwrightBddRunner@1"
}
],
"playwrightBddRunner.contextSubmenu": [
{
"command": "playwrightBddRunner.runScenarioWithContext",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "1_run@1"
},
{
"command": "playwrightBddRunner.runFeatureFileWithContext",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "1_run@2"
},
{
"command": "playwrightBddRunner.runAllTests",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "1_run@4"
},
{
"command": "playwrightBddRunner.debugScenarioWithContext",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "2_debug@1"
},
{
"command": "playwrightBddRunner.goToStepDefinition",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "3_tools@0"
},
{
"command": "playwrightBddRunner.generateStepDefinitions",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "3_tools@1"
},
{
"command": "playwrightBddRunner.refreshTests",
"when": "resourceExtname == .feature && resourceScheme == file",
"group": "3_tools@2"
}
],
"playwrightBddRunner.organizationSubmenu": [
{
"command": "playwrightBddRunner.setTagBasedOrganization"
},
{
"command": "playwrightBddRunner.setFileBasedOrganization"
},
{
"command": "playwrightBddRunner.setScenarioTypeOrganization"
},
{
"command": "playwrightBddRunner.setFlatOrganization"
},
{
"command": "playwrightBddRunner.setFeatureBasedOrganization"
}
]
},
"submenus": [
{
"id": "playwrightBddRunner.organizationSubmenu",
"label": "Organization Strategy"
},
{
"id": "playwrightBddRunner.contextSubmenu",
"label": "Specwright"
}
]
},
"scripts": {
"compile": "npm run check-types && npm run lint && node scripts/build/esbuild.cjs",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node scripts/build/esbuild.cjs --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"build:prod": "npm run check-types && npm run lint && npm test && node scripts/build/esbuild.cjs --production",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"compile:integration": "tsc -p tsconfig.integration.json",
"test:integration": "npm run build && npm run compile:integration && node ./out/test/integration/runTest.js",
"test:all": "npm test && npm run test:integration",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"clean": "rimraf dist out",
"build": "npm run clean && npm run compile",
"dev": "npm run watch",
"package:vsix": "npm run clean && npm run build:prod && node scripts/package-vsix.mjs",
"release": "node scripts/release.mjs",
"release:patch": "node scripts/release.mjs --type patch",
"release:minor": "node scripts/release.mjs --type minor",
"release:major": "node scripts/release.mjs --type major",
"release:dry-run": "node scripts/release.mjs --type patch --dry-run",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@playwright/test": "^1.60.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^20.0.0",
"@types/vscode": "^1.99.0",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vitest/coverage-v8": "^2.1.9",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.28.0",
"eslint": "^10.4.0",
"glob": "^13.0.6",
"husky": "^9.1.7",
"mocha": "^11.7.6",
"npm-run-all": "^4.1.5",
"playwright-bdd": "^8.5.1",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"vitest": "^2.1.9"
},
"attribution": {
"icon": "Designed by Freepik from https://www.freepik.com/"
}
}