-
-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathpackage-lock.json
10863 lines (10863 loc) · 431 KB
/
package-lock.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
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
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "monaco-languageclient",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"workspaces": [
"packages/client",
"packages/vscode-ws-jsonrpc",
"packages/wrapper",
"packages/wrapper-react",
"packages/examples"
],
"devDependencies": {
"@codingame/esbuild-import-meta-url-plugin": "~1.0.2",
"@codingame/monaco-vscode-rollup-vsix-plugin": "13.1.1",
"@eslint/eslintrc": "~3.2.0",
"@eslint/js": "~9.19.0",
"@stylistic/eslint-plugin": "~3.0.1",
"@testing-library/react": "~16.2.0",
"@types/node": "~22.12.0",
"@types/react": "~19.0.8",
"@types/react-dom": "~19.0.3",
"@typescript-eslint/eslint-plugin": "~8.22.0",
"@typescript-eslint/parser": "~8.22.0",
"@vitejs/plugin-react": "~4.3.4",
"@vitest/browser": "~3.0.4",
"editorconfig": "~2.0.0",
"esbuild": "~0.24.2",
"eslint": "~9.19.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-unused-imports": "~4.1.4",
"globals": "~15.14.0",
"http-server": "~14.1.1",
"minimatch": "~10.0.1",
"playwright": "~1.50.0",
"typescript": "~5.7.3",
"vite": "~6.0.11",
"vite-node": "~3.0.4",
"vitest": "~3.0.4"
},
"engines": {
"node": ">=18.19.0",
"npm": ">=10.2.3"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.26.2",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.25.9",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz",
"integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.26.7",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.7.tgz",
"integrity": "sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.26.2",
"@babel/generator": "^7.26.5",
"@babel/helper-compilation-targets": "^7.26.5",
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helpers": "^7.26.7",
"@babel/parser": "^7.26.7",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.26.7",
"@babel/types": "^7.26.7",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/generator": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz",
"integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.26.5",
"@babel/types": "^7.26.5",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
"integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/compat-data": "^7.26.5",
"@babel/helper-validator-option": "^7.25.9",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
"integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.26.7",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.7.tgz",
"integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.26.7",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.7.tgz",
"integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.26.7"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
"integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-source": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz",
"integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.26.7",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.7.tgz",
"integrity": "sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
"integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.25.9",
"@babel/parser": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.26.7",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.7.tgz",
"integrity": "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@babel/generator": "^7.26.5",
"@babel/parser": "^7.26.7",
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.7",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse/node_modules/globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/types": {
"version": "7.26.7",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.7.tgz",
"integrity": "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bundled-es-modules/cookie": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@bundled-es-modules/cookie/-/cookie-2.0.1.tgz",
"integrity": "sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==",
"dev": true,
"license": "ISC",
"dependencies": {
"cookie": "^0.7.2"
}
},
"node_modules/@bundled-es-modules/statuses": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@bundled-es-modules/statuses/-/statuses-1.0.1.tgz",
"integrity": "sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==",
"dev": true,
"license": "ISC",
"dependencies": {
"statuses": "^2.0.1"
}
},
"node_modules/@bundled-es-modules/tough-cookie": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@bundled-es-modules/tough-cookie/-/tough-cookie-0.1.6.tgz",
"integrity": "sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==",
"dev": true,
"license": "ISC",
"dependencies": {
"@types/tough-cookie": "^4.0.5",
"tough-cookie": "^4.1.4"
}
},
"node_modules/@chevrotain/cst-dts-gen": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz",
"integrity": "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==",
"license": "Apache-2.0",
"dependencies": {
"@chevrotain/gast": "11.0.3",
"@chevrotain/types": "11.0.3",
"lodash-es": "4.17.21"
}
},
"node_modules/@chevrotain/gast": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz",
"integrity": "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==",
"license": "Apache-2.0",
"dependencies": {
"@chevrotain/types": "11.0.3",
"lodash-es": "4.17.21"
}
},
"node_modules/@chevrotain/regexp-to-ast": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz",
"integrity": "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==",
"license": "Apache-2.0"
},
"node_modules/@chevrotain/types": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz",
"integrity": "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==",
"license": "Apache-2.0"
},
"node_modules/@chevrotain/utils": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz",
"integrity": "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==",
"license": "Apache-2.0"
},
"node_modules/@codingame/esbuild-import-meta-url-plugin": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@codingame/esbuild-import-meta-url-plugin/-/esbuild-import-meta-url-plugin-1.0.2.tgz",
"integrity": "sha512-b1PjH6DVdTQd0WLO2R+b9oMlO7REyiAVbcx8weN1ZYiBSROuAy9MJ/j2NI4sxmFv9GK0wM9HRrBg6J2CBZ1xzQ==",
"dev": true,
"license": "ISC",
"dependencies": {
"esbuild": ">=0.19.x",
"import-meta-resolve": "^4.0.0"
}
},
"node_modules/@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common/-/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common-13.1.1.tgz",
"integrity": "sha512-yzAEzIJMW7T48EWXA24bb8TYZuhFJzuo6Z4HIBpD1IZ9kRS1TZqsOyGXFVInudBOb92INLwBHU8GOUzXtDmQPw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-039b5553-0838-562a-97c2-30d6e54a7b42-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-039b5553-0838-562a-97c2-30d6e54a7b42-common/-/monaco-vscode-039b5553-0838-562a-97c2-30d6e54a7b42-common-13.1.1.tgz",
"integrity": "sha512-sMncGPxd48qTmMA4aA+IC2umIC5btvgucQfTw4Wbsy/Tpb6ragriyXhiM9R8roqHKnBqcF+fVRYB4QSw3FG9BA==",
"license": "MIT"
},
"node_modules/@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common/-/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common-13.1.1.tgz",
"integrity": "sha512-UW1ow+NwT5g2LzGtQIsDsISQew5kZqVNyTRdb7uoulpKtzvjiY1QuS3lL7HyM5lQfVDGGXbjQJUJRAEvb2zwhg==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common/-/monaco-vscode-0c06bfba-d24d-5c4d-90cd-b40cefb7f811-common-13.1.1.tgz",
"integrity": "sha512-kezbiEVEjB5PVbK0ZoDUQ6H5mg30VYe3koLCLsj7SudL5YEGAFqvPXf1Jaq6Cp3Jhng8VYhWJCKst5Gy7rLu4w==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common": "13.1.1",
"@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common/-/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common-13.1.1.tgz",
"integrity": "sha512-ufJlTzRuo/X4DRmEUol5VLVYTzIQDN5VQ/sA1t1jUpNtohRzugyRBKA3aW9Cz2jM0E6TvN4GyFczXlmDDg8zaA==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-d8236b3b-b91a-522d-89f4-94d70a546f6a-common": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-0ccdeafc-77d6-5aa8-b465-b7d03b8fb10f-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-0ccdeafc-77d6-5aa8-b465-b7d03b8fb10f-common/-/monaco-vscode-0ccdeafc-77d6-5aa8-b465-b7d03b8fb10f-common-13.1.1.tgz",
"integrity": "sha512-jsyWJQIZzTJ9AtZOeobuJGe12goaLQrZ35xMFGSO9OanRtBt03kyEtaD0LIsHorVnEsmmYT/jkwbAEyqLipuug==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common": "13.1.1",
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.1.1",
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-0f5ced28-abde-558b-8652-db8e7d4d64aa-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-0f5ced28-abde-558b-8652-db8e7d4d64aa-common/-/monaco-vscode-0f5ced28-abde-558b-8652-db8e7d4d64aa-common-13.1.1.tgz",
"integrity": "sha512-UbYSdGHysB8L788tAiQBCZFhCScg92rMrfrVcBjkbwnBG6GkQR/nMwszv6kg7NXfd4lDeIg6qF3kL06s4IK6AQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-1021b67c-93e5-5c78-a270-cbdb2574d980-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-1021b67c-93e5-5c78-a270-cbdb2574d980-common/-/monaco-vscode-1021b67c-93e5-5c78-a270-cbdb2574d980-common-13.1.1.tgz",
"integrity": "sha512-o9igPGCfqZ2PrMfcVAR08uCzEi0LYhzSIA66KZ8xC04jTTMdwsxvYu27lfBoSJFkiiH6A36Ji5v2Asf0YIfPKA==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common/-/monaco-vscode-15626ec7-b165-51e1-8caf-7bcc2ae9b95a-common-13.1.1.tgz",
"integrity": "sha512-rGozbc3sdK2tMTcHQk0532gYsnSzB992wle6ab23Hr6Oa3Q864JlzfPGeTTeXKNQduJuXGvl5HrPyFPIjIA8Pw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-1ae7d696-d960-5ac6-97a3-9fe7c8c3a793-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-1ae7d696-d960-5ac6-97a3-9fe7c8c3a793-common/-/monaco-vscode-1ae7d696-d960-5ac6-97a3-9fe7c8c3a793-common-13.1.1.tgz",
"integrity": "sha512-fljbrGiOu67txY/FhsStb7do21CuqG7xQATUqdsIyJeH+nHr5UuhUk5g2HkTUiMalLOELfuwd4wt36bLUdQKKQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common": "13.1.1",
"@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common": "13.1.1",
"@codingame/monaco-vscode-972e8507-3a64-566d-8bc0-b78993998562-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-c465110a-57c0-59d7-a6b2-be0a4db7e517-common": "13.1.1",
"@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common/-/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common-13.1.1.tgz",
"integrity": "sha512-g34ioYjeCMTy8DPmXstRdS2kC9bV7in1v9N6Rb2q/eFgVgCJZxiP4wUouhdFbgrkh1ugimwtn49yGtw31o8Mag==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common": "13.1.1",
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.1.1",
"@codingame/monaco-vscode-9a1a5840-af83-5d07-a156-ba32a36c5c4b-common": "13.1.1",
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-bd6ad8b7-9db3-51a8-9895-0046508c029d-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common/-/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common-13.1.1.tgz",
"integrity": "sha512-YRqbxi33jrgX6UsKlrBlCrIVeMCFrLvMU0etnNdG6+d1ZzaMCjmgvFAw1y6/S1craJ1zcO+ENBUfkxY5yvjl+A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-9d05a43d-c330-5ff1-937e-fde4a3852931-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common/-/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common-13.1.1.tgz",
"integrity": "sha512-/20LAWRHInK/v7GET+AOsDSYQ3DXiT17QcTR0mHdtqKaZmHjtI9Jlf/4QAqRIWv+FB2n2nJajaRWLaK7kE602A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common/-/monaco-vscode-256d5b78-0649-50e9-8354-2807f95f68f4-common-13.1.1.tgz",
"integrity": "sha512-pxD8eTHzMLWP+8WxLahQhVtDLZ6OvTEt2f84lISczPCoBSU+DnWRASRRo4B7OGXtNO7t9JoWWwcwd7aoWsE3hA==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common/-/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common-13.1.1.tgz",
"integrity": "sha512-FAbBGcMU/JqEhPjPFyCtZUsXkVNab7l8Zz5drThQpzH0F75PxwpeOoM5wlA5U65Vp3xTIZPoBdDICeBe76yDKQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common": "13.1.1",
"@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common": "13.1.1",
"@codingame/monaco-vscode-972e8507-3a64-566d-8bc0-b78993998562-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common/-/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common-13.1.1.tgz",
"integrity": "sha512-OPGYeLtyJgBUbLUcwmAz5Z6VRaw+UawHaYMiWOMR7lqdc3OLprZd+Whf0A1wBVx1neQevQzuxikWRsY/lQWDTA==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common/-/monaco-vscode-2e67e044-0db9-5fa6-8bd1-3737a7d586d4-common-13.1.1.tgz",
"integrity": "sha512-c6UUekh51i6qvZiiX4MOFsXdKciwxKmjpx146P3vhdtmY8FLET3aWhTI3V0oEI+swMO2bCzPI7dvu/0s/baerw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1",
"@vscode/iconv-lite-umd": "0.7.0",
"jschardet": "3.1.4"
}
},
"node_modules/@codingame/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common/-/monaco-vscode-2f06fe84-148e-5e6b-a7ca-c7989c5f128a-common-13.1.1.tgz",
"integrity": "sha512-gh2OaPm9eOsn9YDm1HUPd2IkwU7QG1fMPKfy5t9N3lG8aKwvWWfZbAwxCMX+TllL2wEAKeIL2pFo3ILg4CNNQw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-33833ac7-3af3-5e9d-8fb9-11838d852c59-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-33833ac7-3af3-5e9d-8fb9-11838d852c59-common/-/monaco-vscode-33833ac7-3af3-5e9d-8fb9-11838d852c59-common-13.1.1.tgz",
"integrity": "sha512-fahn3jHQb2LeJrboCHMtJfCouG+BiSwtVRIz4N5OA718iKMGFqlZTUpAunJtnj0c+OA26IZFICpVAiTlGM3VGg==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common/-/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common-13.1.1.tgz",
"integrity": "sha512-Nn0ikPfyYzWIQZvK19ViKjAYa0uycMxQ0f4RVjn/H9kDmUF+RF/dn3gPqRKFoW2qmP7pCO+/9gXUF1sqE+xRLQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-37e80bf5-92f5-5e4c-8b6d-98e0bb89dbef-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-37e80bf5-92f5-5e4c-8b6d-98e0bb89dbef-common/-/monaco-vscode-37e80bf5-92f5-5e4c-8b6d-98e0bb89dbef-common-13.1.1.tgz",
"integrity": "sha512-M1vtJoUNguNMq1kqQw7r6MI94UcgvbpVpR8NZvrtYSLpRXeoC5RScCcmAwXh538O+SUow1hEf15l08KKbqEN4w==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common/-/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common-13.1.1.tgz",
"integrity": "sha512-OoqLianvNXgYTaeO5HDaORegPb88Li5o/p9rTXmThCklNXXP6CRrZtSjzzQcSiQSwOETDhyxtcQv7Z5yf1hDIw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.1.1",
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common": "13.1.1",
"@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.1.1",
"@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1",
"@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common/-/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common-13.1.1.tgz",
"integrity": "sha512-MJ7bJKaiq12uBCSWf/s9amcZsFtpWlKtCwY3KCZIi39Xflb3kd+ngMb8WpfZT4cgvN/7PrD4jOUy065mYcJuaA==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common": "13.1.1",
"@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common/-/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common-13.1.1.tgz",
"integrity": "sha512-/Gqze+YLs3oTO2WpogDaYJxGTsCczrZn/irbn2sSjwrn0K6pFg/4bHDzQC+XesO7nD+/IAPtfe91ZAHauSzX3A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common/-/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common-13.1.1.tgz",
"integrity": "sha512-wpqkLiABJHddJIN4ul4jLk9ovILW5dTjj/6wDL4Sl4JM8d0erVUwmgCtmWjQhKyfOY/RW5ekhyLv7+pzjicTXw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common/-/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common-13.1.1.tgz",
"integrity": "sha512-yTnScx8CQsWcXBFkm6EVIMrNmOKdwA4pLVQ5olWH3mRxxc2mNsIWtvuN1k+nW2oQD/scpxWY4yb42EaXoJqz3Q==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-44b92f80-48ea-5562-a8d0-18a015f8d845-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-44b92f80-48ea-5562-a8d0-18a015f8d845-common/-/monaco-vscode-44b92f80-48ea-5562-a8d0-18a015f8d845-common-13.1.1.tgz",
"integrity": "sha512-Z/ltg5jUmctxmACFtZtKqhNVQETgy5slApzXqv015oPXsd9YFSwRd57i2jDqN3hU05salScQC8GgdokLdJbpOA==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-45a408c6-90ed-5d8b-801d-f3f69c7a97f2-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-45a408c6-90ed-5d8b-801d-f3f69c7a97f2-common/-/monaco-vscode-45a408c6-90ed-5d8b-801d-f3f69c7a97f2-common-13.1.1.tgz",
"integrity": "sha512-GH5degGI4qh8iZ/MNEygK3g2zvWky7cbwxCScirVrt/PlngfdTgXmuk3BOv85YO1o+y/55JmqYgGWqKYrovH7A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-42931eb9-e564-530c-bafc-fa23ab43a070-common": "13.1.1",
"@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common/-/monaco-vscode-464d4abe-0937-5367-af84-1b9279e14ea3-common-13.1.1.tgz",
"integrity": "sha512-7UGWhhm1OxL8BImvMCDq2KLNg0Ae/58r3GL21yl+YJ/t7eEfqwqnuw9kiEPoDDDh6mWhLKhZI53kr8p5LP80LQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common/-/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common-13.1.1.tgz",
"integrity": "sha512-wPKGpPk3yDEtr5rqmNPQ8rhTmKl4Lu/yvA8rYLemGZBti+SzoEXuBh+g4WfIMcaxX2+URClNz9SY3c9MSuni7g==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-common": "13.1.1",
"@codingame/monaco-vscode-972e8507-3a64-566d-8bc0-b78993998562-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.1.1",
"@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-494be54c-bd37-5b3c-af70-02f086e28768-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-494be54c-bd37-5b3c-af70-02f086e28768-common/-/monaco-vscode-494be54c-bd37-5b3c-af70-02f086e28768-common-13.1.1.tgz",
"integrity": "sha512-T3G2UTzCE0g2LxaIKtHi0R6MxOrY3NBeTpiWmmHj83DroW/p209u63RmUb9NReeWPYpLSiVJkFZe51uu6AP40Q==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-4a316137-39d1-5d77-8b53-112db3547c1e-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-4a316137-39d1-5d77-8b53-112db3547c1e-common/-/monaco-vscode-4a316137-39d1-5d77-8b53-112db3547c1e-common-13.1.1.tgz",
"integrity": "sha512-gvxfKpXaEg1RdXKCPSZ5PkdA0ljXn4M/JIzHWhiJes5CK6WuR45oCerxzUp1HE0bdGXxX6J3vLiuCZdmkQK7wQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.1.1",
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1",
"@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common/-/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common-13.1.1.tgz",
"integrity": "sha512-5uLF8XcQxn/ciW2TOS3CDaWHeYEFl91TtLnMynio1IcQkNPF0lbkqwxwW8WLtNOUwuDMt/v4TCG1uqBrzojpRQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-c465110a-57c0-59d7-a6b2-be0a4db7e517-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-4ead9d5f-54da-5c5a-b093-32be4a84d711-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-4ead9d5f-54da-5c5a-b093-32be4a84d711-common/-/monaco-vscode-4ead9d5f-54da-5c5a-b093-32be4a84d711-common-13.1.1.tgz",
"integrity": "sha512-GrdZPgpM/9HrB4V/fDYU3Zn4mTnW31DKr0Ruw+ZQUQizS5if1iHDvq14HnWQrr8yE69vdg6Vr2oIYya1hTo5Hw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-ea14e352-8f1c-5569-b79a-8a96a53e8abe-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common/-/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common-13.1.1.tgz",
"integrity": "sha512-hgbr4MMBZg6MJEnTfm+wM8GCUcKCFSJ6of68ZMqWj8vsStUdTKL+CER2PdVd4JtYup7s7fpfeuDui+FOLHos2A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-523730aa-81e6-55d7-9916-87ad537fe087-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-523730aa-81e6-55d7-9916-87ad537fe087-common/-/monaco-vscode-523730aa-81e6-55d7-9916-87ad537fe087-common-13.1.1.tgz",
"integrity": "sha512-+CCjpD9Yv34HqsGMBUmVjTGBoM9J6TsN0IsCqaIp1Js56gHe2QTFCFZfMb8T8aRt/pdrhozaJ1r78zerN+Xb0A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common": "13.1.1",
"@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": "13.1.1",
"@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common/-/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common-13.1.1.tgz",
"integrity": "sha512-jT9cu/PqfJ7p8B7a/jtS6ZUmL2LnDA3kEXM49LxmFAlLx3h3zDmXNBP2B0OL+jZtKZidkhzUVYcr3ltM6irp1w==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-1cc4ea0a-c5b6-54ed-bb60-078a99119b55-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-55ed5668-e8ca-5335-a587-790bcf1200c0-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-55ed5668-e8ca-5335-a587-790bcf1200c0-common/-/monaco-vscode-55ed5668-e8ca-5335-a587-790bcf1200c0-common-13.1.1.tgz",
"integrity": "sha512-GwzScpdYx3kJrAC3t4LSZPfaoBkdWsQIlTbCnwtKfzaUxxmV0acwu+Vckz1Q2pF0a0aQ2EC/z+qzhqtOjYqOzw==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-b8988f79-16c1-5bff-b0e7-699bab3431da-common": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common/-/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common-13.1.1.tgz",
"integrity": "sha512-rU/wsPHfJgV6Oyq9z7OLWimEZ5uiq+9m0szADc56S60iGCE26Nvic1g8t6oTjC0XJ/cBW1P8CvwNFG1RsdURgg==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common/-/monaco-vscode-5945a5e2-a66c-5a82-bd2c-1965724b29eb-common-13.1.1.tgz",
"integrity": "sha512-+xE2JA9s/t37E5oNj0HsmPybuwLu/WmEabhXEUSjTrWlPa0gYAsfCtlZXh4Uy2e5ZROLb/a7mpdUbDBvBfZ4Ag==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-0139c6af-2375-559c-af57-b738f2fd6d8e-common": "13.1.1",
"@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": "13.1.1",
"@codingame/monaco-vscode-3cf6a388-482f-5484-a806-0525ad9ad8af-common": "13.1.1",
"@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common": "13.1.1",
"@codingame/monaco-vscode-a4683c2b-a0d2-5112-96ba-eedc605346d2-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1",
"@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/-/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common-13.1.1.tgz",
"integrity": "sha512-5DkW+jRk2TOeQvTV7sACUzzI0MZ2f5uuQcwY7Y7dAjuPsHA8P2WO5ytU07sCQWAZo7gHSgS6WAQru32AcGvV7A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common/-/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common-13.1.1.tgz",
"integrity": "sha512-p1ZigrFsOF7kCFOfiah5ttXqeXzetN5U0TqKzvR6DFcLVfGYUb47flmhgCiEB128v4F3RyjORkpjSh14aIaEww==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-695440c8-a687-5594-b476-bbc7b36bafe9-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-695440c8-a687-5594-b476-bbc7b36bafe9-common/-/monaco-vscode-695440c8-a687-5594-b476-bbc7b36bafe9-common-13.1.1.tgz",
"integrity": "sha512-6v012Je2kTsCbxfOZFERSSWU9IsXyTsoOz2ZKulzE59Vun+nodXy7bn5wUEmH5pppMIDPQJIKnwCLO0vTIdcNQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-6980eeab-47bb-5a48-8e15-32caf0785565-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-6980eeab-47bb-5a48-8e15-32caf0785565-common/-/monaco-vscode-6980eeab-47bb-5a48-8e15-32caf0785565-common-13.1.1.tgz",
"integrity": "sha512-GBE0k8j5a4Bv/p1q7K3y/x8bNPH+SeROwBbjbOD8SGIh6Qo/UbBsjRKhncPaEzFApUVT6XwqVUsKZfRH99ZsVQ==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-0cc5da60-f921-59b9-bd8c-a018e93c0a6f-common": "13.1.1",
"@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": "13.1.1",
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.1.1",
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-b8988f79-16c1-5bff-b0e7-699bab3431da-common": "13.1.1",
"@codingame/monaco-vscode-c3c61c00-c254-5856-9dc9-d7929c1f9062-common": "13.1.1",
"@codingame/monaco-vscode-d8236b3b-b91a-522d-89f4-94d70a546f6a-common": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-6f9bc782-77e0-5716-93bd-b05210c768c5-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-6f9bc782-77e0-5716-93bd-b05210c768c5-common/-/monaco-vscode-6f9bc782-77e0-5716-93bd-b05210c768c5-common-13.1.1.tgz",
"integrity": "sha512-zIKz7NpqT1GJm+Q62DTlopEI6Q4fNhtUtpRBw5yJd1N6SPmDZrPs+l4My8PY9QlFfQEVrdOci4eg9lqNjt3U8A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-271a23cd-c7d7-5761-ae35-a923a42987b8-common": "13.1.1",
"@codingame/monaco-vscode-47923ab1-c4c8-58b5-89ac-fa1b998eb5dd-common": "13.1.1",
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-common/-/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-common-13.1.1.tgz",
"integrity": "sha512-WU9AOVdZJmzP6vpmT4sqF03ARLo1bUMb9kSjA+/1x+VDVn/FZv+n7FO7f7IqGZLEUCFfcG0gsWqk7Y9i8J416w==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-7b77bc98-d4d5-5442-b972-c926eb6db528-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-7b77bc98-d4d5-5442-b972-c926eb6db528-common/-/monaco-vscode-7b77bc98-d4d5-5442-b972-c926eb6db528-common-13.1.1.tgz",
"integrity": "sha512-/CImQ/huMhgyrOlX1z6hlAfhmkp9tmIBv5mX9z/9DA3WE4XHhTulPoc/h0RBtCqibE8Fs9AKrH8Tf3MkcCOuSg==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common/-/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common-13.1.1.tgz",
"integrity": "sha512-E95vyHnB8s1nooUihFwrXWvT2xEkCb6Yy1jAr8C8L1ABAD6owhXkuyiDd5kh9i/6ChXtnTuj9OljbZLQN+kYQA==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-api": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common/-/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common-13.1.1.tgz",
"integrity": "sha512-SebDLU7MeIOeiuYW8qSLKykq/lp6/KF6jiw8V3fWAKytUMDiE+gRl78Qm/s7YOZfk9quBXz1sQJA10Ac4Uhp+A==",
"license": "MIT",
"dependencies": {
"@codingame/monaco-vscode-5108c2c9-4ada-52d8-8c4b-fe03b3160e71-common": "13.1.1",
"@codingame/monaco-vscode-972e8507-3a64-566d-8bc0-b78993998562-common": "13.1.1",
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.1",
"@codingame/monaco-vscode-api": "13.1.1",
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.1"
}
},
"node_modules/@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common/-/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common-13.1.1.tgz",
"integrity": "sha512-UgK33SiThTiN+Er9fyPKLN06Sce2jTx38aXFGVnq7erp6/gHP4ohkOzpFf0qLFdCV+QAyXfemlwwJ5EianwwcQ==",
"license": "MIT"