-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
584 lines (584 loc) · 23.8 KB
/
Copy pathpackage.json
File metadata and controls
584 lines (584 loc) · 23.8 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
{
"name": "git-graph-plus",
"displayName": "Git Graph Plus",
"description": "A modern, full-featured Git GUI for VS Code",
"version": "0.7.3",
"publisher": "the0807",
"repository": {
"type": "git",
"url": "https://github.com/the0807/git-graph-plus"
},
"license": "Apache-2.0",
"icon": "resources/icon-marketplace.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"SCM Providers",
"Visualization"
],
"keywords": [
"git",
"graph",
"branch",
"commit",
"history",
"visualization",
"merge",
"rebase",
"stash",
"gui"
],
"activationEvents": [
"onStartupFinished"
],
"l10n": "./l10n",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "gitGraphPlus.open",
"title": "%command.open%",
"icon": "$(git-merge)"
},
{
"command": "gitGraphPlus.refresh",
"title": "%command.refresh%",
"icon": "$(refresh)"
},
{
"command": "gitGraphPlus.fetch",
"title": "%command.fetch%",
"icon": "$(cloud-download)"
},
{
"command": "gitGraphPlus.pull",
"title": "%command.pull%",
"icon": "$(arrow-down)"
},
{
"command": "gitGraphPlus.push",
"title": "%command.push%",
"icon": "$(arrow-up)"
},
{
"command": "gitGraphPlus.publishBranch",
"title": "%command.publishBranch%",
"icon": "$(cloud-upload)"
},
{
"command": "gitGraphPlus.checkoutBranch",
"title": "Checkout Branch",
"icon": "$(arrow-right)"
},
{
"command": "gitGraphPlus.createBranch",
"title": "%command.createBranch%",
"icon": "$(add)"
},
{
"command": "gitGraphPlus.stashSave",
"title": "%command.stashSave%",
"icon": "$(archive)"
},
{
"command": "gitGraphPlus.createTag",
"title": "%command.createTag%",
"icon": "$(tag)"
},
{
"command": "gitGraphPlus.pushTag",
"title": "%command.pushTag%",
"icon": "$(cloud-upload)"
},
{
"command": "gitGraphPlus.pushAllTags",
"title": "%command.pushAllTags%",
"icon": "$(cloud-upload)"
},
{
"command": "gitGraphPlus.deleteRemoteTag",
"title": "%command.deleteRemoteTag%",
"icon": "$(trash)"
},
{
"command": "gitGraphPlus.deleteBranch",
"title": "%command.deleteBranch%",
"icon": "$(trash)"
},
{
"command": "gitGraphPlus.renameBranch",
"title": "%command.renameBranch%",
"icon": "$(edit)"
},
{
"command": "gitGraphPlus.deleteTag",
"title": "%command.deleteTag%",
"icon": "$(trash)"
},
{
"command": "gitGraphPlus.mergeBranch",
"title": "%command.mergeBranch%",
"icon": "$(git-merge)"
},
{
"command": "gitGraphPlus.showRemoteBranchMenu",
"title": "%command.checkoutRemoteBranch%",
"icon": "$(git-branch)"
},
{
"command": "gitGraphPlus.checkoutRemoteBranch",
"title": "Checkout Remote Branch",
"icon": "$(arrow-right)"
},
{
"command": "gitGraphPlus.deleteRemoteBranch",
"title": "Delete Remote Branch",
"icon": "$(trash)"
},
{
"command": "gitGraphPlus.stashApply",
"title": "%command.stashApply%",
"icon": "$(check)"
},
{
"command": "gitGraphPlus.stashPop",
"title": "%command.stashPop%",
"icon": "$(check-all)"
},
{
"command": "gitGraphPlus.stashDrop",
"title": "%command.stashDrop%",
"icon": "$(trash)"
},
{
"command": "gitGraphPlus.openWorktree",
"title": "%command.openWorktree%",
"icon": "$(go-to-file)"
},
{
"command": "gitGraphPlus.openWorktreeInFileExplorer",
"title": "%command.openWorktreeInFileExplorer%",
"icon": "$(folder-opened)"
},
{
"command": "gitGraphPlus.removeWorktree",
"title": "%command.removeWorktree%",
"icon": "$(trash)"
},
{
"command": "gitGraphPlus.addWorktree",
"title": "%command.addWorktree%",
"icon": "$(add)"
},
{
"command": "gitGraphPlus.pruneWorktrees",
"title": "%command.pruneWorktrees%",
"icon": "$(clear-all)"
}
],
"views": {
"scm": [
{
"id": "gitGraphPlus.branches",
"name": "Branches",
"icon": "$(git-branch)",
"visibility": "visible"
},
{
"id": "gitGraphPlus.remotes",
"name": "Remotes",
"icon": "$(cloud)"
},
{
"id": "gitGraphPlus.tags",
"name": "Tags",
"icon": "$(tag)"
},
{
"id": "gitGraphPlus.stashes",
"name": "Stashes",
"icon": "$(archive)"
},
{
"id": "gitGraphPlus.worktrees",
"name": "Worktrees",
"icon": "$(worktree)"
}
]
},
"viewsWelcome": [
{
"view": "gitGraphPlus.branches",
"contents": "No git repository found.\n[Open Folder](command:vscode.openFolder)"
}
],
"menus": {
"editor/title": [
{
"command": "gitGraphPlus.open",
"group": "navigation"
}
],
"scm/title": [
{
"command": "gitGraphPlus.open",
"group": "navigation",
"when": "scmProvider == git"
}
],
"view/title": [
{
"command": "gitGraphPlus.open",
"when": "view =~ /^gitGraphPlus/",
"group": "navigation@1"
},
{
"command": "gitGraphPlus.refresh",
"when": "view =~ /^gitGraphPlus/",
"group": "navigation@2"
},
{
"command": "gitGraphPlus.fetch",
"when": "view == gitGraphPlus.branches || view == gitGraphPlus.remotes",
"group": "navigation@3"
},
{
"command": "gitGraphPlus.pull",
"when": "view == gitGraphPlus.branches",
"group": "navigation@4"
},
{
"command": "gitGraphPlus.push",
"when": "view == gitGraphPlus.branches && gitGraphPlus.currentBranchHasUpstream != false",
"group": "navigation@5"
},
{
"command": "gitGraphPlus.publishBranch",
"when": "view == gitGraphPlus.branches && gitGraphPlus.currentBranchHasUpstream == false",
"group": "navigation@5"
},
{
"command": "gitGraphPlus.createBranch",
"when": "view == gitGraphPlus.branches",
"group": "navigation@6"
},
{
"command": "gitGraphPlus.createTag",
"when": "view == gitGraphPlus.tags",
"group": "navigation@3"
},
{
"command": "gitGraphPlus.pushAllTags",
"when": "view == gitGraphPlus.tags",
"group": "navigation@4"
},
{
"command": "gitGraphPlus.stashSave",
"when": "view == gitGraphPlus.stashes",
"group": "navigation@3"
},
{
"command": "gitGraphPlus.addWorktree",
"when": "view == gitGraphPlus.worktrees",
"group": "navigation@3"
},
{
"command": "gitGraphPlus.pruneWorktrees",
"when": "view == gitGraphPlus.worktrees",
"group": "navigation@4"
}
],
"view/item/context": [
{
"command": "gitGraphPlus.checkoutBranch",
"when": "view == gitGraphPlus.branches && viewItem == branch",
"group": "1_branch@1"
},
{
"command": "gitGraphPlus.mergeBranch",
"when": "view == gitGraphPlus.branches && viewItem == branch",
"group": "1_branch@2"
},
{
"command": "gitGraphPlus.renameBranch",
"when": "view == gitGraphPlus.branches && viewItem == branch",
"group": "1_branch@3"
},
{
"command": "gitGraphPlus.deleteBranch",
"when": "view == gitGraphPlus.branches && viewItem == branch",
"group": "2_danger@1"
},
{
"command": "gitGraphPlus.checkoutRemoteBranch",
"when": "view == gitGraphPlus.remotes && viewItem == remote-branch",
"group": "1_branch@1"
},
{
"command": "gitGraphPlus.deleteRemoteBranch",
"when": "view == gitGraphPlus.remotes && viewItem == remote-branch",
"group": "2_danger@1"
},
{
"command": "gitGraphPlus.checkoutBranch",
"when": "view == gitGraphPlus.tags && viewItem == tag",
"group": "0_checkout@1"
},
{
"command": "gitGraphPlus.pushTag",
"when": "view == gitGraphPlus.tags && viewItem == tag",
"group": "1_push@1"
},
{
"command": "gitGraphPlus.deleteRemoteTag",
"when": "view == gitGraphPlus.tags && viewItem == tag",
"group": "2_danger@1"
},
{
"command": "gitGraphPlus.deleteTag",
"when": "view == gitGraphPlus.tags && viewItem == tag",
"group": "2_danger@2"
},
{
"command": "gitGraphPlus.stashApply",
"when": "view == gitGraphPlus.stashes && viewItem == stash",
"group": "1_stash@1"
},
{
"command": "gitGraphPlus.stashPop",
"when": "view == gitGraphPlus.stashes && viewItem == stash",
"group": "1_stash@2"
},
{
"command": "gitGraphPlus.stashDrop",
"when": "view == gitGraphPlus.stashes && viewItem == stash",
"group": "2_danger@1"
},
{
"command": "gitGraphPlus.openWorktree",
"when": "view == gitGraphPlus.worktrees && (viewItem == worktree || viewItem == worktree-main)",
"group": "1_worktree@1"
},
{
"command": "gitGraphPlus.openWorktreeInFileExplorer",
"when": "view == gitGraphPlus.worktrees && (viewItem == worktree || viewItem == worktree-main)",
"group": "1_worktree@2"
},
{
"command": "gitGraphPlus.removeWorktree",
"when": "view == gitGraphPlus.worktrees && viewItem == worktree",
"group": "2_danger@1"
}
]
},
"configuration": {
"title": "Git Graph+",
"properties": {
"gitGraphPlus.autoRefresh": {
"type": "boolean",
"default": true,
"description": "Automatically refresh when repository changes are detected"
},
"gitGraphPlus.locale": {
"type": "string",
"enum": [
"auto",
"en",
"ko",
"zh-cn"
],
"default": "auto",
"description": "UI language (auto = follow VS Code language setting)"
},
"gitGraphPlus.timeout": {
"type": "integer",
"default": 60,
"minimum": 1,
"markdownDescription": "Maximum time (in seconds) to wait for a Git command before it is aborted. Increase this if the graph times out while loading in a very large repository."
},
"gitGraphPlus.initialCommitCount": {
"type": "integer",
"default": 200,
"minimum": 1,
"markdownDescription": "Number of commits loaded when the graph first renders (and on refresh). Lower this to speed up loading in very large repositories; raise it to see more history without clicking **Load more**."
},
"gitGraphPlus.loadMoreCommitCount": {
"type": "integer",
"default": 50,
"minimum": 1,
"markdownDescription": "Number of additional commits fetched each time the **Load more commits** button is clicked."
},
"gitGraphPlus.interactiveRebase.mode": {
"type": "string",
"enum": ["ui", "classic"],
"enumDescriptions": [
"Open the built-in graphical interactive-rebase editor",
"Run git rebase -i in the integrated terminal using your configured Git editor"
],
"default": "ui",
"markdownDescription": "How **Interactive Rebase** opens: the built-in GUI editor (`ui`), or the classic `git rebase -i` flow in the integrated terminal (`classic`), which uses your configured Git editor (e.g. vim, nano, `code --wait`)."
},
"gitGraphPlus.graphSortOrder": {
"type": "string",
"enum": [
"author-date",
"date",
"topological"
],
"enumDescriptions": [
"Sort commits by author date (--author-date-order)",
"Sort commits by committer date (--date-order)",
"Sort commits by topology, parents after children (--topo-order)"
],
"default": "topological",
"description": "Commit sort order in the graph"
},
"gitGraphPlus.showSignatureStatus": {
"type": "boolean",
"default": true,
"markdownDescription": "Show a GPG/SSH signature status icon next to each commit in the graph. ⚠️ This verifies the signature of every commit in the log, which can slow down loading on very large repositories — turn it off if you notice slow graph loading. The Commit Details panel always shows signature status on demand regardless of this setting."
},
"gitGraphPlus.branchBadgeBarThickness": {
"type": "string",
"enum": [
"thin",
"medium",
"thick"
],
"enumDescriptions": [
"Thin colored bar (4px)",
"Medium colored bar (6px)",
"Thick colored bar (8px) — easier to tell branches apart, helpful for color vision deficiency"
],
"default": "thin",
"description": "Thickness of the colored accent bar on the left of branch badges in the graph"
},
"gitGraphPlus.branchColors": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "Regular expression matched against the branch name (without remote prefix), e.g. ^main$ or .+/hotfix/.+"
},
"color": {
"type": "string",
"description": "Hex color, e.g. #00FF00 or #0f0"
}
},
"required": ["pattern", "color"]
},
"markdownDescription": "Assign fixed colors to branches by name pattern in the graph. Each rule is `{ \"pattern\": <regex>, \"color\": <hex> }`; the first matching rule wins. Branches matching no rule keep an automatic color. Patterns are regular expressions and match anywhere in the name unless anchored (use `^main$` for an exact match)."
},
"gitGraphPlus.graphColors": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"#63b0f4",
"#73d13d",
"#ff7a45",
"#b37feb",
"#f759ab",
"#36cfc9",
"#ffc53d",
"#ff4d4f",
"#597ef7",
"#9254de",
"#43e8d8",
"#faad14"
],
"markdownDescription": "Color palette auto-assigned to graph rails. Each entry is a hex color (`#rgb` or `#rrggbb`). When there are more branches than colors, the palette cycles. Invalid entries are ignored; an empty list falls back to the built-in palette. `branchColors` pattern rules, when present, take precedence over this palette."
},
"gitGraphPlus.commitMessageLinks": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "Regular expression matched against the commit message, e.g. ([A-Z]+-\\d+). Capture groups are referenced in the URL as $1, $2, ..."
},
"url": {
"type": "string",
"description": "URL template. $1, $2, ... are replaced by the corresponding capture groups, e.g. https://my.tracker/browse/$1"
}
},
"required": ["pattern", "url"]
},
"markdownDescription": "Turn matching text in commit messages into clickable links (Graph, Commit Details, and Reflog). Each rule is `{ \"pattern\": <regex>, \"url\": <template> }`; `$1`, `$2`, … in the template are replaced by the pattern's capture groups. Rules are applied in order, before built-in auto-detection. Only `http`/`https` URLs are opened. Tip: put rules in workspace settings (`.vscode/settings.json`) for per-repository trackers."
},
"gitGraphPlus.autoDetectRepoLinks": {
"type": "boolean",
"default": true,
"markdownDescription": "Automatically link references based on the `origin` remote. `!123` (GitLab merge requests) is linked for **any** host, including self-hosted GitLab. `#123` (issues) is linked for **github.com** and **gitlab.com** only — on a self-hosted host the issue path can't be determined, so add a `gitGraphPlus.commitMessageLinks` rule for those."
},
"gitGraphPlus.defaults.push.force": { "type": "string", "enum": ["none", "with-lease", "force"], "default": "none", "markdownDescription": "⚠️ `with-lease`/`force` pre-checks a force push, which can overwrite remote history." },
"gitGraphPlus.defaults.push.setUpstream": { "type": "boolean", "default": true, "markdownDescription": "Set the upstream tracking reference with `-u` when pushing." },
"gitGraphPlus.defaults.push.allTags": { "type": "boolean", "default": false, "markdownDescription": "Also push all tags (`--tags`)." },
"gitGraphPlus.defaults.pull.rebase": { "type": "boolean", "default": true, "markdownDescription": "Rebase local commits onto the fetched changes instead of merging." },
"gitGraphPlus.defaults.pull.stash": { "type": "boolean", "default": false, "markdownDescription": "Stash local changes before pulling, then reapply them afterward." },
"gitGraphPlus.defaults.fetch.allRemotes": { "type": "boolean", "default": false, "markdownDescription": "Fetch from all remotes instead of a single one." },
"gitGraphPlus.defaults.merge.mode": { "type": "string", "enum": ["default", "no-ff", "squash"], "default": "default", "markdownDescription": "Merge strategy: `default` (fast-forward when possible), `no-ff` (always create a merge commit), or `squash`." },
"gitGraphPlus.defaults.merge.pushAfter": { "type": "boolean", "default": false, "markdownDescription": "Push the current branch after a successful merge." },
"gitGraphPlus.defaults.merge.deleteSource": { "type": "boolean", "default": false, "markdownDescription": "⚠️ Pre-checks deleting the merged source branch." },
"gitGraphPlus.defaults.rebase.autostash": { "type": "boolean", "default": false, "markdownDescription": "Stash and reapply local changes around the rebase (`--autostash`)." },
"gitGraphPlus.defaults.rebase.pushAfter": { "type": "boolean", "default": false, "markdownDescription": "⚠️ Pre-checks a force-with-lease push after rebase." },
"gitGraphPlus.defaults.amend.keepMessage": { "type": "boolean", "default": true, "markdownDescription": "Keep the existing commit message (`--no-edit`)." },
"gitGraphPlus.defaults.amend.resetDate": { "type": "boolean", "default": false, "markdownDescription": "Reset the commit date to now." },
"gitGraphPlus.defaults.amend.resetAuthor": { "type": "boolean", "default": false, "markdownDescription": "Reset the commit author to you (`--reset-author`)." },
"gitGraphPlus.defaults.amend.only": { "type": "boolean", "default": false, "markdownDescription": "Amend only the message/metadata without folding in staged changes (`--only`)." },
"gitGraphPlus.defaults.amend.pushAfter": { "type": "boolean", "default": false, "markdownDescription": "⚠️ Pre-checks a force-with-lease push after amend." },
"gitGraphPlus.defaults.checkout.dirty": { "type": "string", "enum": ["keep", "stash", "discard"], "default": "keep", "markdownDescription": "⚠️ `discard` pre-selects discarding local changes." },
"gitGraphPlus.defaults.checkoutRemote.dirty": { "type": "string", "enum": ["keep", "stash", "discard"], "default": "keep", "markdownDescription": "⚠️ `discard` pre-selects discarding local changes." },
"gitGraphPlus.defaults.createBranch.checkout": { "type": "boolean", "default": true, "markdownDescription": "Check out the new branch right after creating it." },
"gitGraphPlus.defaults.createBranch.publish": { "type": "boolean", "default": false, "markdownDescription": "Publish the new branch to the remote and set its upstream (`-u`)." },
"gitGraphPlus.defaults.createTag.push": { "type": "boolean", "default": true, "markdownDescription": "Push the tag to the remote after creating it." },
"gitGraphPlus.defaults.cherryPick.noCommit": { "type": "boolean", "default": false, "markdownDescription": "Apply the changes without committing (`--no-commit`)." },
"gitGraphPlus.defaults.cherryPick.pushAfter": { "type": "boolean", "default": false, "markdownDescription": "Push the branch after cherry-picking." },
"gitGraphPlus.defaults.revert.noCommit": { "type": "boolean", "default": false, "markdownDescription": "Apply the revert without committing (`--no-commit`)." },
"gitGraphPlus.defaults.revert.pushAfter": { "type": "boolean", "default": false, "markdownDescription": "Push the branch after reverting." },
"gitGraphPlus.defaults.reset.mode": { "type": "string", "enum": ["soft", "mixed", "hard"], "default": "mixed", "markdownDescription": "⚠️ `hard` pre-selects discarding all changes." },
"gitGraphPlus.defaults.stashSave.includeUntracked": { "type": "boolean", "default": true, "markdownDescription": "Include untracked files in the stash (`--include-untracked`)." },
"gitGraphPlus.defaults.stashSave.keepIndex": { "type": "boolean", "default": false, "markdownDescription": "Keep staged changes in the index (`--keep-index`)." },
"gitGraphPlus.defaults.deleteBranch.force": { "type": "boolean", "default": false, "markdownDescription": "⚠️ Pre-checks force-deleting an unmerged branch." },
"gitGraphPlus.defaults.deleteBranch.deleteRemote": { "type": "boolean", "default": false, "markdownDescription": "⚠️ Pre-checks deleting the branch from the remote." },
"gitGraphPlus.defaults.deleteTag.deleteRemote": { "type": "boolean", "default": false, "markdownDescription": "⚠️ Pre-checks deleting the tag from the remote." },
"gitGraphPlus.defaults.removeWorktree.deleteBranch": { "type": "boolean", "default": false, "markdownDescription": "⚠️ Pre-checks deleting the worktree's branch." }
}
}
},
"scripts": {
"build:extension": "node esbuild.config.mjs",
"build:webview": "cd webview-ui && npm run build",
"build": "npm run build:extension && npm run build:webview",
"watch:extension": "node esbuild.config.mjs --watch",
"watch:webview": "cd webview-ui && npm run dev",
"dev": "concurrently \"npm:watch:*\"",
"test": "vitest run",
"test:watch": "vitest",
"package": "vsce package",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"@vitest/coverage-v8": "^3.2.4",
"@vscode/vsce": "^3.0.0",
"concurrently": "^9.0.0",
"esbuild": "^0.25.12",
"happy-dom": "^20.9.0",
"svelte": "^5.55.7",
"typescript": "^5.5.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@vscode/codicons": "^0.0.45"
}
}