forked from ScribeMD/docker-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pnp.cjs
14175 lines (14079 loc) · 688 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": "docker-cache",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["docker-cache", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@actions/cache", "npm:3.2.2"],\
["@actions/core", "npm:1.10.1"],\
["@cspell/dict-win32", "npm:2.0.3"],\
["@fast-check/jest", "virtual:44054250fa45db66bb537d7f889b63e21f845617f28647dee3cebc87a7de5686b316e55d8b968f9ef5f8fc93237e9ae15ec236b5064d13c4a68fc5de92838890#npm:1.8.0"],\
["@jest/globals", "npm:29.7.0"],\
["@jest/types", "npm:29.6.3"],\
["@tsconfig/node20", "npm:20.1.2"],\
["@tsconfig/strictest", "npm:2.0.3"],\
["@types/eslint", "npm:8.56.6"],\
["@types/jest", "npm:29.5.12"],\
["@types/node", "npm:20.11.30"],\
["@typescript-eslint/eslint-plugin", "virtual:44054250fa45db66bb537d7f889b63e21f845617f28647dee3cebc87a7de5686b316e55d8b968f9ef5f8fc93237e9ae15ec236b5064d13c4a68fc5de92838890#npm:7.3.1"],\
["@typescript-eslint/parser", "virtual:44054250fa45db66bb537d7f889b63e21f845617f28647dee3cebc87a7de5686b316e55d8b968f9ef5f8fc93237e9ae15ec236b5064d13c4a68fc5de92838890#npm:7.3.1"],\
["@vercel/ncc", "npm:0.38.1"],\
["@yarnpkg/sdks", "npm:3.1.0"],\
["eslint", "npm:8.57.0"],\
["eslint-config-prettier", "virtual:44054250fa45db66bb537d7f889b63e21f845617f28647dee3cebc87a7de5686b316e55d8b968f9ef5f8fc93237e9ae15ec236b5064d13c4a68fc5de92838890#npm:9.1.0"],\
["fast-check", "npm:3.16.0"],\
["jest", "virtual:44054250fa45db66bb537d7f889b63e21f845617f28647dee3cebc87a7de5686b316e55d8b968f9ef5f8fc93237e9ae15ec236b5064d13c4a68fc5de92838890#npm:29.7.0"],\
["jest-junit", "npm:16.0.0"],\
["jest-mock", "npm:29.7.0"],\
["prettier", "npm:3.1.1"],\
["ts-jest", "virtual:44054250fa45db66bb537d7f889b63e21f845617f28647dee3cebc87a7de5686b316e55d8b968f9ef5f8fc93237e9ae15ec236b5064d13c4a68fc5de92838890#npm:29.1.2"],\
["typescript", "patch:typescript@npm%3A5.4.3#optional!builtin<compat/typescript>::version=5.4.3&hash=5adc0c"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@aashutoshrathi/word-wrap", [\
["npm:1.2.6", {\
"packageLocation": "./.yarn/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-53c2b231a6.zip/node_modules/@aashutoshrathi/word-wrap/",\
"packageDependencies": [\
["@aashutoshrathi/word-wrap", "npm:1.2.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@actions/cache", [\
["npm:3.2.2", {\
"packageLocation": "./.yarn/cache/@actions-cache-npm-3.2.2-2fd98c2edc-60ce5ef0ae.zip/node_modules/@actions/cache/",\
"packageDependencies": [\
["@actions/cache", "npm:3.2.2"],\
["@actions/core", "npm:1.10.1"],\
["@actions/exec", "npm:1.1.1"],\
["@actions/glob", "npm:0.1.2"],\
["@actions/http-client", "npm:2.2.1"],\
["@actions/io", "npm:1.1.3"],\
["@azure/abort-controller", "npm:1.1.0"],\
["@azure/ms-rest-js", "npm:2.7.0"],\
["@azure/storage-blob", "npm:12.17.0"],\
["semver", "npm:6.3.1"],\
["uuid", "npm:3.4.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@actions/core", [\
["npm:1.10.1", {\
"packageLocation": "./.yarn/cache/@actions-core-npm-1.10.1-3cb1000b4d-7a61446697.zip/node_modules/@actions/core/",\
"packageDependencies": [\
["@actions/core", "npm:1.10.1"],\
["@actions/http-client", "npm:2.2.1"],\
["uuid", "npm:8.3.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@actions/exec", [\
["npm:1.1.1", {\
"packageLocation": "./.yarn/cache/@actions-exec-npm-1.1.1-90973d2f96-4a09f6bdbe.zip/node_modules/@actions/exec/",\
"packageDependencies": [\
["@actions/exec", "npm:1.1.1"],\
["@actions/io", "npm:1.1.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@actions/glob", [\
["npm:0.1.2", {\
"packageLocation": "./.yarn/cache/@actions-glob-npm-0.1.2-dbcf5a35e4-7431cb85da.zip/node_modules/@actions/glob/",\
"packageDependencies": [\
["@actions/glob", "npm:0.1.2"],\
["@actions/core", "npm:1.10.1"],\
["minimatch", "npm:3.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@actions/http-client", [\
["npm:2.2.1", {\
"packageLocation": "./.yarn/cache/@actions-http-client-npm-2.2.1-1cd331df79-371771e68f.zip/node_modules/@actions/http-client/",\
"packageDependencies": [\
["@actions/http-client", "npm:2.2.1"],\
["tunnel", "npm:0.0.6"],\
["undici", "npm:5.28.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@actions/io", [\
["npm:1.1.3", {\
"packageLocation": "./.yarn/cache/@actions-io-npm-1.1.3-82d1cf012b-5b8751918e.zip/node_modules/@actions/io/",\
"packageDependencies": [\
["@actions/io", "npm:1.1.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@ampproject/remapping", [\
["npm:2.3.0", {\
"packageLocation": "./.yarn/cache/@ampproject-remapping-npm-2.3.0-559c14eee4-81d63cca54.zip/node_modules/@ampproject/remapping/",\
"packageDependencies": [\
["@ampproject/remapping", "npm:2.3.0"],\
["@jridgewell/gen-mapping", "npm:0.3.5"],\
["@jridgewell/trace-mapping", "npm:0.3.25"]\
],\
"linkType": "HARD"\
}]\
]],\
["@arcanis/slice-ansi", [\
["npm:1.1.1", {\
"packageLocation": "./.yarn/cache/@arcanis-slice-ansi-npm-1.1.1-a69aa37ccc-2f222b121b.zip/node_modules/@arcanis/slice-ansi/",\
"packageDependencies": [\
["@arcanis/slice-ansi", "npm:1.1.1"],\
["grapheme-splitter", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/abort-controller", [\
["npm:1.1.0", {\
"packageLocation": "./.yarn/cache/@azure-abort-controller-npm-1.1.0-5b4e309629-bb79f0faaa.zip/node_modules/@azure/abort-controller/",\
"packageDependencies": [\
["@azure/abort-controller", "npm:1.1.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}],\
["npm:2.0.0", {\
"packageLocation": "./.yarn/cache/@azure-abort-controller-npm-2.0.0-658db9ceff-8530b8fe3b.zip/node_modules/@azure/abort-controller/",\
"packageDependencies": [\
["@azure/abort-controller", "npm:2.0.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/core-auth", [\
["npm:1.6.0", {\
"packageLocation": "./.yarn/cache/@azure-core-auth-npm-1.6.0-cef3e395a4-2bee30c0b0.zip/node_modules/@azure/core-auth/",\
"packageDependencies": [\
["@azure/core-auth", "npm:1.6.0"],\
["@azure/abort-controller", "npm:2.0.0"],\
["@azure/core-util", "npm:1.7.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/core-http", [\
["npm:3.0.4", {\
"packageLocation": "./.yarn/cache/@azure-core-http-npm-3.0.4-cea7ceef9f-87c81a0fa4.zip/node_modules/@azure/core-http/",\
"packageDependencies": [\
["@azure/core-http", "npm:3.0.4"],\
["@azure/abort-controller", "npm:1.1.0"],\
["@azure/core-auth", "npm:1.6.0"],\
["@azure/core-tracing", "npm:1.0.0-preview.13"],\
["@azure/core-util", "npm:1.7.0"],\
["@azure/logger", "npm:1.0.4"],\
["@types/node-fetch", "npm:2.6.11"],\
["@types/tunnel", "npm:0.0.3"],\
["form-data", "npm:4.0.0"],\
["node-fetch", "virtual:41826b234c071f089b4a8b6ec3beff614ff6b2775ce6d85cc947a14ec9989c58f9977f5dce23936ad4a28231d28a5cfd3698e342568418f31ddf6a709dc78edf#npm:2.7.0"],\
["process", "npm:0.11.10"],\
["tslib", "npm:2.6.2"],\
["tunnel", "npm:0.0.6"],\
["uuid", "npm:8.3.2"],\
["xml2js", "npm:0.5.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/core-lro", [\
["npm:2.6.0", {\
"packageLocation": "./.yarn/cache/@azure-core-lro-npm-2.6.0-d149352892-3d86eb9643.zip/node_modules/@azure/core-lro/",\
"packageDependencies": [\
["@azure/core-lro", "npm:2.6.0"],\
["@azure/abort-controller", "npm:2.0.0"],\
["@azure/core-util", "npm:1.7.0"],\
["@azure/logger", "npm:1.0.4"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/core-paging", [\
["npm:1.5.0", {\
"packageLocation": "./.yarn/cache/@azure-core-paging-npm-1.5.0-63e6dd76d4-634a1c6540.zip/node_modules/@azure/core-paging/",\
"packageDependencies": [\
["@azure/core-paging", "npm:1.5.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/core-tracing", [\
["npm:1.0.0-preview.13", {\
"packageLocation": "./.yarn/cache/@azure-core-tracing-npm-1.0.0-preview.13-7760d6e37f-0977479165.zip/node_modules/@azure/core-tracing/",\
"packageDependencies": [\
["@azure/core-tracing", "npm:1.0.0-preview.13"],\
["@opentelemetry/api", "npm:1.8.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/core-util", [\
["npm:1.7.0", {\
"packageLocation": "./.yarn/cache/@azure-core-util-npm-1.7.0-7486488c1c-a55af1589e.zip/node_modules/@azure/core-util/",\
"packageDependencies": [\
["@azure/core-util", "npm:1.7.0"],\
["@azure/abort-controller", "npm:2.0.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/logger", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/cache/@azure-logger-npm-1.0.4-496582cdff-15af549d8d.zip/node_modules/@azure/logger/",\
"packageDependencies": [\
["@azure/logger", "npm:1.0.4"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/ms-rest-js", [\
["npm:2.7.0", {\
"packageLocation": "./.yarn/cache/@azure-ms-rest-js-npm-2.7.0-41826b234c-c2fec3ca38.zip/node_modules/@azure/ms-rest-js/",\
"packageDependencies": [\
["@azure/ms-rest-js", "npm:2.7.0"],\
["@azure/core-auth", "npm:1.6.0"],\
["abort-controller", "npm:3.0.0"],\
["form-data", "npm:2.5.1"],\
["node-fetch", "virtual:41826b234c071f089b4a8b6ec3beff614ff6b2775ce6d85cc947a14ec9989c58f9977f5dce23936ad4a28231d28a5cfd3698e342568418f31ddf6a709dc78edf#npm:2.7.0"],\
["tslib", "npm:1.14.1"],\
["tunnel", "npm:0.0.6"],\
["uuid", "npm:8.3.2"],\
["xml2js", "npm:0.5.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@azure/storage-blob", [\
["npm:12.17.0", {\
"packageLocation": "./.yarn/cache/@azure-storage-blob-npm-12.17.0-294d1b17a0-462e04cdfc.zip/node_modules/@azure/storage-blob/",\
"packageDependencies": [\
["@azure/storage-blob", "npm:12.17.0"],\
["@azure/abort-controller", "npm:1.1.0"],\
["@azure/core-http", "npm:3.0.4"],\
["@azure/core-lro", "npm:2.6.0"],\
["@azure/core-paging", "npm:1.5.0"],\
["@azure/core-tracing", "npm:1.0.0-preview.13"],\
["@azure/logger", "npm:1.0.4"],\
["events", "npm:3.3.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.23.5", {\
"packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.23.5-cb10d08de6-a10e843595.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.23.5"],\
["@babel/highlight", "npm:7.23.4"],\
["chalk", "npm:2.4.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/compat-data", [\
["npm:7.23.5", {\
"packageLocation": "./.yarn/cache/@babel-compat-data-npm-7.23.5-d79bbb1184-081278ed46.zip/node_modules/@babel/compat-data/",\
"packageDependencies": [\
["@babel/compat-data", "npm:7.23.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/core", [\
["npm:7.24.0", {\
"packageLocation": "./.yarn/cache/@babel-core-npm-7.24.0-b1f835a8d5-bb37cbf0bd.zip/node_modules/@babel/core/",\
"packageDependencies": [\
["@babel/core", "npm:7.24.0"],\
["@ampproject/remapping", "npm:2.3.0"],\
["@babel/code-frame", "npm:7.23.5"],\
["@babel/generator", "npm:7.23.6"],\
["@babel/helper-compilation-targets", "npm:7.23.6"],\
["@babel/helper-module-transforms", "virtual:b1f835a8d5cabf13736d410cd304861aa580e2a081848af0f12658b96394c1b260009535aac5c010d91d4835e94a1eddb84b1e55c2be1c85a4daab1ed42a46f7#npm:7.23.3"],\
["@babel/helpers", "npm:7.24.0"],\
["@babel/parser", "npm:7.24.0"],\
["@babel/template", "npm:7.24.0"],\
["@babel/traverse", "npm:7.24.0"],\
["@babel/types", "npm:7.24.0"],\
["convert-source-map", "npm:2.0.0"],\
["debug", "virtual:52cc1f08fdfa0ce0882bedf10264a24f906e33f7892b3412b78b3e749d6e4b50a5c4d47e46903c21fe956663d3ab6f4d2b4677d28abd53464b00761501f37601#npm:4.3.4"],\
["gensync", "npm:1.0.0-beta.2"],\
["json5", "npm:2.2.3"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/generator", [\
["npm:7.23.6", {\
"packageLocation": "./.yarn/cache/@babel-generator-npm-7.23.6-817ef5e591-53540e905c.zip/node_modules/@babel/generator/",\
"packageDependencies": [\
["@babel/generator", "npm:7.23.6"],\
["@babel/types", "npm:7.24.0"],\
["@jridgewell/gen-mapping", "npm:0.3.5"],\
["@jridgewell/trace-mapping", "npm:0.3.25"],\
["jsesc", "npm:2.5.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-compilation-targets", [\
["npm:7.23.6", {\
"packageLocation": "./.yarn/cache/@babel-helper-compilation-targets-npm-7.23.6-aa6f07f088-ba38506d11.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "npm:7.23.6"],\
["@babel/compat-data", "npm:7.23.5"],\
["@babel/helper-validator-option", "npm:7.23.5"],\
["browserslist", "npm:4.23.0"],\
["lru-cache", "npm:5.1.1"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-environment-visitor", [\
["npm:7.22.20", {\
"packageLocation": "./.yarn/cache/@babel-helper-environment-visitor-npm-7.22.20-260909e014-e762c2d8f5.zip/node_modules/@babel/helper-environment-visitor/",\
"packageDependencies": [\
["@babel/helper-environment-visitor", "npm:7.22.20"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-function-name", [\
["npm:7.23.0", {\
"packageLocation": "./.yarn/cache/@babel-helper-function-name-npm-7.23.0-ce38271242-d771dd1f32.zip/node_modules/@babel/helper-function-name/",\
"packageDependencies": [\
["@babel/helper-function-name", "npm:7.23.0"],\
["@babel/template", "npm:7.24.0"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-hoist-variables", [\
["npm:7.22.5", {\
"packageLocation": "./.yarn/cache/@babel-helper-hoist-variables-npm-7.22.5-6db3192347-60a3077f75.zip/node_modules/@babel/helper-hoist-variables/",\
"packageDependencies": [\
["@babel/helper-hoist-variables", "npm:7.22.5"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-imports", [\
["npm:7.22.15", {\
"packageLocation": "./.yarn/cache/@babel-helper-module-imports-npm-7.22.15-687e77ee50-4e0d7fc36d.zip/node_modules/@babel/helper-module-imports/",\
"packageDependencies": [\
["@babel/helper-module-imports", "npm:7.22.15"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-transforms", [\
["npm:7.23.3", {\
"packageLocation": "./.yarn/cache/@babel-helper-module-transforms-npm-7.23.3-69078a931c-211e1399d0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "npm:7.23.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:b1f835a8d5cabf13736d410cd304861aa580e2a081848af0f12658b96394c1b260009535aac5c010d91d4835e94a1eddb84b1e55c2be1c85a4daab1ed42a46f7#npm:7.23.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-9ffe21151a/0/cache/@babel-helper-module-transforms-npm-7.23.3-69078a931c-211e1399d0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "virtual:b1f835a8d5cabf13736d410cd304861aa580e2a081848af0f12658b96394c1b260009535aac5c010d91d4835e94a1eddb84b1e55c2be1c85a4daab1ed42a46f7#npm:7.23.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-environment-visitor", "npm:7.22.20"],\
["@babel/helper-module-imports", "npm:7.22.15"],\
["@babel/helper-simple-access", "npm:7.22.5"],\
["@babel/helper-split-export-declaration", "npm:7.22.6"],\
["@babel/helper-validator-identifier", "npm:7.22.20"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-plugin-utils", [\
["npm:7.24.0", {\
"packageLocation": "./.yarn/cache/@babel-helper-plugin-utils-npm-7.24.0-24ea3c3608-90f41bd1b4.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-simple-access", [\
["npm:7.22.5", {\
"packageLocation": "./.yarn/cache/@babel-helper-simple-access-npm-7.22.5-0a3f578780-f0cf81a30b.zip/node_modules/@babel/helper-simple-access/",\
"packageDependencies": [\
["@babel/helper-simple-access", "npm:7.22.5"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-split-export-declaration", [\
["npm:7.22.6", {\
"packageLocation": "./.yarn/cache/@babel-helper-split-export-declaration-npm-7.22.6-e723505aef-d83e4b623e.zip/node_modules/@babel/helper-split-export-declaration/",\
"packageDependencies": [\
["@babel/helper-split-export-declaration", "npm:7.22.6"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-string-parser", [\
["npm:7.23.4", {\
"packageLocation": "./.yarn/cache/@babel-helper-string-parser-npm-7.23.4-b1f0d030c3-f348d5637a.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.23.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.22.20", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.22.20-18305bb306-dcad63db34.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.22.20"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-option", [\
["npm:7.23.5", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-option-npm-7.23.5-d83bbfe738-af45d5c0de.zip/node_modules/@babel/helper-validator-option/",\
"packageDependencies": [\
["@babel/helper-validator-option", "npm:7.23.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helpers", [\
["npm:7.24.0", {\
"packageLocation": "./.yarn/cache/@babel-helpers-npm-7.24.0-e1943c9c06-dd27c9f11c.zip/node_modules/@babel/helpers/",\
"packageDependencies": [\
["@babel/helpers", "npm:7.24.0"],\
["@babel/template", "npm:7.24.0"],\
["@babel/traverse", "npm:7.24.0"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/highlight", [\
["npm:7.23.4", {\
"packageLocation": "./.yarn/cache/@babel-highlight-npm-7.23.4-2a9f2d2538-fbff9fcb2f.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.23.4"],\
["@babel/helper-validator-identifier", "npm:7.22.20"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/parser", [\
["npm:7.24.0", {\
"packageLocation": "./.yarn/cache/@babel-parser-npm-7.24.0-0a438e924c-77593d0b9d.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.24.0"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-async-generators", [\
["npm:7.8.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-d13efb2828.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "npm:7.8.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-async-generators-virtual-4dd45ad051/0/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-d13efb2828.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-async-generators-virtual-7b0eaa11fc/0/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-d13efb2828.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-bigint", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-686891b81a.zip/node_modules/@babel/plugin-syntax-bigint/",\
"packageDependencies": [\
["@babel/plugin-syntax-bigint", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-bigint-virtual-862b69f60e/0/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-686891b81a.zip/node_modules/@babel/plugin-syntax-bigint/",\
"packageDependencies": [\
["@babel/plugin-syntax-bigint", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-bigint-virtual-9723a2f05b/0/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-686891b81a.zip/node_modules/@babel/plugin-syntax-bigint/",\
"packageDependencies": [\
["@babel/plugin-syntax-bigint", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-class-properties", [\
["npm:7.12.13", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-95168fa186.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "npm:7.12.13"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.12.13", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-properties-virtual-859e41c10a/0/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-95168fa186.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.12.13"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.12.13", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-properties-virtual-6a0084a48b/0/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-95168fa186.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.12.13"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-meta", [\
["npm:7.10.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-0b08b5e4c3.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-meta-virtual-93f3d6ee84/0/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-0b08b5e4c3.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.10.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-meta-virtual-db19ac28c2/0/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-0b08b5e4c3.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.10.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-json-strings", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-e98f31b2ec.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-json-strings-virtual-37d8b7f61f/0/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-e98f31b2ec.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-json-strings-virtual-08ccb0a5b4/0/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-e98f31b2ec.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-jsx", [\
["npm:7.23.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-jsx-npm-7.23.3-9ff8fd9153-563bb7599b.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "npm:7.23.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:15ef0a4ad61c166598c4d195dc64a0b7270b186e9a584ea25871b4181189fa5a61a49aa37f6bcda6ffed25499ff900f1a33224b0c22868c8eb1eaf1dd4f0dc11#npm:7.23.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-jsx-virtual-55a24092c0/0/cache/@babel-plugin-syntax-jsx-npm-7.23.3-9ff8fd9153-563bb7599b.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "virtual:15ef0a4ad61c166598c4d195dc64a0b7270b186e9a584ea25871b4181189fa5a61a49aa37f6bcda6ffed25499ff900f1a33224b0c22868c8eb1eaf1dd4f0dc11#npm:7.23.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-logical-assignment-operators", [\
["npm:7.10.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-2594cfbe29.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-logical-assignment-operators-virtual-242d1eeaf3/0/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-2594cfbe29.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.10.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-logical-assignment-operators-virtual-5a7c7f5ea1/0/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-2594cfbe29.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.10.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-nullish-coalescing-operator", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-2024fbb116.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-nullish-coalescing-operator-virtual-656f0dfb58/0/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-2024fbb116.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-nullish-coalescing-operator-virtual-591ce79f21/0/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-2024fbb116.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-numeric-separator", [\
["npm:7.10.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-c55a82b311.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-numeric-separator-virtual-6ad1963564/0/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-c55a82b311.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.10.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-numeric-separator-virtual-0a6a2e1be5/0/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-c55a82b311.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.10.4"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-object-rest-spread", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-ee1eab52ea.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-object-rest-spread-virtual-db1217f3c3/0/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-ee1eab52ea.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-object-rest-spread-virtual-e28e433ed4/0/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-ee1eab52ea.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-optional-catch-binding", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-27e2493ab6.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-catch-binding-virtual-b7cce6ef1b/0/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-27e2493ab6.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-catch-binding-virtual-351da83b97/0/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-27e2493ab6.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-optional-chaining", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-46edddf2fa.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-chaining-virtual-8727a0ddca/0/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-46edddf2fa.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-chaining-virtual-bacf3446c4/0/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-46edddf2fa.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.8.3"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-top-level-await", [\
["npm:7.14.5", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-14bf6e65d5.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-top-level-await-virtual-be82b866c1/0/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-14bf6e65d5.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "virtual:2688934cc7e660e97856997157a9753e2f9ab7c82aca370934cf6780d5bdcd8aaa26595d30bbb2fc6a5ac96a44cdc7127d50cb243557b3bf7c4e1960c2baace1#npm:7.14.5"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-top-level-await-virtual-e4f87462ae/0/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-14bf6e65d5.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "virtual:ba1c0e1ca64eb2d0239b3eed2dcd904b02bec7c388c425e832f80080c28047a34349bdf847af35395682a84967d8c0d3855919199454485ed09f8786b7299687#npm:7.14.5"],\
["@babel/core", "npm:7.24.0"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-typescript", [\
["npm:7.23.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-typescript-npm-7.23.3-d4e4d71527-4d6e9cdb9d.zip/node_modules/@babel/plugin-syntax-typescript/",\
"packageDependencies": [\
["@babel/plugin-syntax-typescript", "npm:7.23.3"]\
],\