-
Notifications
You must be signed in to change notification settings - Fork 5
/
.pnp.cjs
executable file
·14415 lines (14319 loc) · 704 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 */
// @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": "@typoas/monorepo",\
"reference": "workspace:."\
},\
{\
"name": "@typoas/examples",\
"reference": "workspace:examples"\
},\
{\
"name": "@typoas/cli",\
"reference": "workspace:packages/typoas-cli"\
},\
{\
"name": "@typoas/generator",\
"reference": "workspace:packages/typoas-generator"\
},\
{\
"name": "@typoas/react-query",\
"reference": "workspace:packages/typoas-react-query"\
},\
{\
"name": "@typoas/runtime",\
"reference": "workspace:packages/typoas-runtime"\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["@typoas/cli", ["workspace:packages/typoas-cli"]],\
["@typoas/examples", ["workspace:examples"]],\
["@typoas/generator", ["workspace:packages/typoas-generator"]],\
["@typoas/monorepo", ["workspace:."]],\
["@typoas/react-query", ["workspace:packages/typoas-react-query"]],\
["@typoas/runtime", ["workspace:packages/typoas-runtime"]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@eslint/js", "npm:9.9.0"],\
["@types/eslint", "npm:9.6.0"],\
["@types/eslint__js", "npm:8.42.3"],\
["@types/node", "npm:20.16.1"],\
["eslint", "virtual:48fee137fa33c8f0de4fd5104a43dfda11883d6ea37de0971b7ca50c6f708eda94d2b98e394bfd82390d629d459defee914b35b8bfa8314da1dfab12afdece9b#npm:9.9.0"],\
["eslint-plugin-jest", "virtual:48fee137fa33c8f0de4fd5104a43dfda11883d6ea37de0971b7ca50c6f708eda94d2b98e394bfd82390d629d459defee914b35b8bfa8314da1dfab12afdece9b#npm:28.8.0"],\
["prettier", "npm:3.3.3"],\
["typescript", "patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>::version=5.5.4&hash=379a07"],\
["typescript-eslint", "virtual:48fee137fa33c8f0de4fd5104a43dfda11883d6ea37de0971b7ca50c6f708eda94d2b98e394bfd82390d629d459defee914b35b8bfa8314da1dfab12afdece9b#npm:8.2.0"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@ampproject/remapping", [\
["npm:2.3.0", {\
"packageLocation": "./.yarn/cache/@ampproject-remapping-npm-2.3.0-559c14eee4-f345152537.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"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.24.7-315a600a58-4812e94885.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.24.7"],\
["@babel/highlight", "npm:7.24.7"],\
["picocolors", "npm:1.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/compat-data", [\
["npm:7.25.2", {\
"packageLocation": "./.yarn/cache/@babel-compat-data-npm-7.25.2-119057710e-fd61de9303.zip/node_modules/@babel/compat-data/",\
"packageDependencies": [\
["@babel/compat-data", "npm:7.25.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/core", [\
["npm:7.25.2", {\
"packageLocation": "./.yarn/cache/@babel-core-npm-7.25.2-341930f809-0d6ec10ff4.zip/node_modules/@babel/core/",\
"packageDependencies": [\
["@babel/core", "npm:7.25.2"],\
["@ampproject/remapping", "npm:2.3.0"],\
["@babel/code-frame", "npm:7.24.7"],\
["@babel/generator", "npm:7.25.0"],\
["@babel/helper-compilation-targets", "npm:7.25.2"],\
["@babel/helper-module-transforms", "virtual:341930f80996f4b1e479f0ee33257969b2165bf70992bcc76aa889af20d1c39a2bfc637461175a3ea65d6c75949d04c5fd87140f3b91c8912352de080c45e357#npm:7.25.2"],\
["@babel/helpers", "npm:7.25.0"],\
["@babel/parser", "npm:7.25.3"],\
["@babel/template", "npm:7.25.0"],\
["@babel/traverse", "npm:7.25.3"],\
["@babel/types", "npm:7.25.2"],\
["convert-source-map", "npm:2.0.0"],\
["debug", "virtual:7135eb10304abebeefd0e757e861bf034aa6b0abbb538bb12a8494e51000b5a4e104d60761905dfeea217c71693ad682ad3336c2f1f24e047f5979fcf7d9a389#npm:4.3.6"],\
["gensync", "npm:1.0.0-beta.2"],\
["json5", "npm:2.2.3"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/generator", [\
["npm:7.25.0", {\
"packageLocation": "./.yarn/cache/@babel-generator-npm-7.25.0-4bba208756-de3ce2ae7a.zip/node_modules/@babel/generator/",\
"packageDependencies": [\
["@babel/generator", "npm:7.25.0"],\
["@babel/types", "npm:7.25.2"],\
["@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.25.2", {\
"packageLocation": "./.yarn/cache/@babel-helper-compilation-targets-npm-7.25.2-27e0232144-eccb2d7592.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "npm:7.25.2"],\
["@babel/compat-data", "npm:7.25.2"],\
["@babel/helper-validator-option", "npm:7.24.8"],\
["browserslist", "npm:4.23.3"],\
["lru-cache", "npm:5.1.1"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-imports", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-module-imports-npm-7.24.7-f60e66adbf-df8bfb2bb1.zip/node_modules/@babel/helper-module-imports/",\
"packageDependencies": [\
["@babel/helper-module-imports", "npm:7.24.7"],\
["@babel/traverse", "npm:7.25.3"],\
["@babel/types", "npm:7.25.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-transforms", [\
["npm:7.25.2", {\
"packageLocation": "./.yarn/cache/@babel-helper-module-transforms-npm-7.25.2-2c8d511580-a3bcf7815f.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "npm:7.25.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:341930f80996f4b1e479f0ee33257969b2165bf70992bcc76aa889af20d1c39a2bfc637461175a3ea65d6c75949d04c5fd87140f3b91c8912352de080c45e357#npm:7.25.2", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-b14538d1e7/0/cache/@babel-helper-module-transforms-npm-7.25.2-2c8d511580-a3bcf7815f.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "virtual:341930f80996f4b1e479f0ee33257969b2165bf70992bcc76aa889af20d1c39a2bfc637461175a3ea65d6c75949d04c5fd87140f3b91c8912352de080c45e357#npm:7.25.2"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-module-imports", "npm:7.24.7"],\
["@babel/helper-simple-access", "npm:7.24.7"],\
["@babel/helper-validator-identifier", "npm:7.24.7"],\
["@babel/traverse", "npm:7.25.3"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-plugin-utils", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-plugin-utils-npm-7.24.8-a288f101a7-adbc9fc114.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.24.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-simple-access", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-simple-access-npm-7.24.7-beddd00b0e-5083e19018.zip/node_modules/@babel/helper-simple-access/",\
"packageDependencies": [\
["@babel/helper-simple-access", "npm:7.24.7"],\
["@babel/traverse", "npm:7.25.3"],\
["@babel/types", "npm:7.25.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-string-parser", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-string-parser-npm-7.24.8-133b2e71e1-6d1bf8f27d.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.24.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.24.7-748889c8d2-86875063f5.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.24.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-option", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-option-npm-7.24.8-e093ef5016-a52442dfa7.zip/node_modules/@babel/helper-validator-option/",\
"packageDependencies": [\
["@babel/helper-validator-option", "npm:7.24.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helpers", [\
["npm:7.25.0", {\
"packageLocation": "./.yarn/cache/@babel-helpers-npm-7.25.0-f552d9aaf3-4fcb8167eb.zip/node_modules/@babel/helpers/",\
"packageDependencies": [\
["@babel/helpers", "npm:7.25.0"],\
["@babel/template", "npm:7.25.0"],\
["@babel/types", "npm:7.25.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/highlight", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-highlight-npm-7.24.7-d792bd8d9f-69b73f38cd.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.24.7"],\
["@babel/helper-validator-identifier", "npm:7.24.7"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"],\
["picocolors", "npm:1.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/parser", [\
["npm:7.25.3", {\
"packageLocation": "./.yarn/cache/@babel-parser-npm-7.25.3-e33bb4a0e6-7bd57e8911.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.25.3"],\
["@babel/types", "npm:7.25.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-async-generators", [\
["npm:7.8.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "npm:7.8.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-async-generators-virtual-993f7fd03e/0/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-async-generators-virtual-2f9e3be0f1/0/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-3a10849d83.zip/node_modules/@babel/plugin-syntax-bigint/",\
"packageDependencies": [\
["@babel/plugin-syntax-bigint", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-bigint-virtual-58d7bec2f4/0/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-3a10849d83.zip/node_modules/@babel/plugin-syntax-bigint/",\
"packageDependencies": [\
["@babel/plugin-syntax-bigint", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-bigint-virtual-b32265f248/0/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-3a10849d83.zip/node_modules/@babel/plugin-syntax-bigint/",\
"packageDependencies": [\
["@babel/plugin-syntax-bigint", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-24f34b196d.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "npm:7.12.13"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.12.13", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-properties-virtual-7c6db10d10/0/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-24f34b196d.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.12.13"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.12.13", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-properties-virtual-b886aacf38/0/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-24f34b196d.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.12.13"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-class-static-block", [\
["npm:7.14.5", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-3e80814b5b.zip/node_modules/@babel/plugin-syntax-class-static-block/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-static-block", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-static-block-virtual-bde8a43daf/0/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-3e80814b5b.zip/node_modules/@babel/plugin-syntax-class-static-block/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-static-block", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.14.5"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-static-block-virtual-d654e2f96f/0/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-3e80814b5b.zip/node_modules/@babel/plugin-syntax-class-static-block/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-static-block", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.14.5"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-attributes", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-import-attributes-npm-7.24.7-6101aa2bfb-22fc50bd85.zip/node_modules/@babel/plugin-syntax-import-attributes/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-attributes", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-attributes-virtual-d2a5c53ced/0/cache/@babel-plugin-syntax-import-attributes-npm-7.24.7-6101aa2bfb-22fc50bd85.zip/node_modules/@babel/plugin-syntax-import-attributes/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-attributes", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.24.7"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-attributes-virtual-b41da0956f/0/cache/@babel-plugin-syntax-import-attributes-npm-7.24.7-6101aa2bfb-22fc50bd85.zip/node_modules/@babel/plugin-syntax-import-attributes/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-attributes", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.24.7"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-166ac1125d.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-meta-virtual-0f69c506d3/0/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-166ac1125d.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.10.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-meta-virtual-e3b35d3ce5/0/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-166ac1125d.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.10.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-bf5aea1f31.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-json-strings-virtual-070ad1091b/0/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-bf5aea1f31.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-json-strings-virtual-331b057f71/0/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-bf5aea1f31.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-jsx", [\
["npm:7.18.6", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-jsx-npm-7.18.6-3e378d5f11-6d37ea9729.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "npm:7.18.6"]\
],\
"linkType": "SOFT"\
}],\
["virtual:15ef0a4ad61c166598c4d195dc64a0b7270b186e9a584ea25871b4181189fa5a61a49aa37f6bcda6ffed25499ff900f1a33224b0c22868c8eb1eaf1dd4f0dc11#npm:7.18.6", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-jsx-virtual-921fb75805/0/cache/@babel-plugin-syntax-jsx-npm-7.18.6-3e378d5f11-6d37ea9729.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "virtual:15ef0a4ad61c166598c4d195dc64a0b7270b186e9a584ea25871b4181189fa5a61a49aa37f6bcda6ffed25499ff900f1a33224b0c22868c8eb1eaf1dd4f0dc11#npm:7.18.6"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@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-aff3357703.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-logical-assignment-operators-virtual-ff68e11bd5/0/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-aff3357703.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.10.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-logical-assignment-operators-virtual-09d43a6c1c/0/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-aff3357703.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.10.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-87aca49189.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-nullish-coalescing-operator-virtual-383b231c23/0/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-87aca49189.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-nullish-coalescing-operator-virtual-fab1df0fb9/0/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-87aca49189.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-01ec5547bd.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-numeric-separator-virtual-a60ecf78fb/0/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-01ec5547bd.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.10.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-numeric-separator-virtual-a64f68cb8d/0/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-01ec5547bd.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.10.4"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-fddcf581a5.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-object-rest-spread-virtual-0311abb51d/0/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-fddcf581a5.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-object-rest-spread-virtual-6ca9def66e/0/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-fddcf581a5.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-910d90e72b.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-catch-binding-virtual-d5627250c6/0/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-910d90e72b.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-catch-binding-virtual-f2f34eeb37/0/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-910d90e72b.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-eef94d53a1.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-chaining-virtual-a53e18a8d9/0/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-eef94d53a1.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-chaining-virtual-5e83633079/0/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-eef94d53a1.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.8.3"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-private-property-in-object", [\
["npm:7.14.5", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-private-property-in-object-npm-7.14.5-ee837fdbb2-b317174783.zip/node_modules/@babel/plugin-syntax-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-syntax-private-property-in-object", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-private-property-in-object-virtual-9c5d44fe2f/0/cache/@babel-plugin-syntax-private-property-in-object-npm-7.14.5-ee837fdbb2-b317174783.zip/node_modules/@babel/plugin-syntax-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-syntax-private-property-in-object", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.14.5"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-private-property-in-object-virtual-2dc70cb5ac/0/cache/@babel-plugin-syntax-private-property-in-object-npm-7.14.5-ee837fdbb2-b317174783.zip/node_modules/@babel/plugin-syntax-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-syntax-private-property-in-object", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.14.5"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"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-bbd1a56b09.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-top-level-await-virtual-245beac28c/0/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-bbd1a56b09.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "virtual:56983eadc3c47b8ff78947bf83bf74beaf98595aa1663469b8284ac81b75ed2a46043c0f61e9ddb974a8fecf3bb0c5cce07c960d63c698b865f157e5cd64d225#npm:7.14.5"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-top-level-await-virtual-9c09fa0b2f/0/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-bbd1a56b09.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "virtual:b2f025ec7fd28323276122c20463f2e598dc7b1ad7f823b23d8b97f975cc0a6195a0f7cc4e01ea195b423b7bf0fd937de9897ed0a553c944a2a05fdd60f3f757#npm:7.14.5"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", "npm:7.1.15"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-typescript", [\
["npm:7.14.5", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-typescript-npm-7.14.5-78c2a6af3a-5447d13b31.zip/node_modules/@babel/plugin-syntax-typescript/",\
"packageDependencies": [\
["@babel/plugin-syntax-typescript", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:15ef0a4ad61c166598c4d195dc64a0b7270b186e9a584ea25871b4181189fa5a61a49aa37f6bcda6ffed25499ff900f1a33224b0c22868c8eb1eaf1dd4f0dc11#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-typescript-virtual-d13d5d4b56/0/cache/@babel-plugin-syntax-typescript-npm-7.14.5-78c2a6af3a-5447d13b31.zip/node_modules/@babel/plugin-syntax-typescript/",\
"packageDependencies": [\
["@babel/plugin-syntax-typescript", "virtual:15ef0a4ad61c166598c4d195dc64a0b7270b186e9a584ea25871b4181189fa5a61a49aa37f6bcda6ffed25499ff900f1a33224b0c22868c8eb1eaf1dd4f0dc11#npm:7.14.5"],\
["@babel/core", "npm:7.25.2"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/runtime", [\
["npm:7.24.5", {\
"packageLocation": "./.yarn/cache/@babel-runtime-npm-7.24.5-e4447a1e48-e0f4f4d450.zip/node_modules/@babel/runtime/",\
"packageDependencies": [\
["@babel/runtime", "npm:7.24.5"],\
["regenerator-runtime", "npm:0.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/template", [\
["npm:7.25.0", {\
"packageLocation": "./.yarn/cache/@babel-template-npm-7.25.0-2c6ddcb43a-07ebecf6db.zip/node_modules/@babel/template/",\
"packageDependencies": [\
["@babel/template", "npm:7.25.0"],\
["@babel/code-frame", "npm:7.24.7"],\
["@babel/parser", "npm:7.25.3"],\
["@babel/types", "npm:7.25.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/traverse", [\
["npm:7.25.3", {\
"packageLocation": "./.yarn/cache/@babel-traverse-npm-7.25.3-69c3455e97-fba34f323e.zip/node_modules/@babel/traverse/",\
"packageDependencies": [\
["@babel/traverse", "npm:7.25.3"],\
["@babel/code-frame", "npm:7.24.7"],\
["@babel/generator", "npm:7.25.0"],\
["@babel/parser", "npm:7.25.3"],\
["@babel/template", "npm:7.25.0"],\
["@babel/types", "npm:7.25.2"],\
["debug", "virtual:7135eb10304abebeefd0e757e861bf034aa6b0abbb538bb12a8494e51000b5a4e104d60761905dfeea217c71693ad682ad3336c2f1f24e047f5979fcf7d9a389#npm:4.3.6"],\
["globals", "npm:11.12.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/types", [\
["npm:7.25.2", {\
"packageLocation": "./.yarn/cache/@babel-types-npm-7.25.2-7d3fc0ed1e-ccf5399db1.zip/node_modules/@babel/types/",\
"packageDependencies": [\
["@babel/types", "npm:7.25.2"],\
["@babel/helper-string-parser", "npm:7.24.8"],\
["@babel/helper-validator-identifier", "npm:7.24.7"],\
["to-fast-properties", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@bcoe/v8-coverage", [\
["npm:0.2.3", {\
"packageLocation": "./.yarn/cache/@bcoe-v8-coverage-npm-0.2.3-9e27b3c57e-1a1f0e356a.zip/node_modules/@bcoe/v8-coverage/",\
"packageDependencies": [\
["@bcoe/v8-coverage", "npm:0.2.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@cspotcode/source-map-support", [\
["npm:0.8.1", {\
"packageLocation": "./.yarn/cache/@cspotcode-source-map-support-npm-0.8.1-964f2de99d-b6e38a1712.zip/node_modules/@cspotcode/source-map-support/",\
"packageDependencies": [\
["@cspotcode/source-map-support", "npm:0.8.1"],\
["@jridgewell/trace-mapping", "npm:0.3.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/eslint-utils", [\
["npm:4.4.0", {\
"packageLocation": "./.yarn/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-8d70bcdcd8.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "npm:4.4.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:34e0cf0af706b9d9a0fc346c36df3100a4467b0cd612e8e378963cb65661d596a7c9029447981df940aec1fd728dc78444f9b322e0fb8b911fe703780e5f9406#npm:4.4.0", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-ac73e05e57/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-8d70bcdcd8.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:34e0cf0af706b9d9a0fc346c36df3100a4467b0cd612e8e378963cb65661d596a7c9029447981df940aec1fd728dc78444f9b322e0fb8b911fe703780e5f9406#npm:4.4.0"],\
["@types/eslint", null],\
["eslint", "virtual:48fee137fa33c8f0de4fd5104a43dfda11883d6ea37de0971b7ca50c6f708eda94d2b98e394bfd82390d629d459defee914b35b8bfa8314da1dfab12afdece9b#npm:9.9.0"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}],\
["virtual:f4a240b91feef10011ee6d0f4d725227076635dc2582267d1893baf9c1587a6d727842fb90f2de6074fe91d668796e296ef7dbca7496d79c70c2f6450bdabcac#npm:4.4.0", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-6124b38d0f/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-8d70bcdcd8.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:f4a240b91feef10011ee6d0f4d725227076635dc2582267d1893baf9c1587a6d727842fb90f2de6074fe91d668796e296ef7dbca7496d79c70c2f6450bdabcac#npm:4.4.0"],\
["@types/eslint", "npm:9.6.0"],\
["eslint", "virtual:48fee137fa33c8f0de4fd5104a43dfda11883d6ea37de0971b7ca50c6f708eda94d2b98e394bfd82390d629d459defee914b35b8bfa8314da1dfab12afdece9b#npm:9.9.0"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}],\
["virtual:fa5a67b43321afc1b658058b8e4f08e8605e78f7e8e9f1c3abdf59e3b6e37126af1a4c94035c678c188ca84ddc84f814e16f03f8a0497e83af2d8633e32c8831#npm:4.4.0", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-77bce35369/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-8d70bcdcd8.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:fa5a67b43321afc1b658058b8e4f08e8605e78f7e8e9f1c3abdf59e3b6e37126af1a4c94035c678c188ca84ddc84f814e16f03f8a0497e83af2d8633e32c8831#npm:4.4.0"],\
["@types/eslint", null],\
["eslint", null],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/regexpp", [\
["npm:4.11.0", {\
"packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.11.0-dd7ae18a6d-f053f371c2.zip/node_modules/@eslint-community/regexpp/",\
"packageDependencies": [\
["@eslint-community/regexpp", "npm:4.11.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/config-array", [\
["npm:0.17.1", {\
"packageLocation": "./.yarn/cache/@eslint-config-array-npm-0.17.1-a6cb4d2ce2-d837852445.zip/node_modules/@eslint/config-array/",\