-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pnp.cjs
12751 lines (12655 loc) · 617 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": "inkle",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["inkle", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@eslint/eslintrc", "npm:3.3.0"],\
["@eslint/js", "npm:9.22.0"],\
["@types/ink-big-text", "npm:1.2.4"],\
["@types/node", "npm:22.13.10"],\
["@types/react", "npm:18.3.18"],\
["@typescript-eslint/eslint-plugin", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:8.26.1"],\
["@typescript-eslint/parser", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:8.26.1"],\
["eslint", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:9.22.0"],\
["eslint-plugin-react", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:7.37.4"],\
["eslint-plugin-react-hooks", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:5.2.0"],\
["ink", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:5.2.0"],\
["ink-big-text", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:2.0.0"],\
["ink-testing-library", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:4.0.0"],\
["meow", "npm:13.2.0"],\
["prettier", "npm:3.5.3"],\
["prettier-plugin-organize-imports", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:4.1.0"],\
["react", "npm:18.3.1"],\
["typescript", "patch:typescript@npm%3A5.8.2#optional!builtin<compat/typescript>::version=5.8.2&hash=5786d5"],\
["vitest", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:3.0.8"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@alcalzone/ansi-tokenize", [\
["npm:0.1.3", {\
"packageLocation": "./.yarn/cache/@alcalzone-ansi-tokenize-npm-0.1.3-726159bc52-3fff28b9cd.zip/node_modules/@alcalzone/ansi-tokenize/",\
"packageDependencies": [\
["@alcalzone/ansi-tokenize", "npm:0.1.3"],\
["ansi-styles", "npm:6.2.1"],\
["is-fullwidth-code-point", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/aix-ppc64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-aix-ppc64-npm-0.25.1-01938a271f/node_modules/@esbuild/aix-ppc64/",\
"packageDependencies": [\
["@esbuild/aix-ppc64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-arm", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-arm-npm-0.25.1-2c0f3da336/node_modules/@esbuild/android-arm/",\
"packageDependencies": [\
["@esbuild/android-arm", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-arm64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-arm64-npm-0.25.1-1b0d76d549/node_modules/@esbuild/android-arm64/",\
"packageDependencies": [\
["@esbuild/android-arm64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-x64-npm-0.25.1-4619626735/node_modules/@esbuild/android-x64/",\
"packageDependencies": [\
["@esbuild/android-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/darwin-arm64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-darwin-arm64-npm-0.25.1-031a09ef40/node_modules/@esbuild/darwin-arm64/",\
"packageDependencies": [\
["@esbuild/darwin-arm64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/darwin-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-darwin-x64-npm-0.25.1-4877d67bbb/node_modules/@esbuild/darwin-x64/",\
"packageDependencies": [\
["@esbuild/darwin-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/freebsd-arm64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-freebsd-arm64-npm-0.25.1-59225ea92d/node_modules/@esbuild/freebsd-arm64/",\
"packageDependencies": [\
["@esbuild/freebsd-arm64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/freebsd-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-freebsd-x64-npm-0.25.1-e10b86029f/node_modules/@esbuild/freebsd-x64/",\
"packageDependencies": [\
["@esbuild/freebsd-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-arm", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-arm-npm-0.25.1-532ed2cade/node_modules/@esbuild/linux-arm/",\
"packageDependencies": [\
["@esbuild/linux-arm", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-arm64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-arm64-npm-0.25.1-ae0b90ca0a/node_modules/@esbuild/linux-arm64/",\
"packageDependencies": [\
["@esbuild/linux-arm64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-ia32", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-ia32-npm-0.25.1-7fe9d8c448/node_modules/@esbuild/linux-ia32/",\
"packageDependencies": [\
["@esbuild/linux-ia32", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-loong64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-loong64-npm-0.25.1-501784d6b4/node_modules/@esbuild/linux-loong64/",\
"packageDependencies": [\
["@esbuild/linux-loong64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-mips64el", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-mips64el-npm-0.25.1-6109cc04fc/node_modules/@esbuild/linux-mips64el/",\
"packageDependencies": [\
["@esbuild/linux-mips64el", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-ppc64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-ppc64-npm-0.25.1-189189eadc/node_modules/@esbuild/linux-ppc64/",\
"packageDependencies": [\
["@esbuild/linux-ppc64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-riscv64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-riscv64-npm-0.25.1-33d62c08d2/node_modules/@esbuild/linux-riscv64/",\
"packageDependencies": [\
["@esbuild/linux-riscv64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-s390x", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-s390x-npm-0.25.1-cdc9e0790f/node_modules/@esbuild/linux-s390x/",\
"packageDependencies": [\
["@esbuild/linux-s390x", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-x64-npm-0.25.1-fca13db7a3/node_modules/@esbuild/linux-x64/",\
"packageDependencies": [\
["@esbuild/linux-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/netbsd-arm64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-netbsd-arm64-npm-0.25.1-00886d8e42/node_modules/@esbuild/netbsd-arm64/",\
"packageDependencies": [\
["@esbuild/netbsd-arm64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/netbsd-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-netbsd-x64-npm-0.25.1-55ae155ee4/node_modules/@esbuild/netbsd-x64/",\
"packageDependencies": [\
["@esbuild/netbsd-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/openbsd-arm64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-openbsd-arm64-npm-0.25.1-92b3e3e42a/node_modules/@esbuild/openbsd-arm64/",\
"packageDependencies": [\
["@esbuild/openbsd-arm64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/openbsd-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-openbsd-x64-npm-0.25.1-767612e609/node_modules/@esbuild/openbsd-x64/",\
"packageDependencies": [\
["@esbuild/openbsd-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/sunos-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-sunos-x64-npm-0.25.1-1e263dc851/node_modules/@esbuild/sunos-x64/",\
"packageDependencies": [\
["@esbuild/sunos-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/win32-arm64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-win32-arm64-npm-0.25.1-a78fe5b3cf/node_modules/@esbuild/win32-arm64/",\
"packageDependencies": [\
["@esbuild/win32-arm64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/win32-ia32", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-win32-ia32-npm-0.25.1-8224f18756/node_modules/@esbuild/win32-ia32/",\
"packageDependencies": [\
["@esbuild/win32-ia32", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/win32-x64", [\
["npm:0.25.1", {\
"packageLocation": "./.yarn/unplugged/@esbuild-win32-x64-npm-0.25.1-a73d7afcce/node_modules/@esbuild/win32-x64/",\
"packageDependencies": [\
["@esbuild/win32-x64", "npm:0.25.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/eslint-utils", [\
["npm:4.5.1", {\
"packageLocation": "./.yarn/cache/@eslint-community-eslint-utils-npm-4.5.1-88d38a08f4-336b85150c.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "npm:4.5.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:e34b7fe48f58bebcd0c21b28e4dd0d5a7022590c302306760c0fa095b49760c3431cfcaed9456c6f6939311c6182a976bb8fc1cde6776fc45621093c8beed85e#npm:4.5.1", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-24f8a2e3b2/0/cache/@eslint-community-eslint-utils-npm-4.5.1-88d38a08f4-336b85150c.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:e34b7fe48f58bebcd0c21b28e4dd0d5a7022590c302306760c0fa095b49760c3431cfcaed9456c6f6939311c6182a976bb8fc1cde6776fc45621093c8beed85e#npm:4.5.1"],\
["@types/eslint", null],\
["eslint", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:9.22.0"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/regexpp", [\
["npm:4.12.1", {\
"packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.12.1-ef4ab5217e-c08f1dd7dd.zip/node_modules/@eslint-community/regexpp/",\
"packageDependencies": [\
["@eslint-community/regexpp", "npm:4.12.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/config-array", [\
["npm:0.19.2", {\
"packageLocation": "./.yarn/cache/@eslint-config-array-npm-0.19.2-9310e910a9-a680972090.zip/node_modules/@eslint/config-array/",\
"packageDependencies": [\
["@eslint/config-array", "npm:0.19.2"],\
["@eslint/object-schema", "npm:2.1.6"],\
["debug", "virtual:72b2f21ce879713dcf4e532ac7aa8c6e521aada01413994716d49ebe3da3cdbe351979e6a511ce9d4870a12301e93b7d4819fb92b59b8c5fa681f079b44d4baa#npm:4.4.0"],\
["minimatch", "npm:3.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/config-helpers", [\
["npm:0.1.0", {\
"packageLocation": "./.yarn/cache/@eslint-config-helpers-npm-0.1.0-09250627f2-899b4783c2.zip/node_modules/@eslint/config-helpers/",\
"packageDependencies": [\
["@eslint/config-helpers", "npm:0.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/core", [\
["npm:0.12.0", {\
"packageLocation": "./.yarn/cache/@eslint-core-npm-0.12.0-38bccca4dd-ee8a2c65ee.zip/node_modules/@eslint/core/",\
"packageDependencies": [\
["@eslint/core", "npm:0.12.0"],\
["@types/json-schema", "npm:7.0.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/eslintrc", [\
["npm:3.3.0", {\
"packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-3.3.0-72b2f21ce8-f17d232fc4.zip/node_modules/@eslint/eslintrc/",\
"packageDependencies": [\
["@eslint/eslintrc", "npm:3.3.0"],\
["ajv", "npm:6.12.6"],\
["debug", "virtual:72b2f21ce879713dcf4e532ac7aa8c6e521aada01413994716d49ebe3da3cdbe351979e6a511ce9d4870a12301e93b7d4819fb92b59b8c5fa681f079b44d4baa#npm:4.4.0"],\
["espree", "npm:10.3.0"],\
["globals", "npm:14.0.0"],\
["ignore", "npm:5.3.2"],\
["import-fresh", "npm:3.3.1"],\
["js-yaml", "npm:4.1.0"],\
["minimatch", "npm:3.1.2"],\
["strip-json-comments", "npm:3.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/js", [\
["npm:9.22.0", {\
"packageLocation": "./.yarn/cache/@eslint-js-npm-9.22.0-c06a0bdefc-2d7725f29e.zip/node_modules/@eslint/js/",\
"packageDependencies": [\
["@eslint/js", "npm:9.22.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/object-schema", [\
["npm:2.1.6", {\
"packageLocation": "./.yarn/cache/@eslint-object-schema-npm-2.1.6-a777ee59e8-266085c8d3.zip/node_modules/@eslint/object-schema/",\
"packageDependencies": [\
["@eslint/object-schema", "npm:2.1.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/plugin-kit", [\
["npm:0.2.7", {\
"packageLocation": "./.yarn/cache/@eslint-plugin-kit-npm-0.2.7-c313bcf919-e932da4ff9.zip/node_modules/@eslint/plugin-kit/",\
"packageDependencies": [\
["@eslint/plugin-kit", "npm:0.2.7"],\
["@eslint/core", "npm:0.12.0"],\
["levn", "npm:0.4.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanfs/core", [\
["npm:0.19.1", {\
"packageLocation": "./.yarn/cache/@humanfs-core-npm-0.19.1-e2e7aaeb6e-270d936be4.zip/node_modules/@humanfs/core/",\
"packageDependencies": [\
["@humanfs/core", "npm:0.19.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanfs/node", [\
["npm:0.16.6", {\
"packageLocation": "./.yarn/cache/@humanfs-node-npm-0.16.6-6ee2cad587-6d43c67274.zip/node_modules/@humanfs/node/",\
"packageDependencies": [\
["@humanfs/node", "npm:0.16.6"],\
["@humanfs/core", "npm:0.19.1"],\
["@humanwhocodes/retry", "npm:0.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/module-importer", [\
["npm:1.0.1", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-e993950e34.zip/node_modules/@humanwhocodes/module-importer/",\
"packageDependencies": [\
["@humanwhocodes/module-importer", "npm:1.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/retry", [\
["npm:0.3.1", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-retry-npm-0.3.1-9d87bf92c6-eb457f6995.zip/node_modules/@humanwhocodes/retry/",\
"packageDependencies": [\
["@humanwhocodes/retry", "npm:0.3.1"]\
],\
"linkType": "HARD"\
}],\
["npm:0.4.2", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-retry-npm-0.4.2-78a05c1b69-8910c4cdf8.zip/node_modules/@humanwhocodes/retry/",\
"packageDependencies": [\
["@humanwhocodes/retry", "npm:0.4.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@isaacs/cliui", [\
["npm:8.0.2", {\
"packageLocation": "./.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-e9ed5fd27c.zip/node_modules/@isaacs/cliui/",\
"packageDependencies": [\
["@isaacs/cliui", "npm:8.0.2"],\
["string-width", "npm:5.1.2"],\
["string-width-cjs", [\
"string-width",\
"npm:4.2.3"\
]],\
["strip-ansi", "npm:7.1.0"],\
["strip-ansi-cjs", [\
"strip-ansi",\
"npm:6.0.1"\
]],\
["wrap-ansi", "npm:8.1.0"],\
["wrap-ansi-cjs", [\
"wrap-ansi",\
"npm:7.0.0"\
]]\
],\
"linkType": "HARD"\
}]\
]],\
["@isaacs/fs-minipass", [\
["npm:4.0.1", {\
"packageLocation": "./.yarn/cache/@isaacs-fs-minipass-npm-4.0.1-677026e841-4412e9e671.zip/node_modules/@isaacs/fs-minipass/",\
"packageDependencies": [\
["@isaacs/fs-minipass", "npm:4.0.1"],\
["minipass", "npm:7.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@jridgewell/sourcemap-codec", [\
["npm:1.5.0", {\
"packageLocation": "./.yarn/cache/@jridgewell-sourcemap-codec-npm-1.5.0-dfd9126d71-4ed6123217.zip/node_modules/@jridgewell/sourcemap-codec/",\
"packageDependencies": [\
["@jridgewell/sourcemap-codec", "npm:1.5.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.scandir", [\
["npm:2.1.5", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-6ab2a9b8a1.zip/node_modules/@nodelib/fs.scandir/",\
"packageDependencies": [\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["@nodelib/fs.stat", "npm:2.0.5"],\
["run-parallel", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.stat", [\
["npm:2.0.5", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-012480b5ca.zip/node_modules/@nodelib/fs.stat/",\
"packageDependencies": [\
["@nodelib/fs.stat", "npm:2.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.walk", [\
["npm:1.2.8", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-40033e33e9.zip/node_modules/@nodelib/fs.walk/",\
"packageDependencies": [\
["@nodelib/fs.walk", "npm:1.2.8"],\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["fastq", "npm:1.19.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@npmcli/agent", [\
["npm:3.0.0", {\
"packageLocation": "./.yarn/cache/@npmcli-agent-npm-3.0.0-169e79294f-775c9a7eb1.zip/node_modules/@npmcli/agent/",\
"packageDependencies": [\
["@npmcli/agent", "npm:3.0.0"],\
["agent-base", "npm:7.1.3"],\
["http-proxy-agent", "npm:7.0.2"],\
["https-proxy-agent", "npm:7.0.6"],\
["lru-cache", "npm:10.4.3"],\
["socks-proxy-agent", "npm:8.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@npmcli/fs", [\
["npm:4.0.0", {\
"packageLocation": "./.yarn/cache/@npmcli-fs-npm-4.0.0-1d9cc8a27b-405c4490e1.zip/node_modules/@npmcli/fs/",\
"packageDependencies": [\
["@npmcli/fs", "npm:4.0.0"],\
["semver", "npm:7.7.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@pkgjs/parseargs", [\
["npm:0.11.0", {\
"packageLocation": "./.yarn/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-115e8ceeec.zip/node_modules/@pkgjs/parseargs/",\
"packageDependencies": [\
["@pkgjs/parseargs", "npm:0.11.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-android-arm-eabi", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-android-arm-eabi-npm-4.35.0-201e62a488/node_modules/@rollup/rollup-android-arm-eabi/",\
"packageDependencies": [\
["@rollup/rollup-android-arm-eabi", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-android-arm64", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-android-arm64-npm-4.35.0-684b5ae27e/node_modules/@rollup/rollup-android-arm64/",\
"packageDependencies": [\
["@rollup/rollup-android-arm64", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-darwin-arm64", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-darwin-arm64-npm-4.35.0-e823448c39/node_modules/@rollup/rollup-darwin-arm64/",\
"packageDependencies": [\
["@rollup/rollup-darwin-arm64", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-darwin-x64", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-darwin-x64-npm-4.35.0-d113950a79/node_modules/@rollup/rollup-darwin-x64/",\
"packageDependencies": [\
["@rollup/rollup-darwin-x64", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-freebsd-arm64", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-freebsd-arm64-npm-4.35.0-74d0400c44/node_modules/@rollup/rollup-freebsd-arm64/",\
"packageDependencies": [\
["@rollup/rollup-freebsd-arm64", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-freebsd-x64", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-freebsd-x64-npm-4.35.0-e789582e76/node_modules/@rollup/rollup-freebsd-x64/",\
"packageDependencies": [\
["@rollup/rollup-freebsd-x64", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-arm-gnueabihf", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-arm-gnueabihf-npm-4.35.0-1f55121c42/node_modules/@rollup/rollup-linux-arm-gnueabihf/",\
"packageDependencies": [\
["@rollup/rollup-linux-arm-gnueabihf", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-arm-musleabihf", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-arm-musleabihf-npm-4.35.0-8f913dfb78/node_modules/@rollup/rollup-linux-arm-musleabihf/",\
"packageDependencies": [\
["@rollup/rollup-linux-arm-musleabihf", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-arm64-gnu", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-arm64-gnu-npm-4.35.0-b26646e5c1/node_modules/@rollup/rollup-linux-arm64-gnu/",\
"packageDependencies": [\
["@rollup/rollup-linux-arm64-gnu", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-arm64-musl", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-arm64-musl-npm-4.35.0-aa9a848537/node_modules/@rollup/rollup-linux-arm64-musl/",\
"packageDependencies": [\
["@rollup/rollup-linux-arm64-musl", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-loongarch64-gnu", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-loongarch64-gnu-npm-4.35.0-6c073b2e02/node_modules/@rollup/rollup-linux-loongarch64-gnu/",\
"packageDependencies": [\
["@rollup/rollup-linux-loongarch64-gnu", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-powerpc64le-gnu", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-powerpc64le-gnu-npm-4.35.0-9d8c880e3a/node_modules/@rollup/rollup-linux-powerpc64le-gnu/",\
"packageDependencies": [\
["@rollup/rollup-linux-powerpc64le-gnu", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-riscv64-gnu", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-riscv64-gnu-npm-4.35.0-373e430772/node_modules/@rollup/rollup-linux-riscv64-gnu/",\
"packageDependencies": [\
["@rollup/rollup-linux-riscv64-gnu", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-s390x-gnu", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-s390x-gnu-npm-4.35.0-ffb568c790/node_modules/@rollup/rollup-linux-s390x-gnu/",\
"packageDependencies": [\
["@rollup/rollup-linux-s390x-gnu", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-x64-gnu", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-x64-gnu-npm-4.35.0-dec8ff78df/node_modules/@rollup/rollup-linux-x64-gnu/",\
"packageDependencies": [\
["@rollup/rollup-linux-x64-gnu", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-linux-x64-musl", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-x64-musl-npm-4.35.0-4d96bf3a6f/node_modules/@rollup/rollup-linux-x64-musl/",\
"packageDependencies": [\
["@rollup/rollup-linux-x64-musl", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-win32-arm64-msvc", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-win32-arm64-msvc-npm-4.35.0-e5d9961201/node_modules/@rollup/rollup-win32-arm64-msvc/",\
"packageDependencies": [\
["@rollup/rollup-win32-arm64-msvc", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-win32-ia32-msvc", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-win32-ia32-msvc-npm-4.35.0-8f005de7b6/node_modules/@rollup/rollup-win32-ia32-msvc/",\
"packageDependencies": [\
["@rollup/rollup-win32-ia32-msvc", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@rollup/rollup-win32-x64-msvc", [\
["npm:4.35.0", {\
"packageLocation": "./.yarn/unplugged/@rollup-rollup-win32-x64-msvc-npm-4.35.0-3835edf8b3/node_modules/@rollup/rollup-win32-x64-msvc/",\
"packageDependencies": [\
["@rollup/rollup-win32-x64-msvc", "npm:4.35.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/estree", [\
["npm:1.0.6", {\
"packageLocation": "./.yarn/cache/@types-estree-npm-1.0.6-b5e23f2ea2-9d35d47509.zip/node_modules/@types/estree/",\
"packageDependencies": [\
["@types/estree", "npm:1.0.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/ink-big-text", [\
["npm:1.2.4", {\
"packageLocation": "./.yarn/cache/@types-ink-big-text-npm-1.2.4-2a303597a6-f3adb70b98.zip/node_modules/@types/ink-big-text/",\
"packageDependencies": [\
["@types/ink-big-text", "npm:1.2.4"],\
["@types/react", "npm:19.0.10"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json-schema", [\
["npm:7.0.15", {\
"packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.15-fd16381786-1a3c3e0623.zip/node_modules/@types/json-schema/",\
"packageDependencies": [\
["@types/json-schema", "npm:7.0.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/node", [\
["npm:22.13.10", {\
"packageLocation": "./.yarn/cache/@types-node-npm-22.13.10-af5336e62b-57dc6a5e01.zip/node_modules/@types/node/",\
"packageDependencies": [\
["@types/node", "npm:22.13.10"],\
["undici-types", "npm:6.20.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/prop-types", [\
["npm:15.7.14", {\
"packageLocation": "./.yarn/cache/@types-prop-types-npm-15.7.14-4ccaa07795-d0c5407b9c.zip/node_modules/@types/prop-types/",\
"packageDependencies": [\
["@types/prop-types", "npm:15.7.14"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/react", [\
["npm:18.3.18", {\
"packageLocation": "./.yarn/cache/@types-react-npm-18.3.18-2cfc7440b2-7fdd8b853e.zip/node_modules/@types/react/",\
"packageDependencies": [\
["@types/react", "npm:18.3.18"],\
["@types/prop-types", "npm:15.7.14"],\
["csstype", "npm:3.1.3"]\
],\
"linkType": "HARD"\
}],\
["npm:19.0.10", {\
"packageLocation": "./.yarn/cache/@types-react-npm-19.0.10-ad7744c06a-10b592d212.zip/node_modules/@types/react/",\
"packageDependencies": [\
["@types/react", "npm:19.0.10"],\
["csstype", "npm:3.1.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/eslint-plugin", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-eslint-plugin-npm-8.26.1-1c840523d3-01fa0f560e.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "npm:8.26.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:8.26.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-0015032b01/0/cache/@typescript-eslint-eslint-plugin-npm-8.26.1-1c840523d3-01fa0f560e.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:8.26.1"],\
["@eslint-community/regexpp", "npm:4.12.1"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@types/typescript-eslint__parser", null],\
["@typescript-eslint/parser", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:8.26.1"],\
["@typescript-eslint/scope-manager", "npm:8.26.1"],\
["@typescript-eslint/type-utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:8.26.1"],\
["@typescript-eslint/utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:8.26.1"],\
["@typescript-eslint/visitor-keys", "npm:8.26.1"],\
["eslint", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:9.22.0"],\
["graphemer", "npm:1.4.0"],\
["ignore", "npm:5.3.2"],\
["natural-compare", "npm:1.4.0"],\
["ts-api-utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:2.0.1"],\
["typescript", "patch:typescript@npm%3A5.8.2#optional!builtin<compat/typescript>::version=5.8.2&hash=5786d5"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript-eslint__parser",\
"@types/typescript",\
"@typescript-eslint/parser",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/parser", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-8.26.1-69088fa315-3e7567592c.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "npm:8.26.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:8.26.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-5f1c74b89c/0/cache/@typescript-eslint-parser-npm-8.26.1-69088fa315-3e7567592c.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:8.26.1"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/scope-manager", "npm:8.26.1"],\
["@typescript-eslint/types", "npm:8.26.1"],\
["@typescript-eslint/typescript-estree", "virtual:d03ecac94807f6b57c28df90a7665cf36c28a9eb903d28b8beb1019806bc7ea39c80b03c0d45114d4134b87eb19f84d843a8500fe2851beac9727817879c52a7#npm:8.26.1"],\
["@typescript-eslint/visitor-keys", "npm:8.26.1"],\
["debug", "virtual:72b2f21ce879713dcf4e532ac7aa8c6e521aada01413994716d49ebe3da3cdbe351979e6a511ce9d4870a12301e93b7d4819fb92b59b8c5fa681f079b44d4baa#npm:4.4.0"],\
["eslint", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:9.22.0"],\
["typescript", "patch:typescript@npm%3A5.8.2#optional!builtin<compat/typescript>::version=5.8.2&hash=5786d5"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/scope-manager", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-8.26.1-e95481198a-0c5123e243.zip/node_modules/@typescript-eslint/scope-manager/",\
"packageDependencies": [\
["@typescript-eslint/scope-manager", "npm:8.26.1"],\
["@typescript-eslint/types", "npm:8.26.1"],\
["@typescript-eslint/visitor-keys", "npm:8.26.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/type-utils", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-type-utils-npm-8.26.1-cb25d3d453-e29a3b4feb.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "npm:8.26.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:8.26.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-d03ecac948/0/cache/@typescript-eslint-type-utils-npm-8.26.1-cb25d3d453-e29a3b4feb.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:8.26.1"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/typescript-estree", "virtual:d03ecac94807f6b57c28df90a7665cf36c28a9eb903d28b8beb1019806bc7ea39c80b03c0d45114d4134b87eb19f84d843a8500fe2851beac9727817879c52a7#npm:8.26.1"],\
["@typescript-eslint/utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:8.26.1"],\
["debug", "virtual:72b2f21ce879713dcf4e532ac7aa8c6e521aada01413994716d49ebe3da3cdbe351979e6a511ce9d4870a12301e93b7d4819fb92b59b8c5fa681f079b44d4baa#npm:4.4.0"],\
["eslint", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:9.22.0"],\
["ts-api-utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:2.0.1"],\
["typescript", "patch:typescript@npm%3A5.8.2#optional!builtin<compat/typescript>::version=5.8.2&hash=5786d5"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/types", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-8.26.1-b7d54af192-1452d0c021.zip/node_modules/@typescript-eslint/types/",\
"packageDependencies": [\
["@typescript-eslint/types", "npm:8.26.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/typescript-estree", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-8.26.1-23f980f4b7-1ed242a989.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "npm:8.26.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:d03ecac94807f6b57c28df90a7665cf36c28a9eb903d28b8beb1019806bc7ea39c80b03c0d45114d4134b87eb19f84d843a8500fe2851beac9727817879c52a7#npm:8.26.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-f17129017e/0/cache/@typescript-eslint-typescript-estree-npm-8.26.1-23f980f4b7-1ed242a989.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:d03ecac94807f6b57c28df90a7665cf36c28a9eb903d28b8beb1019806bc7ea39c80b03c0d45114d4134b87eb19f84d843a8500fe2851beac9727817879c52a7#npm:8.26.1"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:8.26.1"],\
["@typescript-eslint/visitor-keys", "npm:8.26.1"],\
["debug", "virtual:72b2f21ce879713dcf4e532ac7aa8c6e521aada01413994716d49ebe3da3cdbe351979e6a511ce9d4870a12301e93b7d4819fb92b59b8c5fa681f079b44d4baa#npm:4.4.0"],\
["fast-glob", "npm:3.3.3"],\
["is-glob", "npm:4.0.3"],\
["minimatch", "npm:9.0.5"],\
["semver", "npm:7.7.1"],\
["ts-api-utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:2.0.1"],\
["typescript", "patch:typescript@npm%3A5.8.2#optional!builtin<compat/typescript>::version=5.8.2&hash=5786d5"]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/utils", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-utils-npm-8.26.1-33138d7104-53e4245534.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "npm:8.26.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:8.26.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-e34b7fe48f/0/cache/@typescript-eslint-utils-npm-8.26.1-33138d7104-53e4245534.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "virtual:0015032b01848a385900eef811caa7466d048f78aa97efefb3647bc10a3c4371333ce0608a04c2e2e9602d3754e185c8320f49abbacb73ee12b71589f13edf38#npm:8.26.1"],\
["@eslint-community/eslint-utils", "virtual:e34b7fe48f58bebcd0c21b28e4dd0d5a7022590c302306760c0fa095b49760c3431cfcaed9456c6f6939311c6182a976bb8fc1cde6776fc45621093c8beed85e#npm:4.5.1"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/scope-manager", "npm:8.26.1"],\
["@typescript-eslint/types", "npm:8.26.1"],\
["@typescript-eslint/typescript-estree", "virtual:d03ecac94807f6b57c28df90a7665cf36c28a9eb903d28b8beb1019806bc7ea39c80b03c0d45114d4134b87eb19f84d843a8500fe2851beac9727817879c52a7#npm:8.26.1"],\
["eslint", "virtual:4daedd184d2eed90ecbafa2653d25fce090eeefe7ec25abfdc1c0cfdd6b3d9221aa0e923a53795d59ff4ec861bca99001ff2d2112a62e3587233fba5c0279ee4#npm:9.22.0"],\
["typescript", "patch:typescript@npm%3A5.8.2#optional!builtin<compat/typescript>::version=5.8.2&hash=5786d5"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/visitor-keys", [\
["npm:8.26.1", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-8.26.1-74d45343c6-48bcd03d51.zip/node_modules/@typescript-eslint/visitor-keys/",\
"packageDependencies": [\
["@typescript-eslint/visitor-keys", "npm:8.26.1"],\
["@typescript-eslint/types", "npm:8.26.1"],\
["eslint-visitor-keys", "npm:4.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vitest/expect", [\
["npm:3.0.8", {\
"packageLocation": "./.yarn/cache/@vitest-expect-npm-3.0.8-32123e91d4-6cb8a707ff.zip/node_modules/@vitest/expect/",\
"packageDependencies": [\
["@vitest/expect", "npm:3.0.8"],\
["@vitest/spy", "npm:3.0.8"],\
["@vitest/utils", "npm:3.0.8"],\
["chai", "npm:5.2.0"],\
["tinyrainbow", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@vitest/mocker", [\
["npm:3.0.8", {\
"packageLocation": "./.yarn/cache/@vitest-mocker-npm-3.0.8-ea33f17571-456cafc5c2.zip/node_modules/@vitest/mocker/",\
"packageDependencies": [\
["@vitest/mocker", "npm:3.0.8"]\
],\
"linkType": "SOFT"\
}],\
["virtual:f1f483ef1a596318fe9a3c6d78e9e4146fd9d8f7cc4e8b58c03d54fa63418b1f1e53f1f3865ef145cf22b8b8bf5fa6312a756e8d72786f005ce525fa8532a12a#npm:3.0.8", {\