forked from vanLesson/react-native-spotify-remote
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pnp.cjs
More file actions
executable file
·19493 lines (19397 loc) · 902 KB
/
.pnp.cjs
File metadata and controls
executable file
·19493 lines (19397 loc) · 902 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
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 */
// @ts-nocheck
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "@vinnybad/react-native-spotify-remote",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["@vinnybad/react-native-spotify-remote", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@release-it/keep-a-changelog", "virtual:8d49482738d31ca6e5cc8c75da6aff82ed354b1526cf56b07fde7c1d63c1762ee07bdb0999465d470512a8849bb8d319b359a0ce946dedf75f580a6378fced6d#npm:2.5.0"],\
["@rollup/plugin-json", "virtual:8d49482738d31ca6e5cc8c75da6aff82ed354b1526cf56b07fde7c1d63c1762ee07bdb0999465d470512a8849bb8d319b359a0ce946dedf75f580a6378fced6d#npm:6.1.0"],\
["@types/react-native", "npm:0.60.31"],\
["all-contributors-cli", "npm:6.26.1"],\
["concurrently", "npm:5.3.0"],\
["react-native", "virtual:8d49482738d31ca6e5cc8c75da6aff82ed354b1526cf56b07fde7c1d63c1762ee07bdb0999465d470512a8849bb8d319b359a0ce946dedf75f580a6378fced6d#npm:0.65.3"],\
["release-it", "npm:14.14.3"],\
["rollup", "npm:4.30.1"],\
["rollup-plugin-copy", "npm:3.5.0"],\
["rollup-plugin-folder-input", "npm:1.0.1"],\
["rollup-plugin-ts", "virtual:8d49482738d31ca6e5cc8c75da6aff82ed354b1526cf56b07fde7c1d63c1762ee07bdb0999465d470512a8849bb8d319b359a0ce946dedf75f580a6378fced6d#npm:3.4.5"],\
["typedoc", "virtual:8d49482738d31ca6e5cc8c75da6aff82ed354b1526cf56b07fde7c1d63c1762ee07bdb0999465d470512a8849bb8d319b359a0ce946dedf75f580a6378fced6d#npm:0.20.37"],\
["typescript", "patch:typescript@npm%3A5.7.3#optional!builtin<compat/typescript>::version=5.7.3&hash=5786d5"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@ampproject/remapping", [\
["npm:2.3.0", {\
"packageLocation": "../../.yarn/berry/cache/@ampproject-remapping-npm-2.3.0-559c14eee4-10c0.zip/node_modules/@ampproject/remapping/",\
"packageDependencies": [\
["@ampproject/remapping", "npm:2.3.0"],\
["@jridgewell/gen-mapping", "npm:0.3.8"],\
["@jridgewell/trace-mapping", "npm:0.3.25"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.26.2", {\
"packageLocation": "../../.yarn/berry/cache/@babel-code-frame-npm-7.26.2-4902b56813-10c0.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.26.2"],\
["@babel/helper-validator-identifier", "npm:7.25.9"],\
["js-tokens", "npm:4.0.0"],\
["picocolors", "npm:1.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/compat-data", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-compat-data-npm-7.26.5-b6047aeefb-10c0.zip/node_modules/@babel/compat-data/",\
"packageDependencies": [\
["@babel/compat-data", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/core", [\
["npm:7.26.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-core-npm-7.26.0-6f14d37f26-10c0.zip/node_modules/@babel/core/",\
"packageDependencies": [\
["@babel/core", "npm:7.26.0"],\
["@ampproject/remapping", "npm:2.3.0"],\
["@babel/code-frame", "npm:7.26.2"],\
["@babel/generator", "npm:7.26.5"],\
["@babel/helper-compilation-targets", "npm:7.26.5"],\
["@babel/helper-module-transforms", "virtual:6f14d37f26f87c55654e510172561c825f7eb822527d5aaba60d24913853c925a2338249715305c87baadd7e7b73f94aba8cb62d407d8bb26b18bd6b90ca945f#npm:7.26.0"],\
["@babel/helpers", "npm:7.26.0"],\
["@babel/parser", "npm:7.26.5"],\
["@babel/template", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@babel/types", "npm:7.26.5"],\
["convert-source-map", "npm:2.0.0"],\
["debug", "virtual:428f325a939c2653ad822eb3d75efb02ac311523dd0d4f9645afc39ea00bd86eceac35a9d59c9b6977d76b670a4ef0ae057ea572338a44729aa592711a8c05a3#npm:4.4.0"],\
["gensync", "npm:1.0.0-beta.2"],\
["json5", "npm:2.2.3"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/generator", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-generator-npm-7.26.5-8de063382c-10c0.zip/node_modules/@babel/generator/",\
"packageDependencies": [\
["@babel/generator", "npm:7.26.5"],\
["@babel/parser", "npm:7.26.5"],\
["@babel/types", "npm:7.26.5"],\
["@jridgewell/gen-mapping", "npm:0.3.8"],\
["@jridgewell/trace-mapping", "npm:0.3.25"],\
["jsesc", "npm:3.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-annotate-as-pure", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-annotate-as-pure-npm-7.25.9-a0f89e14a0-10c0.zip/node_modules/@babel/helper-annotate-as-pure/",\
"packageDependencies": [\
["@babel/helper-annotate-as-pure", "npm:7.25.9"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-compilation-targets", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-compilation-targets-npm-7.26.5-e3b4215b3c-10c0.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "npm:7.26.5"],\
["@babel/compat-data", "npm:7.26.5"],\
["@babel/helper-validator-option", "npm:7.25.9"],\
["browserslist", "npm:4.24.4"],\
["lru-cache", "npm:5.1.1"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-create-class-features-plugin", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-create-class-features-plugin-npm-7.25.9-1efda825e9-10c0.zip/node_modules/@babel/helper-create-class-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-class-features-plugin", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f209397eaa833de1e65ec677e921bc52966cb0b0cc9f867e2c6b8ba2c4838415e95e9db839b5216300fc770b9adedfa266135a3813d0bac0ae54795a3fae92dc#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-create-class-features-plugin-virtual-d13df4c896/3/.yarn/berry/cache/@babel-helper-create-class-features-plugin-npm-7.25.9-1efda825e9-10c0.zip/node_modules/@babel/helper-create-class-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-class-features-plugin", "virtual:f209397eaa833de1e65ec677e921bc52966cb0b0cc9f867e2c6b8ba2c4838415e95e9db839b5216300fc770b9adedfa266135a3813d0bac0ae54795a3fae92dc#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-annotate-as-pure", "npm:7.25.9"],\
["@babel/helper-member-expression-to-functions", "npm:7.25.9"],\
["@babel/helper-optimise-call-expression", "npm:7.25.9"],\
["@babel/helper-replace-supers", "virtual:d13df4c896403e578ee0bfe77025c41f0212ced4071d4578346aeaf9660222fd1e104a4917997feae901476b6c21b5352dd4e5ef42336d7d34bcde681a35cce3#npm:7.26.5"],\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@types/babel__core", null],\
["semver", "npm:6.3.1"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-create-regexp-features-plugin", [\
["npm:7.26.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-create-regexp-features-plugin-npm-7.26.3-834c0b262a-10c0.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "npm:7.26.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8d6994fd815442b315741d32209c884db017039aa82a9a84c7b09f04ab2d290ebd261a594429078c4780bd46037ce73fe5e5df00e21a3898aad85d5b107fc9da#npm:7.26.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-create-regexp-features-plugin-virtual-f493032626/3/.yarn/berry/cache/@babel-helper-create-regexp-features-plugin-npm-7.26.3-834c0b262a-10c0.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "virtual:8d6994fd815442b315741d32209c884db017039aa82a9a84c7b09f04ab2d290ebd261a594429078c4780bd46037ce73fe5e5df00e21a3898aad85d5b107fc9da#npm:7.26.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-annotate-as-pure", "npm:7.25.9"],\
["@types/babel__core", null],\
["regexpu-core", "npm:6.2.0"],\
["semver", "npm:6.3.1"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-define-polyfill-provider", [\
["npm:0.6.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-define-polyfill-provider-npm-0.6.3-211720cbc0-10c0.zip/node_modules/@babel/helper-define-polyfill-provider/",\
"packageDependencies": [\
["@babel/helper-define-polyfill-provider", "npm:0.6.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3e13d746020da0e0a68efe7758398b48d78273f51acb9596dab34069c8bb22e672be76dba2c26a54c6116b0ffbdc0e34b5f604ed817d7cd5bda9acc8ec0d11f3#npm:0.6.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-define-polyfill-provider-virtual-3d6714de07/3/.yarn/berry/cache/@babel-helper-define-polyfill-provider-npm-0.6.3-211720cbc0-10c0.zip/node_modules/@babel/helper-define-polyfill-provider/",\
"packageDependencies": [\
["@babel/helper-define-polyfill-provider", "virtual:3e13d746020da0e0a68efe7758398b48d78273f51acb9596dab34069c8bb22e672be76dba2c26a54c6116b0ffbdc0e34b5f604ed817d7cd5bda9acc8ec0d11f3#npm:0.6.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-compilation-targets", "npm:7.26.5"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null],\
["debug", "virtual:428f325a939c2653ad822eb3d75efb02ac311523dd0d4f9645afc39ea00bd86eceac35a9d59c9b6977d76b670a4ef0ae057ea572338a44729aa592711a8c05a3#npm:4.4.0"],\
["lodash.debounce", "npm:4.0.8"],\
["resolve", "patch:resolve@npm%3A1.22.10#optional!builtin<compat/resolve>::version=1.22.10&hash=c3c19d"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-member-expression-to-functions", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-member-expression-to-functions-npm-7.25.9-761e6fec27-10c0.zip/node_modules/@babel/helper-member-expression-to-functions/",\
"packageDependencies": [\
["@babel/helper-member-expression-to-functions", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-imports", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-module-imports-npm-7.25.9-b86e31bde9-10c0.zip/node_modules/@babel/helper-module-imports/",\
"packageDependencies": [\
["@babel/helper-module-imports", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-transforms", [\
["npm:7.26.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-module-transforms-npm-7.26.0-7557a3558f-10c0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "npm:7.26.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:6f14d37f26f87c55654e510172561c825f7eb822527d5aaba60d24913853c925a2338249715305c87baadd7e7b73f94aba8cb62d407d8bb26b18bd6b90ca945f#npm:7.26.0", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-5ddb520440/3/.yarn/berry/cache/@babel-helper-module-transforms-npm-7.26.0-7557a3558f-10c0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "virtual:6f14d37f26f87c55654e510172561c825f7eb822527d5aaba60d24913853c925a2338249715305c87baadd7e7b73f94aba8cb62d407d8bb26b18bd6b90ca945f#npm:7.26.0"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-module-imports", "npm:7.25.9"],\
["@babel/helper-validator-identifier", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-optimise-call-expression", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-optimise-call-expression-npm-7.25.9-d8006fbada-10c0.zip/node_modules/@babel/helper-optimise-call-expression/",\
"packageDependencies": [\
["@babel/helper-optimise-call-expression", "npm:7.25.9"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-plugin-utils", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-plugin-utils-npm-7.26.5-f9c17c9880-10c0.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-remap-async-to-generator", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-remap-async-to-generator-npm-7.25.9-80702863ff-10c0.zip/node_modules/@babel/helper-remap-async-to-generator/",\
"packageDependencies": [\
["@babel/helper-remap-async-to-generator", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:06581bbd19fff86acb33a73d96b419525e538e8c28bf99ebeca136a640babe8efccaaa22f4e0bd2cd3e5b1b9ab7836fecfc38ebdff1289f7cc7ab103c4dc5019#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-remap-async-to-generator-virtual-de56c57099/3/.yarn/berry/cache/@babel-helper-remap-async-to-generator-npm-7.25.9-80702863ff-10c0.zip/node_modules/@babel/helper-remap-async-to-generator/",\
"packageDependencies": [\
["@babel/helper-remap-async-to-generator", "virtual:06581bbd19fff86acb33a73d96b419525e538e8c28bf99ebeca136a640babe8efccaaa22f4e0bd2cd3e5b1b9ab7836fecfc38ebdff1289f7cc7ab103c4dc5019#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-annotate-as-pure", "npm:7.25.9"],\
["@babel/helper-wrap-function", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-replace-supers", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-replace-supers-npm-7.26.5-4b002f04c0-10c0.zip/node_modules/@babel/helper-replace-supers/",\
"packageDependencies": [\
["@babel/helper-replace-supers", "npm:7.26.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:d13df4c896403e578ee0bfe77025c41f0212ced4071d4578346aeaf9660222fd1e104a4917997feae901476b6c21b5352dd4e5ef42336d7d34bcde681a35cce3#npm:7.26.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-replace-supers-virtual-fad737f113/3/.yarn/berry/cache/@babel-helper-replace-supers-npm-7.26.5-4b002f04c0-10c0.zip/node_modules/@babel/helper-replace-supers/",\
"packageDependencies": [\
["@babel/helper-replace-supers", "virtual:d13df4c896403e578ee0bfe77025c41f0212ced4071d4578346aeaf9660222fd1e104a4917997feae901476b6c21b5352dd4e5ef42336d7d34bcde681a35cce3#npm:7.26.5"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-member-expression-to-functions", "npm:7.25.9"],\
["@babel/helper-optimise-call-expression", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-skip-transparent-expression-wrappers", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-skip-transparent-expression-wrappers-npm-7.25.9-215072fae0-10c0.zip/node_modules/@babel/helper-skip-transparent-expression-wrappers/",\
"packageDependencies": [\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-string-parser", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-string-parser-npm-7.25.9-eade578078-10c0.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.25.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.25.9-2634b947a4-10c0.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.25.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-option", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-validator-option-npm-7.25.9-6450027d5d-10c0.zip/node_modules/@babel/helper-validator-option/",\
"packageDependencies": [\
["@babel/helper-validator-option", "npm:7.25.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-wrap-function", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-wrap-function-npm-7.25.9-bbd361fe46-10c0.zip/node_modules/@babel/helper-wrap-function/",\
"packageDependencies": [\
["@babel/helper-wrap-function", "npm:7.25.9"],\
["@babel/template", "npm:7.25.9"],\
["@babel/traverse", "npm:7.26.5"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helpers", [\
["npm:7.26.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helpers-npm-7.26.0-d7ff09b837-10c0.zip/node_modules/@babel/helpers/",\
"packageDependencies": [\
["@babel/helpers", "npm:7.26.0"],\
["@babel/template", "npm:7.25.9"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/parser", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-parser-npm-7.26.5-2514b2b265-10c0.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.26.5"],\
["@babel/types", "npm:7.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-class-properties", [\
["npm:7.18.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-proposal-class-properties-npm-7.18.6-5f5c2d730f-10c0.zip/node_modules/@babel/plugin-proposal-class-properties/",\
"packageDependencies": [\
["@babel/plugin-proposal-class-properties", "npm:7.18.6"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.18.6", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-class-properties-virtual-f209397eaa/3/.yarn/berry/cache/@babel-plugin-proposal-class-properties-npm-7.18.6-5f5c2d730f-10c0.zip/node_modules/@babel/plugin-proposal-class-properties/",\
"packageDependencies": [\
["@babel/plugin-proposal-class-properties", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.18.6"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-create-class-features-plugin", "virtual:f209397eaa833de1e65ec677e921bc52966cb0b0cc9f867e2c6b8ba2c4838415e95e9db839b5216300fc770b9adedfa266135a3813d0bac0ae54795a3fae92dc#npm:7.25.9"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-export-default-from", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-proposal-export-default-from-npm-7.25.9-87886272cf-10c0.zip/node_modules/@babel/plugin-proposal-export-default-from/",\
"packageDependencies": [\
["@babel/plugin-proposal-export-default-from", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-export-default-from-virtual-57f63604a1/3/.yarn/berry/cache/@babel-plugin-proposal-export-default-from-npm-7.25.9-87886272cf-10c0.zip/node_modules/@babel/plugin-proposal-export-default-from/",\
"packageDependencies": [\
["@babel/plugin-proposal-export-default-from", "virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-nullish-coalescing-operator", [\
["npm:7.18.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-proposal-nullish-coalescing-operator-npm-7.18.6-cf22ea8526-10c0.zip/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-proposal-nullish-coalescing-operator", "npm:7.18.6"]\
],\
"linkType": "SOFT"\
}],\
["virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.18.6", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-nullish-coalescing-operator-virtual-8a8219ab07/3/.yarn/berry/cache/@babel-plugin-proposal-nullish-coalescing-operator-npm-7.18.6-cf22ea8526-10c0.zip/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-proposal-nullish-coalescing-operator", "virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.18.6"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:8a8219ab078da0f023306bb7c99f9aafb838d766164d3a5ac3dc2f848f8d7404714d16dbcabce5dffe9dd0d66c5ea79ad951df206a844d139bb703b1c2854154#npm:7.8.3"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-object-rest-spread", [\
["npm:7.20.7", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-proposal-object-rest-spread-npm-7.20.7-0bc581aa09-10c0.zip/node_modules/@babel/plugin-proposal-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-proposal-object-rest-spread", "npm:7.20.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.20.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-object-rest-spread-virtual-f34439ba7a/3/.yarn/berry/cache/@babel-plugin-proposal-object-rest-spread-npm-7.20.7-0bc581aa09-10c0.zip/node_modules/@babel/plugin-proposal-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-proposal-object-rest-spread", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.20.7"],\
["@babel/compat-data", "npm:7.26.5"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-compilation-targets", "npm:7.26.5"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/plugin-syntax-object-rest-spread", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.8.3"],\
["@babel/plugin-transform-parameters", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-optional-catch-binding", [\
["npm:7.18.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-proposal-optional-catch-binding-npm-7.18.6-a4235a25be-10c0.zip/node_modules/@babel/plugin-proposal-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-proposal-optional-catch-binding", "npm:7.18.6"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.18.6", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-optional-catch-binding-virtual-3367174496/3/.yarn/berry/cache/@babel-plugin-proposal-optional-catch-binding-npm-7.18.6-a4235a25be-10c0.zip/node_modules/@babel/plugin-proposal-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-proposal-optional-catch-binding", "virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.18.6"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/plugin-syntax-optional-catch-binding", "virtual:3367174496947ac4bf4693fcc6cdfafdfcca4021677f2f13713eb5c83bad139e6bf1a84e64fc6289f922590f61f90ae992c826ab93acfa059fb1bf6a357a4544#npm:7.8.3"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-optional-chaining", [\
["npm:7.21.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-proposal-optional-chaining-npm-7.21.0-cdbb1b2888-10c0.zip/node_modules/@babel/plugin-proposal-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-proposal-optional-chaining", "npm:7.21.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.21.0", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-optional-chaining-virtual-68f1d67f21/3/.yarn/berry/cache/@babel-plugin-proposal-optional-chaining-npm-7.21.0-cdbb1b2888-10c0.zip/node_modules/@babel/plugin-proposal-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-proposal-optional-chaining", "virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.21.0"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.25.9"],\
["@babel/plugin-syntax-optional-chaining", "virtual:68f1d67f219266851d6b4c25b3fed380fc10a21021831b66f1b9e0fb9c729e979ad54ec0e577ebc5ad79abbe9f66f2dff9fdd11b37deae37cebb2e34e9e13f36#npm:7.8.3"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-class-properties", [\
["npm:7.12.13", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-10c0.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "npm:7.12.13"]\
],\
"linkType": "SOFT"\
}],\
["virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.12.13", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-properties-virtual-977d1eb913/3/.yarn/berry/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-10c0.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.12.13"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-dynamic-import", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-10c0.zip/node_modules/@babel/plugin-syntax-dynamic-import/",\
"packageDependencies": [\
["@babel/plugin-syntax-dynamic-import", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-dynamic-import-virtual-5c11a95190/3/.yarn/berry/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-10c0.zip/node_modules/@babel/plugin-syntax-dynamic-import/",\
"packageDependencies": [\
["@babel/plugin-syntax-dynamic-import", "virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.8.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-export-default-from", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-export-default-from-npm-7.25.9-bcc7469ae3-10c0.zip/node_modules/@babel/plugin-syntax-export-default-from/",\
"packageDependencies": [\
["@babel/plugin-syntax-export-default-from", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-export-default-from-virtual-abf7b4efa2/3/.yarn/berry/cache/@babel-plugin-syntax-export-default-from-npm-7.25.9-bcc7469ae3-10c0.zip/node_modules/@babel/plugin-syntax-export-default-from/",\
"packageDependencies": [\
["@babel/plugin-syntax-export-default-from", "virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-flow", [\
["npm:7.26.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-flow-npm-7.26.0-98ef2f73ff-10c0.zip/node_modules/@babel/plugin-syntax-flow/",\
"packageDependencies": [\
["@babel/plugin-syntax-flow", "npm:7.26.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:6d36b6583f0367c047ee0ea1f58d2202e8e26a5e699318cc28ac760a5e332845a7c7b8f839f71d154b45deec4da6dcd3280764eccf3500dda72773e6135de1d2#npm:7.26.0", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-flow-virtual-7b883d97d2/3/.yarn/berry/cache/@babel-plugin-syntax-flow-npm-7.26.0-98ef2f73ff-10c0.zip/node_modules/@babel/plugin-syntax-flow/",\
"packageDependencies": [\
["@babel/plugin-syntax-flow", "virtual:6d36b6583f0367c047ee0ea1f58d2202e8e26a5e699318cc28ac760a5e332845a7c7b8f839f71d154b45deec4da6dcd3280764eccf3500dda72773e6135de1d2#npm:7.26.0"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-jsx", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.25.9-3df022f433-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-jsx-virtual-e91ad4bf78/3/.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.25.9-3df022f433-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-nullish-coalescing-operator", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-10c0.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8a8219ab078da0f023306bb7c99f9aafb838d766164d3a5ac3dc2f848f8d7404714d16dbcabce5dffe9dd0d66c5ea79ad951df206a844d139bb703b1c2854154#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-nullish-coalescing-operator-virtual-6b951c8e07/3/.yarn/berry/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-10c0.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:8a8219ab078da0f023306bb7c99f9aafb838d766164d3a5ac3dc2f848f8d7404714d16dbcabce5dffe9dd0d66c5ea79ad951df206a844d139bb703b1c2854154#npm:7.8.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-object-rest-spread", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-10c0.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-object-rest-spread-virtual-93c6dc7144/3/.yarn/berry/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-10c0.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.8.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-optional-catch-binding", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-10c0.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3367174496947ac4bf4693fcc6cdfafdfcca4021677f2f13713eb5c83bad139e6bf1a84e64fc6289f922590f61f90ae992c826ab93acfa059fb1bf6a357a4544#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-catch-binding-virtual-1281716a08/3/.yarn/berry/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-10c0.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "virtual:3367174496947ac4bf4693fcc6cdfafdfcca4021677f2f13713eb5c83bad139e6bf1a84e64fc6289f922590f61f90ae992c826ab93acfa059fb1bf6a357a4544#npm:7.8.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-optional-chaining", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-10c0.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:68f1d67f219266851d6b4c25b3fed380fc10a21021831b66f1b9e0fb9c729e979ad54ec0e577ebc5ad79abbe9f66f2dff9fdd11b37deae37cebb2e34e9e13f36#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-chaining-virtual-d0a25b3911/3/.yarn/berry/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-10c0.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "virtual:68f1d67f219266851d6b4c25b3fed380fc10a21021831b66f1b9e0fb9c729e979ad54ec0e577ebc5ad79abbe9f66f2dff9fdd11b37deae37cebb2e34e9e13f36#npm:7.8.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-typescript", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-typescript-npm-7.25.9-5201e4ba77-10c0.zip/node_modules/@babel/plugin-syntax-typescript/",\
"packageDependencies": [\
["@babel/plugin-syntax-typescript", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a624a3dfc67b753dc151c56cc8f59f84af1c2a514066e632781881f7251a1ecc16477316e4e3ce5ba21b2297451984f06339143637bc98eb4c873264677ebc99#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-typescript-virtual-7b2d133511/3/.yarn/berry/cache/@babel-plugin-syntax-typescript-npm-7.25.9-5201e4ba77-10c0.zip/node_modules/@babel/plugin-syntax-typescript/",\
"packageDependencies": [\
["@babel/plugin-syntax-typescript", "virtual:a624a3dfc67b753dc151c56cc8f59f84af1c2a514066e632781881f7251a1ecc16477316e4e3ce5ba21b2297451984f06339143637bc98eb4c873264677ebc99#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-arrow-functions", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-arrow-functions-npm-7.25.9-ececb64a8c-10c0.zip/node_modules/@babel/plugin-transform-arrow-functions/",\
"packageDependencies": [\
["@babel/plugin-transform-arrow-functions", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-arrow-functions-virtual-4e87a57397/3/.yarn/berry/cache/@babel-plugin-transform-arrow-functions-npm-7.25.9-ececb64a8c-10c0.zip/node_modules/@babel/plugin-transform-arrow-functions/",\
"packageDependencies": [\
["@babel/plugin-transform-arrow-functions", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-async-to-generator", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-async-to-generator-npm-7.25.9-ebececf71e-10c0.zip/node_modules/@babel/plugin-transform-async-to-generator/",\
"packageDependencies": [\
["@babel/plugin-transform-async-to-generator", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-async-to-generator-virtual-06581bbd19/3/.yarn/berry/cache/@babel-plugin-transform-async-to-generator-npm-7.25.9-ebececf71e-10c0.zip/node_modules/@babel/plugin-transform-async-to-generator/",\
"packageDependencies": [\
["@babel/plugin-transform-async-to-generator", "virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-module-imports", "npm:7.25.9"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/helper-remap-async-to-generator", "virtual:06581bbd19fff86acb33a73d96b419525e538e8c28bf99ebeca136a640babe8efccaaa22f4e0bd2cd3e5b1b9ab7836fecfc38ebdff1289f7cc7ab103c4dc5019#npm:7.25.9"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-block-scoped-functions", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-block-scoped-functions-npm-7.26.5-279e722607-10c0.zip/node_modules/@babel/plugin-transform-block-scoped-functions/",\
"packageDependencies": [\
["@babel/plugin-transform-block-scoped-functions", "npm:7.26.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.26.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-block-scoped-functions-virtual-64b1533484/3/.yarn/berry/cache/@babel-plugin-transform-block-scoped-functions-npm-7.26.5-279e722607-10c0.zip/node_modules/@babel/plugin-transform-block-scoped-functions/",\
"packageDependencies": [\
["@babel/plugin-transform-block-scoped-functions", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.26.5"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-block-scoping", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-block-scoping-npm-7.25.9-f2efaa9ad7-10c0.zip/node_modules/@babel/plugin-transform-block-scoping/",\
"packageDependencies": [\
["@babel/plugin-transform-block-scoping", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-block-scoping-virtual-50dc05c5c1/3/.yarn/berry/cache/@babel-plugin-transform-block-scoping-npm-7.25.9-f2efaa9ad7-10c0.zip/node_modules/@babel/plugin-transform-block-scoping/",\
"packageDependencies": [\
["@babel/plugin-transform-block-scoping", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-classes", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-classes-npm-7.25.9-2d606dd6e7-10c0.zip/node_modules/@babel/plugin-transform-classes/",\
"packageDependencies": [\
["@babel/plugin-transform-classes", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-classes-virtual-f437e5af06/3/.yarn/berry/cache/@babel-plugin-transform-classes-npm-7.25.9-2d606dd6e7-10c0.zip/node_modules/@babel/plugin-transform-classes/",\
"packageDependencies": [\
["@babel/plugin-transform-classes", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-annotate-as-pure", "npm:7.25.9"],\
["@babel/helper-compilation-targets", "npm:7.26.5"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/helper-replace-supers", "virtual:d13df4c896403e578ee0bfe77025c41f0212ced4071d4578346aeaf9660222fd1e104a4917997feae901476b6c21b5352dd4e5ef42336d7d34bcde681a35cce3#npm:7.26.5"],\
["@babel/traverse", "npm:7.26.5"],\
["@types/babel__core", null],\
["globals", "npm:11.12.0"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-computed-properties", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-computed-properties-npm-7.25.9-4f0be3122f-10c0.zip/node_modules/@babel/plugin-transform-computed-properties/",\
"packageDependencies": [\
["@babel/plugin-transform-computed-properties", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-computed-properties-virtual-ab36de2769/3/.yarn/berry/cache/@babel-plugin-transform-computed-properties-npm-7.25.9-4f0be3122f-10c0.zip/node_modules/@babel/plugin-transform-computed-properties/",\
"packageDependencies": [\
["@babel/plugin-transform-computed-properties", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/template", "npm:7.25.9"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-destructuring", [\
["npm:7.25.9", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-destructuring-npm-7.25.9-4d0defa886-10c0.zip/node_modules/@babel/plugin-transform-destructuring/",\
"packageDependencies": [\
["@babel/plugin-transform-destructuring", "npm:7.25.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-destructuring-virtual-ae48edfc5d/3/.yarn/berry/cache/@babel-plugin-transform-destructuring-npm-7.25.9-4d0defa886-10c0.zip/node_modules/@babel/plugin-transform-destructuring/",\
"packageDependencies": [\
["@babel/plugin-transform-destructuring", "virtual:f6b04915e65103739941215d7cdfdd3ca0afa37f4d88f8c19c2b876f8b83db1369391706a402f7adf695c7c0b8a921b599c4a3aa5b229e466cfda7c12d265afb#npm:7.25.9"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-exponentiation-operator", [\
["npm:7.26.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-exponentiation-operator-npm-7.26.3-20f97fba79-10c0.zip/node_modules/@babel/plugin-transform-exponentiation-operator/",\
"packageDependencies": [\
["@babel/plugin-transform-exponentiation-operator", "npm:7.26.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.26.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-exponentiation-operator-virtual-dbe038376b/3/.yarn/berry/cache/@babel-plugin-transform-exponentiation-operator-npm-7.26.3-20f97fba79-10c0.zip/node_modules/@babel/plugin-transform-exponentiation-operator/",\
"packageDependencies": [\
["@babel/plugin-transform-exponentiation-operator", "virtual:a64b896d060885143560a0b6f6a1704d02453d516e8e68f0e50e8f20e6eb4708d453cf306494b0f0bd37bcae1966ba5ea99574489fc227a39460bb5bb75e83fd#npm:7.26.3"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-flow-strip-types", [\
["npm:7.26.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-transform-flow-strip-types-npm-7.26.5-4d12d07b46-10c0.zip/node_modules/@babel/plugin-transform-flow-strip-types/",\
"packageDependencies": [\
["@babel/plugin-transform-flow-strip-types", "npm:7.26.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.26.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-flow-strip-types-virtual-6d36b6583f/3/.yarn/berry/cache/@babel-plugin-transform-flow-strip-types-npm-7.26.5-4d12d07b46-10c0.zip/node_modules/@babel/plugin-transform-flow-strip-types/",\
"packageDependencies": [\
["@babel/plugin-transform-flow-strip-types", "virtual:ba8aecd63d4d7b1b13a199d4dcca3306fc0244f4b95ba87e8c65acd6fd443f4588a81fb833db7ead1a339c77555946e7b4e8171175c2c268539b7705dc558ba7#npm:7.26.5"],\
["@babel/core", "npm:7.26.0"],\
["@babel/helper-plugin-utils", "npm:7.26.5"],\
["@babel/plugin-syntax-flow", "virtual:6d36b6583f0367c047ee0ea1f58d2202e8e26a5e699318cc28ac760a5e332845a7c7b8f839f71d154b45deec4da6dcd3280764eccf3500dda72773e6135de1d2#npm:7.26.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\