This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pnp.cjs
executable file
·12711 lines (12615 loc) · 612 KB
/
.pnp.cjs
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
#!/usr/bin/env node
/* eslint-disable */
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "osmium",\
"reference": "workspace:."\
},\
{\
"name": "doc",\
"reference": "workspace:doc"\
},\
{\
"name": "@osmium-libs/ast-extractor",\
"reference": "workspace:libs/ast-extractor"\
},\
{\
"name": "@osmium-libs/foundry-wrapper",\
"reference": "workspace:libs/foundry-wrapper"\
},\
{\
"name": "@osmium-libs/lsp-handler",\
"reference": "workspace:libs/lsp-handler"\
},\
{\
"name": "@osmium-libs/lsp-launcher",\
"reference": "workspace:libs/lsp-launcher"\
},\
{\
"name": "@osmium-libs/lsp-server-wrapper",\
"reference": "workspace:libs/lsp-server-wrapper"\
},\
{\
"name": "osmium-manager",\
"reference": "workspace:manager"\
},\
{\
"name": "@osmium-packages/eslint-config",\
"reference": "workspace:packages/eslint-config"\
},\
{\
"name": "@osmium-packages/prettier-config",\
"reference": "workspace:packages/prettier-config"\
},\
{\
"name": "osmium-solidity",\
"reference": "workspace:toolchains/solidity"\
},\
{\
"name": "osmium-solidity-core",\
"reference": "workspace:toolchains/solidity/core"\
},\
{\
"name": "osmium-solidity-extension",\
"reference": "workspace:toolchains/solidity/extension"\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["@osmium-libs/ast-extractor", ["workspace:libs/ast-extractor"]],\
["@osmium-libs/foundry-wrapper", ["workspace:libs/foundry-wrapper"]],\
["@osmium-libs/lsp-handler", ["workspace:libs/lsp-handler"]],\
["@osmium-libs/lsp-launcher", ["workspace:libs/lsp-launcher"]],\
["@osmium-libs/lsp-server-wrapper", ["workspace:libs/lsp-server-wrapper"]],\
["@osmium-packages/eslint-config", ["workspace:packages/eslint-config"]],\
["@osmium-packages/prettier-config", ["workspace:packages/prettier-config"]],\
["doc", ["workspace:doc"]],\
["osmium", ["workspace:."]],\
["osmium-manager", ["workspace:manager"]],\
["osmium-solidity", ["workspace:toolchains/solidity"]],\
["osmium-solidity-core", ["workspace:toolchains/solidity/core"]],\
["osmium-solidity-extension", ["workspace:toolchains/solidity/extension"]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["husky", "npm:8.0.3"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@aashutoshrathi/word-wrap", [\
["npm:1.2.6", {\
"packageLocation": "./.yarn/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-6eebd12a5c.zip/node_modules/@aashutoshrathi/word-wrap/",\
"packageDependencies": [\
["@aashutoshrathi/word-wrap", "npm:1.2.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@discoveryjs/json-ext", [\
["npm:0.5.7", {\
"packageLocation": "./.yarn/cache/@discoveryjs-json-ext-npm-0.5.7-fe04af1f31-b95682a852.zip/node_modules/@discoveryjs/json-ext/",\
"packageDependencies": [\
["@discoveryjs/json-ext", "npm:0.5.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/eslint-utils", [\
["npm:4.4.0", {\
"packageLocation": "./.yarn/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-8d70bcdcd8.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "npm:4.4.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-719be7711d/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-8d70bcdcd8.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\
["@types/eslint", null],\
["eslint", "npm:8.56.0"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/regexpp", [\
["npm:4.10.0", {\
"packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-8c36169c81.zip/node_modules/@eslint-community/regexpp/",\
"packageDependencies": [\
["@eslint-community/regexpp", "npm:4.10.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/eslintrc", [\
["npm:2.1.4", {\
"packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-7a3b14f4b4.zip/node_modules/@eslint/eslintrc/",\
"packageDependencies": [\
["@eslint/eslintrc", "npm:2.1.4"],\
["ajv", "npm:6.12.6"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["espree", "npm:9.6.1"],\
["globals", "npm:13.24.0"],\
["ignore", "npm:5.3.0"],\
["import-fresh", "npm:3.3.0"],\
["js-yaml", "npm:4.1.0"],\
["minimatch", "npm:3.1.2"],\
["strip-json-comments", "npm:3.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/js", [\
["npm:8.56.0", {\
"packageLocation": "./.yarn/cache/@eslint-js-npm-8.56.0-b1de08cbff-97a4b5ccf7.zip/node_modules/@eslint/js/",\
"packageDependencies": [\
["@eslint/js", "npm:8.56.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/config-array", [\
["npm:0.11.14", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-config-array-npm-0.11.14-94a02fcc87-3ffb24ecdf.zip/node_modules/@humanwhocodes/config-array/",\
"packageDependencies": [\
["@humanwhocodes/config-array", "npm:0.11.14"],\
["@humanwhocodes/object-schema", "npm:2.0.2"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["minimatch", "npm:3.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/module-importer", [\
["npm:1.0.1", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-e993950e34.zip/node_modules/@humanwhocodes/module-importer/",\
"packageDependencies": [\
["@humanwhocodes/module-importer", "npm:1.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/object-schema", [\
["npm:2.0.2", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-object-schema-npm-2.0.2-77b42018f9-ef915e3e2f.zip/node_modules/@humanwhocodes/object-schema/",\
"packageDependencies": [\
["@humanwhocodes/object-schema", "npm:2.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@isaacs/cliui", [\
["npm:8.0.2", {\
"packageLocation": "./.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-e9ed5fd27c.zip/node_modules/@isaacs/cliui/",\
"packageDependencies": [\
["@isaacs/cliui", "npm:8.0.2"],\
["string-width", "npm:5.1.2"],\
["string-width-cjs", [\
"string-width",\
"npm:4.2.3"\
]],\
["strip-ansi", "npm:7.1.0"],\
["strip-ansi-cjs", [\
"strip-ansi",\
"npm:6.0.1"\
]],\
["wrap-ansi", "npm:8.1.0"],\
["wrap-ansi-cjs", [\
"wrap-ansi",\
"npm:7.0.0"\
]]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/gen-mapping", [\
["npm:0.3.3", {\
"packageLocation": "./.yarn/cache/@jridgewell-gen-mapping-npm-0.3.3-1815eba94c-072ace159c.zip/node_modules/@jridgewell/gen-mapping/",\
"packageDependencies": [\
["@jridgewell/gen-mapping", "npm:0.3.3"],\
["@jridgewell/set-array", "npm:1.1.2"],\
["@jridgewell/sourcemap-codec", "npm:1.4.15"],\
["@jridgewell/trace-mapping", "npm:0.3.21"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/resolve-uri", [\
["npm:3.1.1", {\
"packageLocation": "./.yarn/cache/@jridgewell-resolve-uri-npm-3.1.1-aa2de3f210-64d59df8ae.zip/node_modules/@jridgewell/resolve-uri/",\
"packageDependencies": [\
["@jridgewell/resolve-uri", "npm:3.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/set-array", [\
["npm:1.1.2", {\
"packageLocation": "./.yarn/cache/@jridgewell-set-array-npm-1.1.2-45b82d7fb6-69a84d5980.zip/node_modules/@jridgewell/set-array/",\
"packageDependencies": [\
["@jridgewell/set-array", "npm:1.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/source-map", [\
["npm:0.3.5", {\
"packageLocation": "./.yarn/cache/@jridgewell-source-map-npm-0.3.5-9f964eaf44-73838ac432.zip/node_modules/@jridgewell/source-map/",\
"packageDependencies": [\
["@jridgewell/source-map", "npm:0.3.5"],\
["@jridgewell/gen-mapping", "npm:0.3.3"],\
["@jridgewell/trace-mapping", "npm:0.3.21"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/sourcemap-codec", [\
["npm:1.4.15", {\
"packageLocation": "./.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.15-a055fb62cf-89960ac087.zip/node_modules/@jridgewell/sourcemap-codec/",\
"packageDependencies": [\
["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/trace-mapping", [\
["npm:0.3.21", {\
"packageLocation": "./.yarn/cache/@jridgewell-trace-mapping-npm-0.3.21-663b279e65-925dda0620.zip/node_modules/@jridgewell/trace-mapping/",\
"packageDependencies": [\
["@jridgewell/trace-mapping", "npm:0.3.21"],\
["@jridgewell/resolve-uri", "npm:3.1.1"],\
["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.scandir", [\
["npm:2.1.5", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-6ab2a9b8a1.zip/node_modules/@nodelib/fs.scandir/",\
"packageDependencies": [\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["@nodelib/fs.stat", "npm:2.0.5"],\
["run-parallel", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.stat", [\
["npm:2.0.5", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-012480b5ca.zip/node_modules/@nodelib/fs.stat/",\
"packageDependencies": [\
["@nodelib/fs.stat", "npm:2.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.walk", [\
["npm:1.2.8", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-40033e33e9.zip/node_modules/@nodelib/fs.walk/",\
"packageDependencies": [\
["@nodelib/fs.walk", "npm:1.2.8"],\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["fastq", "npm:1.16.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@npmcli/agent", [\
["npm:2.2.0", {\
"packageLocation": "./.yarn/cache/@npmcli-agent-npm-2.2.0-cf04e8a830-822ea07755.zip/node_modules/@npmcli/agent/",\
"packageDependencies": [\
["@npmcli/agent", "npm:2.2.0"],\
["agent-base", "npm:7.1.0"],\
["http-proxy-agent", "npm:7.0.0"],\
["https-proxy-agent", "npm:7.0.2"],\
["lru-cache", "npm:10.1.0"],\
["socks-proxy-agent", "npm:8.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@npmcli/fs", [\
["npm:3.1.0", {\
"packageLocation": "./.yarn/cache/@npmcli-fs-npm-3.1.0-0844a57978-f3a7ab3a31.zip/node_modules/@npmcli/fs/",\
"packageDependencies": [\
["@npmcli/fs", "npm:3.1.0"],\
["semver", "npm:7.5.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@osmium-libs/ast-extractor", [\
["workspace:libs/ast-extractor", {\
"packageLocation": "./libs/ast-extractor/",\
"packageDependencies": [\
["@osmium-libs/ast-extractor", "workspace:libs/ast-extractor"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@osmium-libs/foundry-wrapper", [\
["workspace:libs/foundry-wrapper", {\
"packageLocation": "./libs/foundry-wrapper/",\
"packageDependencies": [\
["@osmium-libs/foundry-wrapper", "workspace:libs/foundry-wrapper"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@osmium-libs/lsp-handler", [\
["workspace:libs/lsp-handler", {\
"packageLocation": "./libs/lsp-handler/",\
"packageDependencies": [\
["@osmium-libs/lsp-handler", "workspace:libs/lsp-handler"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@osmium-libs/lsp-launcher", [\
["workspace:libs/lsp-launcher", {\
"packageLocation": "./libs/lsp-launcher/",\
"packageDependencies": [\
["@osmium-libs/lsp-launcher", "workspace:libs/lsp-launcher"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@osmium-libs/lsp-server-wrapper", [\
["workspace:libs/lsp-server-wrapper", {\
"packageLocation": "./libs/lsp-server-wrapper/",\
"packageDependencies": [\
["@osmium-libs/lsp-server-wrapper", "workspace:libs/lsp-server-wrapper"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@osmium-packages/eslint-config", [\
["workspace:packages/eslint-config", {\
"packageLocation": "./packages/eslint-config/",\
"packageDependencies": [\
["@osmium-packages/eslint-config", "workspace:packages/eslint-config"],\
["eslint", "npm:8.56.0"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@osmium-packages/prettier-config", [\
["workspace:packages/prettier-config", {\
"packageLocation": "./packages/prettier-config/",\
"packageDependencies": [\
["@osmium-packages/prettier-config", "workspace:packages/prettier-config"],\
["prettier", "npm:3.2.2"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@pkgjs/parseargs", [\
["npm:0.11.0", {\
"packageLocation": "./.yarn/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-115e8ceeec.zip/node_modules/@pkgjs/parseargs/",\
"packageDependencies": [\
["@pkgjs/parseargs", "npm:0.11.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@tootallnate/once", [\
["npm:1.1.2", {\
"packageLocation": "./.yarn/cache/@tootallnate-once-npm-1.1.2-0517220057-e1fb1bbbc1.zip/node_modules/@tootallnate/once/",\
"packageDependencies": [\
["@tootallnate/once", "npm:1.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/eslint", [\
["npm:8.56.2", {\
"packageLocation": "./.yarn/cache/@types-eslint-npm-8.56.2-af13c76cd1-9e4805e770.zip/node_modules/@types/eslint/",\
"packageDependencies": [\
["@types/eslint", "npm:8.56.2"],\
["@types/estree", "npm:1.0.5"],\
["@types/json-schema", "npm:7.0.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/eslint-scope", [\
["npm:3.7.7", {\
"packageLocation": "./.yarn/cache/@types-eslint-scope-npm-3.7.7-efa26592f6-e2889a124a.zip/node_modules/@types/eslint-scope/",\
"packageDependencies": [\
["@types/eslint-scope", "npm:3.7.7"],\
["@types/eslint", "npm:8.56.2"],\
["@types/estree", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/estree", [\
["npm:1.0.5", {\
"packageLocation": "./.yarn/cache/@types-estree-npm-1.0.5-5b7faed3b4-7de6d928dd.zip/node_modules/@types/estree/",\
"packageDependencies": [\
["@types/estree", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json-schema", [\
["npm:7.0.15", {\
"packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.15-fd16381786-1a3c3e0623.zip/node_modules/@types/json-schema/",\
"packageDependencies": [\
["@types/json-schema", "npm:7.0.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/mocha", [\
["npm:10.0.6", {\
"packageLocation": "./.yarn/cache/@types-mocha-npm-10.0.6-a687c1962c-fc73626e81.zip/node_modules/@types/mocha/",\
"packageDependencies": [\
["@types/mocha", "npm:10.0.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/node", [\
["npm:18.19.6", {\
"packageLocation": "./.yarn/cache/@types-node-npm-18.19.6-2a8ba8919f-6168abff93.zip/node_modules/@types/node/",\
"packageDependencies": [\
["@types/node", "npm:18.19.6"],\
["undici-types", "npm:5.26.5"]\
],\
"linkType": "HARD"\
}],\
["npm:20.11.0", {\
"packageLocation": "./.yarn/cache/@types-node-npm-20.11.0-cb757f0c2a-8da60a8ccb.zip/node_modules/@types/node/",\
"packageDependencies": [\
["@types/node", "npm:20.11.0"],\
["undici-types", "npm:5.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/semver", [\
["npm:7.5.6", {\
"packageLocation": "./.yarn/cache/@types-semver-npm-7.5.6-9d2637fc95-e77282b17f.zip/node_modules/@types/semver/",\
"packageDependencies": [\
["@types/semver", "npm:7.5.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/vscode", [\
["npm:1.85.0", {\
"packageLocation": "./.yarn/cache/@types-vscode-npm-1.85.0-d07092d1cb-100b4dc636.zip/node_modules/@types/vscode/",\
"packageDependencies": [\
["@types/vscode", "npm:1.85.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/eslint-plugin", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-eslint-plugin-npm-6.18.1-afb406fb8f-451abba1f7.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "npm:6.18.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2b9e7e7d573ed38308251d9cfa9bcac1c01394d20ff25d4a07b4a0345be370b65803551137c4363442bf76c7d6f9363387c180207a65457c6616ca7fd9b2a56b#npm:6.18.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-709a3ae21a/0/cache/@typescript-eslint-eslint-plugin-npm-6.18.1-afb406fb8f-451abba1f7.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "virtual:2b9e7e7d573ed38308251d9cfa9bcac1c01394d20ff25d4a07b4a0345be370b65803551137c4363442bf76c7d6f9363387c180207a65457c6616ca7fd9b2a56b#npm:6.18.1"],\
["@eslint-community/regexpp", "npm:4.10.0"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@types/typescript-eslint__parser", null],\
["@typescript-eslint/parser", "virtual:2b9e7e7d573ed38308251d9cfa9bcac1c01394d20ff25d4a07b4a0345be370b65803551137c4363442bf76c7d6f9363387c180207a65457c6616ca7fd9b2a56b#npm:6.18.1"],\
["@typescript-eslint/scope-manager", "npm:6.18.1"],\
["@typescript-eslint/type-utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:6.18.1"],\
["@typescript-eslint/utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:6.18.1"],\
["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["eslint", "npm:8.56.0"],\
["graphemer", "npm:1.4.0"],\
["ignore", "npm:5.3.0"],\
["natural-compare", "npm:1.4.0"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript-eslint__parser",\
"@types/typescript",\
"@typescript-eslint/parser",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/parser", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-6.18.1-5f9fac0abf-b853d39dcf.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "npm:6.18.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2b9e7e7d573ed38308251d9cfa9bcac1c01394d20ff25d4a07b4a0345be370b65803551137c4363442bf76c7d6f9363387c180207a65457c6616ca7fd9b2a56b#npm:6.18.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-5a88117bd6/0/cache/@typescript-eslint-parser-npm-6.18.1-5f9fac0abf-b853d39dcf.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "virtual:2b9e7e7d573ed38308251d9cfa9bcac1c01394d20ff25d4a07b4a0345be370b65803551137c4363442bf76c7d6f9363387c180207a65457c6616ca7fd9b2a56b#npm:6.18.1"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/scope-manager", "npm:6.18.1"],\
["@typescript-eslint/types", "npm:6.18.1"],\
["@typescript-eslint/typescript-estree", "virtual:e64bf1ee7ea3e075df3762bee529af5617a6d952c76687bbeb7e7194b0edb8454d524ff0d37cc872b6efc73e34abf0f42505e0672be6658707dd577815967786#npm:6.18.1"],\
["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["eslint", "npm:8.56.0"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/scope-manager", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-6.18.1-3f533b51d7-ab75663cda.zip/node_modules/@typescript-eslint/scope-manager/",\
"packageDependencies": [\
["@typescript-eslint/scope-manager", "npm:6.18.1"],\
["@typescript-eslint/types", "npm:6.18.1"],\
["@typescript-eslint/visitor-keys", "npm:6.18.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/type-utils", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-type-utils-npm-6.18.1-40d38d6f53-f775011c35.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "npm:6.18.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:6.18.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-e64bf1ee7e/0/cache/@typescript-eslint-type-utils-npm-6.18.1-40d38d6f53-f775011c35.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:6.18.1"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/typescript-estree", "virtual:e64bf1ee7ea3e075df3762bee529af5617a6d952c76687bbeb7e7194b0edb8454d524ff0d37cc872b6efc73e34abf0f42505e0672be6658707dd577815967786#npm:6.18.1"],\
["@typescript-eslint/utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:6.18.1"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["eslint", "npm:8.56.0"],\
["ts-api-utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/types", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-6.18.1-a106ef5c16-e304620953.zip/node_modules/@typescript-eslint/types/",\
"packageDependencies": [\
["@typescript-eslint/types", "npm:6.18.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/typescript-estree", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-6.18.1-8c1bf6eb4a-33307bc87c.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "npm:6.18.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:d7126cc2cc184cedc1bda95f980c89a68bef7ba65c10b76ab8a2374421cb04a89df5f8bcafc3dec16834a0b333bd227089be5bd5fb9a48f66dba34b4fc67a38a#npm:6.18.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-d55ac54a63/0/cache/@typescript-eslint-typescript-estree-npm-6.18.1-8c1bf6eb4a-33307bc87c.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:d7126cc2cc184cedc1bda95f980c89a68bef7ba65c10b76ab8a2374421cb04a89df5f8bcafc3dec16834a0b333bd227089be5bd5fb9a48f66dba34b4fc67a38a#npm:6.18.1"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:6.18.1"],\
["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["minimatch", "npm:9.0.3"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:d55ac54a632afa38e8b4957d31abd28ef81c2071ba9532ed8b3ae6892de5aa9a9aca05aca91540c64f50fb8e8b6d353737baf3249465db774ead065d414dbb5d#npm:1.0.3"],\
["typescript", null]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}],\
["virtual:e64bf1ee7ea3e075df3762bee529af5617a6d952c76687bbeb7e7194b0edb8454d524ff0d37cc872b6efc73e34abf0f42505e0672be6658707dd577815967786#npm:6.18.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-5df24b4970/0/cache/@typescript-eslint-typescript-estree-npm-6.18.1-8c1bf6eb4a-33307bc87c.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:e64bf1ee7ea3e075df3762bee529af5617a6d952c76687bbeb7e7194b0edb8454d524ff0d37cc872b6efc73e34abf0f42505e0672be6658707dd577815967786#npm:6.18.1"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:6.18.1"],\
["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["minimatch", "npm:9.0.3"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/utils", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-utils-npm-6.18.1-6a422bc632-967728f062.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "npm:6.18.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:6.18.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-d7126cc2cc/0/cache/@typescript-eslint-utils-npm-6.18.1-6a422bc632-967728f062.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "virtual:709a3ae21ae6c79b1bbf5be7aaae85b3d0884b300ec518e7194bac0477917d69edb78131fc1086e4e7478940829332b99c736f324690a4d885b52507d483452f#npm:6.18.1"],\
["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\
["@types/eslint", null],\
["@types/json-schema", "npm:7.0.15"],\
["@types/semver", "npm:7.5.6"],\
["@typescript-eslint/scope-manager", "npm:6.18.1"],\
["@typescript-eslint/types", "npm:6.18.1"],\
["@typescript-eslint/typescript-estree", "virtual:d7126cc2cc184cedc1bda95f980c89a68bef7ba65c10b76ab8a2374421cb04a89df5f8bcafc3dec16834a0b333bd227089be5bd5fb9a48f66dba34b4fc67a38a#npm:6.18.1"],\
["eslint", "npm:8.56.0"],\
["semver", "npm:7.5.4"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/visitor-keys", [\
["npm:6.18.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-6.18.1-1fdb3bad24-2d6c5ffa52.zip/node_modules/@typescript-eslint/visitor-keys/",\
"packageDependencies": [\
["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
["@typescript-eslint/types", "npm:6.18.1"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@ungap/structured-clone", [\
["npm:1.2.0", {\
"packageLocation": "./.yarn/cache/@ungap-structured-clone-npm-1.2.0-648f0b82e0-c6fe89a505.zip/node_modules/@ungap/structured-clone/",\
"packageDependencies": [\
["@ungap/structured-clone", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vscode/test-cli", [\
["npm:0.0.4", {\
"packageLocation": "./.yarn/cache/@vscode-test-cli-npm-0.0.4-070c0352b1-d88217b3c4.zip/node_modules/@vscode/test-cli/",\
"packageDependencies": [\
["@vscode/test-cli", "npm:0.0.4"],\
["@types/mocha", "npm:10.0.6"],\
["chokidar", "npm:3.5.3"],\
["glob", "npm:10.3.10"],\
["minimatch", "npm:9.0.3"],\
["mocha", "npm:10.2.0"],\
["supports-color", "npm:9.4.0"],\
["yargs", "npm:17.7.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vscode/test-electron", [\
["npm:2.3.8", {\
"packageLocation": "./.yarn/cache/@vscode-test-electron-npm-2.3.8-657ae8348f-044ce44866.zip/node_modules/@vscode/test-electron/",\
"packageDependencies": [\
["@vscode/test-electron", "npm:2.3.8"],\
["http-proxy-agent", "npm:4.0.1"],\
["https-proxy-agent", "npm:5.0.1"],\
["jszip", "npm:3.10.1"],\
["semver", "npm:7.5.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vscode/vsce", [\
["npm:2.24.0", {\
"packageLocation": "./.yarn/cache/@vscode-vsce-npm-2.24.0-c10a7a8e70-74473cb671.zip/node_modules/@vscode/vsce/",\
"packageDependencies": [\
["@vscode/vsce", "npm:2.24.0"],\
["azure-devops-node-api", "npm:11.2.0"],\
["chalk", "npm:2.4.2"],\
["cheerio", "npm:1.0.0-rc.12"],\
["commander", "npm:6.2.1"],\
["glob", "npm:7.2.3"],\
["hosted-git-info", "npm:4.1.0"],\
["jsonc-parser", "npm:3.2.1"],\
["keytar", "npm:7.9.0"],\
["leven", "npm:3.1.0"],\
["markdown-it", "npm:12.3.2"],\
["mime", "npm:1.6.0"],\
["minimatch", "npm:3.1.2"],\
["parse-semver", "npm:1.1.1"],\
["read", "npm:1.0.7"],\
["semver", "npm:7.5.4"],\
["tmp", "npm:0.2.1"],\
["typed-rest-client", "npm:1.8.11"],\
["url-join", "npm:4.0.1"],\
["xml2js", "npm:0.5.0"],\
["yauzl", "npm:2.10.0"],\
["yazl", "npm:2.5.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/ast", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-ast-npm-1.11.6-d3fd2bb49a-4c1303971c.zip/node_modules/@webassemblyjs/ast/",\
"packageDependencies": [\
["@webassemblyjs/ast", "npm:1.11.6"],\
["@webassemblyjs/helper-numbers", "npm:1.11.6"],\
["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/floating-point-hex-parser", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-floating-point-hex-parser-npm-1.11.6-3a9928fc76-29b0875884.zip/node_modules/@webassemblyjs/floating-point-hex-parser/",\
"packageDependencies": [\
["@webassemblyjs/floating-point-hex-parser", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/helper-api-error", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-helper-api-error-npm-1.11.6-75f6275ff4-e8563df851.zip/node_modules/@webassemblyjs/helper-api-error/",\
"packageDependencies": [\
["@webassemblyjs/helper-api-error", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/helper-buffer", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-helper-buffer-npm-1.11.6-69996544b0-b14d0573bf.zip/node_modules/@webassemblyjs/helper-buffer/",\
"packageDependencies": [\
["@webassemblyjs/helper-buffer", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/helper-numbers", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-helper-numbers-npm-1.11.6-819ddab1da-9ffd258ad8.zip/node_modules/@webassemblyjs/helper-numbers/",\
"packageDependencies": [\
["@webassemblyjs/helper-numbers", "npm:1.11.6"],\
["@webassemblyjs/floating-point-hex-parser", "npm:1.11.6"],\
["@webassemblyjs/helper-api-error", "npm:1.11.6"],\
["@xtuc/long", "npm:4.2.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/helper-wasm-bytecode", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-helper-wasm-bytecode-npm-1.11.6-3bc23747de-4ebf03e9c1.zip/node_modules/@webassemblyjs/helper-wasm-bytecode/",\
"packageDependencies": [\
["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/helper-wasm-section", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-helper-wasm-section-npm-1.11.6-344f8ff2af-38a615ab3d.zip/node_modules/@webassemblyjs/helper-wasm-section/",\
"packageDependencies": [\
["@webassemblyjs/helper-wasm-section", "npm:1.11.6"],\
["@webassemblyjs/ast", "npm:1.11.6"],\
["@webassemblyjs/helper-buffer", "npm:1.11.6"],\
["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\
["@webassemblyjs/wasm-gen", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/ieee754", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-ieee754-npm-1.11.6-95c92f446a-13574b8e41.zip/node_modules/@webassemblyjs/ieee754/",\
"packageDependencies": [\
["@webassemblyjs/ieee754", "npm:1.11.6"],\
["@xtuc/ieee754", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/leb128", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-leb128-npm-1.11.6-697d62da2e-ec3b72db0e.zip/node_modules/@webassemblyjs/leb128/",\
"packageDependencies": [\
["@webassemblyjs/leb128", "npm:1.11.6"],\
["@xtuc/long", "npm:4.2.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/utf8", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-utf8-npm-1.11.6-102c4e5d68-361a537bd6.zip/node_modules/@webassemblyjs/utf8/",\
"packageDependencies": [\
["@webassemblyjs/utf8", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/wasm-edit", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-wasm-edit-npm-1.11.6-8d2703f828-c168bfc6d0.zip/node_modules/@webassemblyjs/wasm-edit/",\
"packageDependencies": [\
["@webassemblyjs/wasm-edit", "npm:1.11.6"],\
["@webassemblyjs/ast", "npm:1.11.6"],\
["@webassemblyjs/helper-buffer", "npm:1.11.6"],\
["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\
["@webassemblyjs/helper-wasm-section", "npm:1.11.6"],\
["@webassemblyjs/wasm-gen", "npm:1.11.6"],\
["@webassemblyjs/wasm-opt", "npm:1.11.6"],\
["@webassemblyjs/wasm-parser", "npm:1.11.6"],\
["@webassemblyjs/wast-printer", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/wasm-gen", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-wasm-gen-npm-1.11.6-0ca036cab0-f91903506c.zip/node_modules/@webassemblyjs/wasm-gen/",\
"packageDependencies": [\
["@webassemblyjs/wasm-gen", "npm:1.11.6"],\
["@webassemblyjs/ast", "npm:1.11.6"],\
["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\
["@webassemblyjs/ieee754", "npm:1.11.6"],\
["@webassemblyjs/leb128", "npm:1.11.6"],\
["@webassemblyjs/utf8", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/wasm-opt", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-wasm-opt-npm-1.11.6-8be3443975-e0cfeea381.zip/node_modules/@webassemblyjs/wasm-opt/",\
"packageDependencies": [\
["@webassemblyjs/wasm-opt", "npm:1.11.6"],\
["@webassemblyjs/ast", "npm:1.11.6"],\
["@webassemblyjs/helper-buffer", "npm:1.11.6"],\
["@webassemblyjs/wasm-gen", "npm:1.11.6"],\
["@webassemblyjs/wasm-parser", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/wasm-parser", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-wasm-parser-npm-1.11.6-88e2433c21-6995e0b7b8.zip/node_modules/@webassemblyjs/wasm-parser/",\
"packageDependencies": [\
["@webassemblyjs/wasm-parser", "npm:1.11.6"],\
["@webassemblyjs/ast", "npm:1.11.6"],\
["@webassemblyjs/helper-api-error", "npm:1.11.6"],\
["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\
["@webassemblyjs/ieee754", "npm:1.11.6"],\
["@webassemblyjs/leb128", "npm:1.11.6"],\
["@webassemblyjs/utf8", "npm:1.11.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webassemblyjs/wast-printer", [\
["npm:1.11.6", {\
"packageLocation": "./.yarn/cache/@webassemblyjs-wast-printer-npm-1.11.6-3191861e3f-fd45fd0d69.zip/node_modules/@webassemblyjs/wast-printer/",\
"packageDependencies": [\
["@webassemblyjs/wast-printer", "npm:1.11.6"],\
["@webassemblyjs/ast", "npm:1.11.6"],\
["@xtuc/long", "npm:4.2.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@webpack-cli/configtest", [\
["npm:2.1.1", {\
"packageLocation": "./.yarn/cache/@webpack-cli-configtest-npm-2.1.1-2aa637b6bc-9f9f9145c2.zip/node_modules/@webpack-cli/configtest/",\
"packageDependencies": [\
["@webpack-cli/configtest", "npm:2.1.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:18451f3d8e5dacbf26b98823a0220f7b3f28daca71aa13b5ae585b8cdfc3a8ac3080a26c1c965a6c95afb7ef7c053188674829161ad475a0246dbc7ad48bc72c#npm:2.1.1", {\
"packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-5a62e799ca/0/cache/@webpack-cli-configtest-npm-2.1.1-2aa637b6bc-9f9f9145c2.zip/node_modules/@webpack-cli/configtest/",\
"packageDependencies": [\
["@webpack-cli/configtest", "virtual:18451f3d8e5dacbf26b98823a0220f7b3f28daca71aa13b5ae585b8cdfc3a8ac3080a26c1c965a6c95afb7ef7c053188674829161ad475a0246dbc7ad48bc72c#npm:2.1.1"],\
["@types/webpack", null],\
["@types/webpack-cli", null],\
["webpack", "virtual:2b9e7e7d573ed38308251d9cfa9bcac1c01394d20ff25d4a07b4a0345be370b65803551137c4363442bf76c7d6f9363387c180207a65457c6616ca7fd9b2a56b#npm:5.89.0"],\
["webpack-cli", "virtual:2b9e7e7d573ed38308251d9cfa9bcac1c01394d20ff25d4a07b4a0345be370b65803551137c4363442bf76c7d6f9363387c180207a65457c6616ca7fd9b2a56b#npm:5.1.4"]\
],\
"packagePeers": [\
"@types/webpack-cli",\
"@types/webpack",\
"webpack-cli",\
"webpack"\
],\
"linkType": "HARD"\
}]\
]],\
["@webpack-cli/info", [\
["npm:2.0.2", {\
"packageLocation": "./.yarn/cache/@webpack-cli-info-npm-2.0.2-494be2e91a-8f9a178afc.zip/node_modules/@webpack-cli/info/",\
"packageDependencies": [\
["@webpack-cli/info", "npm:2.0.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:18451f3d8e5dacbf26b98823a0220f7b3f28daca71aa13b5ae585b8cdfc3a8ac3080a26c1c965a6c95afb7ef7c053188674829161ad475a0246dbc7ad48bc72c#npm:2.0.2", {\
"packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-77ec15a80f/0/cache/@webpack-cli-info-npm-2.0.2-494be2e91a-8f9a178afc.zip/node_modules/@webpack-cli/info/",\
"packageDependencies": [\
["@webpack-cli/info", "virtual:18451f3d8e5dacbf26b98823a0220f7b3f28daca71aa13b5ae585b8cdfc3a8ac3080a26c1c965a6c95afb7ef7c053188674829161ad475a0246dbc7ad48bc72c#npm:2.0.2"],\
["@types/webpack", null],\
["@types/webpack-cli", null],\