-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pnp.cjs
executable file
·12776 lines (12680 loc) · 625 KB
/
.pnp.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env node
/* eslint-disable */
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "@nnmax/eslint-config",\
"reference": "workspace:."\
},\
{\
"name": "@nnmax/eslint-config-basic",\
"reference": "workspace:packages/eslint-config-basic"\
},\
{\
"name": "@nnmax/eslint-config-import",\
"reference": "workspace:packages/eslint-config-import"\
},\
{\
"name": "@nnmax/eslint-config-react",\
"reference": "workspace:packages/eslint-config-react"\
},\
{\
"name": "@nnmax/eslint-config-typescript",\
"reference": "workspace:packages/eslint-config-typescript"\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["@nnmax/eslint-config", ["workspace:."]],\
["@nnmax/eslint-config-basic", ["virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic", "workspace:packages/eslint-config-basic"]],\
["@nnmax/eslint-config-import", ["virtual:ebd7cb7edeb39288454b65556664ac613855688581761778336ac2a9637873ac85da2ffbd3d9c7ac59c8ff4c0ef49c5153c2440320dd373dd1b4fdefe51035d5#workspace:packages/eslint-config-import", "workspace:packages/eslint-config-import"]],\
["@nnmax/eslint-config-react", ["workspace:packages/eslint-config-react"]],\
["@nnmax/eslint-config-typescript", ["virtual:e16fa165bced460d1f65a85f9b90a5d85d8fecc83414d39bda3f0d9a8fd8179fd4eabfe9ce2130479904fcfddf6f8793cd481e9bb62931352553b4c26ee67d90#workspace:packages/eslint-config-typescript", "workspace:packages/eslint-config-typescript"]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@nnmax/eslint-config-basic", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic"],\
["@types/prettier", "npm:3.0.0"],\
["bumpp", "npm:9.4.0"],\
["eslint", "npm:8.57.0"],\
["eslint-config-prettier", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#npm:9.1.0"],\
["eslint-plugin-import", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#npm:2.29.1"],\
["husky", "npm:9.0.11"],\
["lint-staged", "npm:15.2.2"],\
["prettier", "npm:3.2.5"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@aashutoshrathi/word-wrap", [\
["npm:1.2.6", {\
"packageLocation": "./.yarn/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-53c2b231a6.zip/node_modules/@aashutoshrathi/word-wrap/",\
"packageDependencies": [\
["@aashutoshrathi/word-wrap", "npm:1.2.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/runtime", [\
["npm:7.23.7", {\
"packageLocation": "./.yarn/cache/@babel-runtime-npm-7.23.7-9691b86096-3e304133ee.zip/node_modules/@babel/runtime/",\
"packageDependencies": [\
["@babel/runtime", "npm:7.23.7"],\
["regenerator-runtime", "npm:0.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/eslint-utils", [\
["npm:4.4.0", {\
"packageLocation": "./.yarn/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-7e559c4ce5.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "npm:4.4.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-1c7da85a1a/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-7e559c4ce5.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0"],\
["@types/eslint", null],\
["eslint", "npm:8.57.0"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/regexpp", [\
["npm:4.10.0", {\
"packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-c5f60ef1f1.zip/node_modules/@eslint-community/regexpp/",\
"packageDependencies": [\
["@eslint-community/regexpp", "npm:4.10.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/eslintrc", [\
["npm:2.1.4", {\
"packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-32f67052b8.zip/node_modules/@eslint/eslintrc/",\
"packageDependencies": [\
["@eslint/eslintrc", "npm:2.1.4"],\
["ajv", "npm:6.12.6"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
["espree", "npm:9.6.1"],\
["globals", "npm:13.24.0"],\
["ignore", "npm:5.3.0"],\
["import-fresh", "npm:3.3.0"],\
["js-yaml", "npm:4.1.0"],\
["minimatch", "npm:3.1.2"],\
["strip-json-comments", "npm:3.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/js", [\
["npm:8.57.0", {\
"packageLocation": "./.yarn/cache/@eslint-js-npm-8.57.0-00ead3710a-9a518bb862.zip/node_modules/@eslint/js/",\
"packageDependencies": [\
["@eslint/js", "npm:8.57.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/config-array", [\
["npm:0.11.14", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-config-array-npm-0.11.14-94a02fcc87-66f725b4ee.zip/node_modules/@humanwhocodes/config-array/",\
"packageDependencies": [\
["@humanwhocodes/config-array", "npm:0.11.14"],\
["@humanwhocodes/object-schema", "npm:2.0.2"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
["minimatch", "npm:3.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/module-importer", [\
["npm:1.0.1", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-909b69c3b8.zip/node_modules/@humanwhocodes/module-importer/",\
"packageDependencies": [\
["@humanwhocodes/module-importer", "npm:1.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/object-schema", [\
["npm:2.0.2", {\
"packageLocation": "./.yarn/cache/@humanwhocodes-object-schema-npm-2.0.2-77b42018f9-6fd83dc320.zip/node_modules/@humanwhocodes/object-schema/",\
"packageDependencies": [\
["@humanwhocodes/object-schema", "npm:2.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@isaacs/cliui", [\
["npm:8.0.2", {\
"packageLocation": "./.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-b1bf42535d.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"\
}]\
]],\
["@jsdevtools/ez-spawn", [\
["npm:3.0.4", {\
"packageLocation": "./.yarn/cache/@jsdevtools-ez-spawn-npm-3.0.4-7ddc03e436-fb56f99c4d.zip/node_modules/@jsdevtools/ez-spawn/",\
"packageDependencies": [\
["@jsdevtools/ez-spawn", "npm:3.0.4"],\
["call-me-maybe", "npm:1.0.2"],\
["cross-spawn", "npm:7.0.3"],\
["string-argv", "npm:0.3.2"],\
["type-detect", "npm:4.0.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nnmax/eslint-config", [\
["workspace:.", {\
"packageLocation": "./",\
"packageDependencies": [\
["@nnmax/eslint-config", "workspace:."],\
["@nnmax/eslint-config-basic", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic"],\
["@types/prettier", "npm:3.0.0"],\
["bumpp", "npm:9.4.0"],\
["eslint", "npm:8.57.0"],\
["eslint-config-prettier", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#npm:9.1.0"],\
["eslint-plugin-import", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#npm:2.29.1"],\
["husky", "npm:9.0.11"],\
["lint-staged", "npm:15.2.2"],\
["prettier", "npm:3.2.5"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@nnmax/eslint-config-basic", [\
["virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic", {\
"packageLocation": "./.yarn/__virtual__/@nnmax-eslint-config-basic-virtual-ebd7cb7ede/1/packages/eslint-config-basic/",\
"packageDependencies": [\
["@nnmax/eslint-config-basic", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic"],\
["@nnmax/eslint-config-import", "virtual:ebd7cb7edeb39288454b65556664ac613855688581761778336ac2a9637873ac85da2ffbd3d9c7ac59c8ff4c0ef49c5153c2440320dd373dd1b4fdefe51035d5#workspace:packages/eslint-config-import"],\
["@types/eslint", null],\
["eslint", "npm:8.57.0"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "SOFT"\
}],\
["workspace:packages/eslint-config-basic", {\
"packageLocation": "./packages/eslint-config-basic/",\
"packageDependencies": [\
["@nnmax/eslint-config-basic", "workspace:packages/eslint-config-basic"],\
["@nnmax/eslint-config-import", "virtual:ebd7cb7edeb39288454b65556664ac613855688581761778336ac2a9637873ac85da2ffbd3d9c7ac59c8ff4c0ef49c5153c2440320dd373dd1b4fdefe51035d5#workspace:packages/eslint-config-import"],\
["eslint", "npm:8.57.0"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@nnmax/eslint-config-import", [\
["virtual:ebd7cb7edeb39288454b65556664ac613855688581761778336ac2a9637873ac85da2ffbd3d9c7ac59c8ff4c0ef49c5153c2440320dd373dd1b4fdefe51035d5#workspace:packages/eslint-config-import", {\
"packageLocation": "./.yarn/__virtual__/@nnmax-eslint-config-import-virtual-f779ec0a0d/1/packages/eslint-config-import/",\
"packageDependencies": [\
["@nnmax/eslint-config-import", "virtual:ebd7cb7edeb39288454b65556664ac613855688581761778336ac2a9637873ac85da2ffbd3d9c7ac59c8ff4c0ef49c5153c2440320dd373dd1b4fdefe51035d5#workspace:packages/eslint-config-import"],\
["@types/eslint", null],\
["eslint", "npm:8.57.0"],\
["eslint-import-resolver-typescript", "virtual:f779ec0a0dffdd925a787d4dfa1a92207e20c72f7e9cddf1b3f946b581141333fa107cb661a8efe0f09ffb8c725f7c9596831f33777a288efca2db7078e2cbe8#npm:3.6.1"],\
["eslint-plugin-import", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#npm:2.29.1"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "SOFT"\
}],\
["workspace:packages/eslint-config-import", {\
"packageLocation": "./packages/eslint-config-import/",\
"packageDependencies": [\
["@nnmax/eslint-config-import", "workspace:packages/eslint-config-import"],\
["eslint", "npm:8.57.0"],\
["eslint-import-resolver-typescript", "virtual:f779ec0a0dffdd925a787d4dfa1a92207e20c72f7e9cddf1b3f946b581141333fa107cb661a8efe0f09ffb8c725f7c9596831f33777a288efca2db7078e2cbe8#npm:3.6.1"],\
["eslint-plugin-import", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#npm:2.29.1"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@nnmax/eslint-config-react", [\
["workspace:packages/eslint-config-react", {\
"packageLocation": "./packages/eslint-config-react/",\
"packageDependencies": [\
["@nnmax/eslint-config-react", "workspace:packages/eslint-config-react"],\
["@nnmax/eslint-config-basic", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic"],\
["@nnmax/eslint-config-typescript", "virtual:e16fa165bced460d1f65a85f9b90a5d85d8fecc83414d39bda3f0d9a8fd8179fd4eabfe9ce2130479904fcfddf6f8793cd481e9bb62931352553b4c26ee67d90#workspace:packages/eslint-config-typescript"],\
["eslint", "npm:8.57.0"],\
["eslint-plugin-jsx-a11y", "virtual:e16fa165bced460d1f65a85f9b90a5d85d8fecc83414d39bda3f0d9a8fd8179fd4eabfe9ce2130479904fcfddf6f8793cd481e9bb62931352553b4c26ee67d90#npm:6.8.0"],\
["eslint-plugin-react", "virtual:e16fa165bced460d1f65a85f9b90a5d85d8fecc83414d39bda3f0d9a8fd8179fd4eabfe9ce2130479904fcfddf6f8793cd481e9bb62931352553b4c26ee67d90#npm:7.34.0"],\
["eslint-plugin-react-hooks", "virtual:e16fa165bced460d1f65a85f9b90a5d85d8fecc83414d39bda3f0d9a8fd8179fd4eabfe9ce2130479904fcfddf6f8793cd481e9bb62931352553b4c26ee67d90#npm:5.0.0-canary-c5b937576-20231219"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@nnmax/eslint-config-typescript", [\
["virtual:e16fa165bced460d1f65a85f9b90a5d85d8fecc83414d39bda3f0d9a8fd8179fd4eabfe9ce2130479904fcfddf6f8793cd481e9bb62931352553b4c26ee67d90#workspace:packages/eslint-config-typescript", {\
"packageLocation": "./.yarn/__virtual__/@nnmax-eslint-config-typescript-virtual-2af8db81eb/1/packages/eslint-config-typescript/",\
"packageDependencies": [\
["@nnmax/eslint-config-typescript", "virtual:e16fa165bced460d1f65a85f9b90a5d85d8fecc83414d39bda3f0d9a8fd8179fd4eabfe9ce2130479904fcfddf6f8793cd481e9bb62931352553b4c26ee67d90#workspace:packages/eslint-config-typescript"],\
["@nnmax/eslint-config-basic", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/eslint-plugin", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0"],\
["@typescript-eslint/parser", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0"],\
["eslint", "npm:8.57.0"],\
["eslint-import-resolver-typescript", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:3.6.1"],\
["eslint-plugin-import", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:2.29.1"],\
["typescript", "patch:typescript@npm%3A5.4.2#optional!builtin<compat/typescript>::version=5.4.2&hash=5adc0c"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint"\
],\
"linkType": "SOFT"\
}],\
["workspace:packages/eslint-config-typescript", {\
"packageLocation": "./packages/eslint-config-typescript/",\
"packageDependencies": [\
["@nnmax/eslint-config-typescript", "workspace:packages/eslint-config-typescript"],\
["@nnmax/eslint-config-basic", "virtual:3bad54d3c9e51dfaa1d32b2fa600ac234e6742edeaae680a51d30ef613c21da82cab76dd59623d4a938b3058954d57d3acdd2a5842f908b07d1403d907a888d2#workspace:packages/eslint-config-basic"],\
["@typescript-eslint/eslint-plugin", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0"],\
["@typescript-eslint/parser", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0"],\
["eslint", "npm:8.57.0"],\
["eslint-import-resolver-typescript", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:3.6.1"],\
["eslint-plugin-import", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:2.29.1"],\
["typescript", "patch:typescript@npm%3A5.4.2#optional!builtin<compat/typescript>::version=5.4.2&hash=5adc0c"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@nodelib/fs.scandir", [\
["npm:2.1.5", {\
"packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-732c3b6d1b.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-88dafe5e3e.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-db9de047c3.zip/node_modules/@nodelib/fs.walk/",\
"packageDependencies": [\
["@nodelib/fs.walk", "npm:1.2.8"],\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["fastq", "npm:1.16.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@npmcli/agent", [\
["npm:2.2.0", {\
"packageLocation": "./.yarn/cache/@npmcli-agent-npm-2.2.0-cf04e8a830-7b89590598.zip/node_modules/@npmcli/agent/",\
"packageDependencies": [\
["@npmcli/agent", "npm:2.2.0"],\
["agent-base", "npm:7.1.0"],\
["http-proxy-agent", "npm:7.0.0"],\
["https-proxy-agent", "npm:7.0.2"],\
["lru-cache", "npm:10.1.0"],\
["socks-proxy-agent", "npm:8.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@npmcli/fs", [\
["npm:3.1.0", {\
"packageLocation": "./.yarn/cache/@npmcli-fs-npm-3.1.0-0844a57978-162b4a0b87.zip/node_modules/@npmcli/fs/",\
"packageDependencies": [\
["@npmcli/fs", "npm:3.1.0"],\
["semver", "npm:7.5.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@pkgjs/parseargs", [\
["npm:0.11.0", {\
"packageLocation": "./.yarn/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-5bd7576bb1.zip/node_modules/@pkgjs/parseargs/",\
"packageDependencies": [\
["@pkgjs/parseargs", "npm:0.11.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json-schema", [\
["npm:7.0.15", {\
"packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.15-fd16381786-a996a745e6.zip/node_modules/@types/json-schema/",\
"packageDependencies": [\
["@types/json-schema", "npm:7.0.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json5", [\
["npm:0.0.29", {\
"packageLocation": "./.yarn/cache/@types-json5-npm-0.0.29-f63a7916bd-6bf5337bc4.zip/node_modules/@types/json5/",\
"packageDependencies": [\
["@types/json5", "npm:0.0.29"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/prettier", [\
["npm:3.0.0", {\
"packageLocation": "./.yarn/cache/@types-prettier-npm-3.0.0-6c770110eb-edab8c0c0e.zip/node_modules/@types/prettier/",\
"packageDependencies": [\
["@types/prettier", "npm:3.0.0"],\
["prettier", "npm:3.1.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/semver", [\
["npm:7.5.6", {\
"packageLocation": "./.yarn/cache/@types-semver-npm-7.5.6-9d2637fc95-196dc32db5.zip/node_modules/@types/semver/",\
"packageDependencies": [\
["@types/semver", "npm:7.5.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/eslint-plugin", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-eslint-plugin-npm-7.2.0-8b16e978f1-8725c2193a.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "npm:7.2.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-1e0b06525c/0/cache/@typescript-eslint-eslint-plugin-npm-7.2.0-8b16e978f1-8725c2193a.zip/node_modules/@typescript-eslint/eslint-plugin/",\
"packageDependencies": [\
["@typescript-eslint/eslint-plugin", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0"],\
["@eslint-community/regexpp", "npm:4.10.0"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@types/typescript-eslint__parser", null],\
["@typescript-eslint/parser", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0"],\
["@typescript-eslint/scope-manager", "npm:7.2.0"],\
["@typescript-eslint/type-utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:7.2.0"],\
["@typescript-eslint/utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:7.2.0"],\
["@typescript-eslint/visitor-keys", "npm:7.2.0"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
["eslint", "npm:8.57.0"],\
["graphemer", "npm:1.4.0"],\
["ignore", "npm:5.3.0"],\
["natural-compare", "npm:1.4.0"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.4.2#optional!builtin<compat/typescript>::version=5.4.2&hash=5adc0c"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript-eslint__parser",\
"@types/typescript",\
"@typescript-eslint/parser",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/parser", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-7.2.0-6d77f6601f-11ce36c682.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "npm:7.2.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-aaa8037cf0/0/cache/@typescript-eslint-parser-npm-7.2.0-6d77f6601f-11ce36c682.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "virtual:2af8db81eba9c61cb29e830f44975d55a87306b2d9832555406a2f232e1c73af77d53b7e0b084c8100f9c0cd58cb988e4a6c2e8e2b32ed14a12feeab5e247bd9#npm:7.2.0"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/scope-manager", "npm:7.2.0"],\
["@typescript-eslint/types", "npm:7.2.0"],\
["@typescript-eslint/typescript-estree", "virtual:b7a0b32de525b85aec88e9c5879a8dfb05cdba84c134a92c5ef8148646dce558565c23ea12e403849761570861584243d611b967ca26c59f7267c3e862b5d5ac#npm:7.2.0"],\
["@typescript-eslint/visitor-keys", "npm:7.2.0"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
["eslint", "npm:8.57.0"],\
["typescript", "patch:typescript@npm%3A5.4.2#optional!builtin<compat/typescript>::version=5.4.2&hash=5adc0c"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/scope-manager", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-7.2.0-8fb6647d98-4d088c127e.zip/node_modules/@typescript-eslint/scope-manager/",\
"packageDependencies": [\
["@typescript-eslint/scope-manager", "npm:7.2.0"],\
["@typescript-eslint/types", "npm:7.2.0"],\
["@typescript-eslint/visitor-keys", "npm:7.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/type-utils", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-type-utils-npm-7.2.0-eba302c832-069b65ef32.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "npm:7.2.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:7.2.0", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-b7a0b32de5/0/cache/@typescript-eslint-type-utils-npm-7.2.0-eba302c832-069b65ef32.zip/node_modules/@typescript-eslint/type-utils/",\
"packageDependencies": [\
["@typescript-eslint/type-utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:7.2.0"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/typescript-estree", "virtual:b7a0b32de525b85aec88e9c5879a8dfb05cdba84c134a92c5ef8148646dce558565c23ea12e403849761570861584243d611b967ca26c59f7267c3e862b5d5ac#npm:7.2.0"],\
["@typescript-eslint/utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:7.2.0"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
["eslint", "npm:8.57.0"],\
["ts-api-utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.4.2#optional!builtin<compat/typescript>::version=5.4.2&hash=5adc0c"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/types", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-7.2.0-326870d984-135aae0617.zip/node_modules/@typescript-eslint/types/",\
"packageDependencies": [\
["@typescript-eslint/types", "npm:7.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/typescript-estree", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-7.2.0-2bddb1cc32-2730bb1773.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "npm:7.2.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:9becc7200b9c77ac5f2d17f8a7f2ceb65f60f6b3a74bba3c8200ebd13aa1f97cf374ce3209adf87a1a984b1631768f4a675d9fe2407ba402aff854e794f11038#npm:7.2.0", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-0b9ef4c77a/0/cache/@typescript-eslint-typescript-estree-npm-7.2.0-2bddb1cc32-2730bb1773.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:9becc7200b9c77ac5f2d17f8a7f2ceb65f60f6b3a74bba3c8200ebd13aa1f97cf374ce3209adf87a1a984b1631768f4a675d9fe2407ba402aff854e794f11038#npm:7.2.0"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:7.2.0"],\
["@typescript-eslint/visitor-keys", "npm:7.2.0"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["minimatch", "npm:9.0.3"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:0b9ef4c77a8784d7c2ea16f700a44a4dba95b6a60601d1472b98ec2235ba50151557adbcefda58deb4928bffdd015eee44df14aa3ae24ce3de7211cafdfb22c8#npm:1.0.3"],\
["typescript", null]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}],\
["virtual:b7a0b32de525b85aec88e9c5879a8dfb05cdba84c134a92c5ef8148646dce558565c23ea12e403849761570861584243d611b967ca26c59f7267c3e862b5d5ac#npm:7.2.0", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-ba49c60476/0/cache/@typescript-eslint-typescript-estree-npm-7.2.0-2bddb1cc32-2730bb1773.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:b7a0b32de525b85aec88e9c5879a8dfb05cdba84c134a92c5ef8148646dce558565c23ea12e403849761570861584243d611b967ca26c59f7267c3e862b5d5ac#npm:7.2.0"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:7.2.0"],\
["@typescript-eslint/visitor-keys", "npm:7.2.0"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
["globby", "npm:11.1.0"],\
["is-glob", "npm:4.0.3"],\
["minimatch", "npm:9.0.3"],\
["semver", "npm:7.5.4"],\
["ts-api-utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.4.2#optional!builtin<compat/typescript>::version=5.4.2&hash=5adc0c"]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/utils", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-utils-npm-7.2.0-ba7571577d-37944e1a40.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "npm:7.2.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:7.2.0", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-9becc7200b/0/cache/@typescript-eslint-utils-npm-7.2.0-ba7571577d-37944e1a40.zip/node_modules/@typescript-eslint/utils/",\
"packageDependencies": [\
["@typescript-eslint/utils", "virtual:1e0b06525cf9a8aa7526bd4e901b16dc669fd9a5b81f907f675870f7f28148f9abcf0135f9b8d6140f105c28b5338ce1b310155a82e451b081017b04017c2fa7#npm:7.2.0"],\
["@eslint-community/eslint-utils", "virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0"],\
["@types/eslint", null],\
["@types/json-schema", "npm:7.0.15"],\
["@types/semver", "npm:7.5.6"],\
["@typescript-eslint/scope-manager", "npm:7.2.0"],\
["@typescript-eslint/types", "npm:7.2.0"],\
["@typescript-eslint/typescript-estree", "virtual:9becc7200b9c77ac5f2d17f8a7f2ceb65f60f6b3a74bba3c8200ebd13aa1f97cf374ce3209adf87a1a984b1631768f4a675d9fe2407ba402aff854e794f11038#npm:7.2.0"],\
["eslint", "npm:8.57.0"],\
["semver", "npm:7.5.4"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/visitor-keys", [\
["npm:7.2.0", {\
"packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-7.2.0-d24a1c5531-2d7467495b.zip/node_modules/@typescript-eslint/visitor-keys/",\
"packageDependencies": [\
["@typescript-eslint/visitor-keys", "npm:7.2.0"],\
["@typescript-eslint/types", "npm:7.2.0"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@ungap/structured-clone", [\
["npm:1.2.0", {\
"packageLocation": "./.yarn/cache/@ungap-structured-clone-npm-1.2.0-648f0b82e0-8209c937cb.zip/node_modules/@ungap/structured-clone/",\
"packageDependencies": [\
["@ungap/structured-clone", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["abbrev", [\
["npm:2.0.0", {\
"packageLocation": "./.yarn/cache/abbrev-npm-2.0.0-0eb38a17e5-f742a5a107.zip/node_modules/abbrev/",\
"packageDependencies": [\
["abbrev", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["acorn", [\
["npm:8.11.3", {\
"packageLocation": "./.yarn/cache/acorn-npm-8.11.3-0d7ab48b38-3ff155f881.zip/node_modules/acorn/",\
"packageDependencies": [\
["acorn", "npm:8.11.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["acorn-jsx", [\
["npm:5.3.2", {\
"packageLocation": "./.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-4c54868fbe.zip/node_modules/acorn-jsx/",\
"packageDependencies": [\
["acorn-jsx", "npm:5.3.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2", {\
"packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-834321b202/0/cache/acorn-jsx-npm-5.3.2-d7594599ea-4c54868fbe.zip/node_modules/acorn-jsx/",\
"packageDependencies": [\
["acorn-jsx", "virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2"],\
["@types/acorn", null],\
["acorn", "npm:8.11.3"]\
],\
"packagePeers": [\
"@types/acorn",\
"acorn"\
],\
"linkType": "HARD"\
}]\
]],\
["agent-base", [\
["npm:7.1.0", {\
"packageLocation": "./.yarn/cache/agent-base-npm-7.1.0-4b12ba5111-fc974ab57f.zip/node_modules/agent-base/",\
"packageDependencies": [\
["agent-base", "npm:7.1.0"],\
["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["aggregate-error", [\
["npm:3.1.0", {\
"packageLocation": "./.yarn/cache/aggregate-error-npm-3.1.0-415a406f4e-a42f67faa7.zip/node_modules/aggregate-error/",\
"packageDependencies": [\
["aggregate-error", "npm:3.1.0"],\
["clean-stack", "npm:2.2.0"],\
["indent-string", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["ajv", [\
["npm:6.12.6", {\
"packageLocation": "./.yarn/cache/ajv-npm-6.12.6-4b5105e2b2-41e23642cb.zip/node_modules/ajv/",\
"packageDependencies": [\
["ajv", "npm:6.12.6"],\
["fast-deep-equal", "npm:3.1.3"],\
["fast-json-stable-stringify", "npm:2.1.0"],\
["json-schema-traverse", "npm:0.4.1"],\
["uri-js", "npm:4.4.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["ansi-escapes", [\
["npm:6.2.0", {\
"packageLocation": "./.yarn/cache/ansi-escapes-npm-6.2.0-acda9c0a5d-3eec75deed.zip/node_modules/ansi-escapes/",\
"packageDependencies": [\
["ansi-escapes", "npm:6.2.0"],\
["type-fest", "npm:3.13.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["ansi-regex", [\
["npm:5.0.1", {\
"packageLocation": "./.yarn/cache/ansi-regex-npm-5.0.1-c963a48615-9a64bb8627.zip/node_modules/ansi-regex/",\
"packageDependencies": [\
["ansi-regex", "npm:5.0.1"]\
],\
"linkType": "HARD"\
}],\
["npm:6.0.1", {\
"packageLocation": "./.yarn/cache/ansi-regex-npm-6.0.1-8d663a607d-cbe16dbd2c.zip/node_modules/ansi-regex/",\
"packageDependencies": [\
["ansi-regex", "npm:6.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["ansi-styles", [\
["npm:4.3.0", {\
"packageLocation": "./.yarn/cache/ansi-styles-npm-4.3.0-245c7d42c7-895a23929d.zip/node_modules/ansi-styles/",\
"packageDependencies": [\
["ansi-styles", "npm:4.3.0"],\
["color-convert", "npm:2.0.1"]\
],\
"linkType": "HARD"\
}],\
["npm:6.2.1", {\
"packageLocation": "./.yarn/cache/ansi-styles-npm-6.2.1-d43647018c-5d1ec38c12.zip/node_modules/ansi-styles/",\
"packageDependencies": [\
["ansi-styles", "npm:6.2.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["anymatch", [\
["npm:3.1.3", {\
"packageLocation": "./.yarn/cache/anymatch-npm-3.1.3-bc81d103b1-57b06ae984.zip/node_modules/anymatch/",\
"packageDependencies": [\
["anymatch", "npm:3.1.3"],\
["normalize-path", "npm:3.0.0"],\
["picomatch", "npm:2.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["argparse", [\
["npm:2.0.1", {\
"packageLocation": "./.yarn/cache/argparse-npm-2.0.1-faff7999e6-c5640c2d89.zip/node_modules/argparse/",\
"packageDependencies": [\
["argparse", "npm:2.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["aria-query", [\
["npm:5.3.0", {\
"packageLocation": "./.yarn/cache/aria-query-npm-5.3.0-76575ac83b-2bff0d4eba.zip/node_modules/aria-query/",\
"packageDependencies": [\
["aria-query", "npm:5.3.0"],\
["dequal", "npm:2.0.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["array-buffer-byte-length", [\
["npm:1.0.0", {\
"packageLocation": "./.yarn/cache/array-buffer-byte-length-npm-1.0.0-331671f28a-12f84f6418.zip/node_modules/array-buffer-byte-length/",\
"packageDependencies": [\
["array-buffer-byte-length", "npm:1.0.0"],\
["call-bind", "npm:1.0.5"],\
["is-array-buffer", "npm:3.0.2"]\
],\
"linkType": "HARD"\
}],\
["npm:1.0.1", {\
"packageLocation": "./.yarn/cache/array-buffer-byte-length-npm-1.0.1-e7afc30010-f5cdf54527.zip/node_modules/array-buffer-byte-length/",\
"packageDependencies": [\
["array-buffer-byte-length", "npm:1.0.1"],\
["call-bind", "npm:1.0.5"],\
["is-array-buffer", "npm:3.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["array-includes", [\
["npm:3.1.7", {\
"packageLocation": "./.yarn/cache/array-includes-npm-3.1.7-d32a5ee179-692907bd7f.zip/node_modules/array-includes/",\
"packageDependencies": [\
["array-includes", "npm:3.1.7"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.22.3"],\
["get-intrinsic", "npm:1.2.2"],\
["is-string", "npm:1.0.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["array-union", [\
["npm:2.1.0", {\
"packageLocation": "./.yarn/cache/array-union-npm-2.1.0-4e4852b221-429897e681.zip/node_modules/array-union/",\
"packageDependencies": [\
["array-union", "npm:2.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.findlast", [\
["npm:1.2.4", {\
"packageLocation": "./.yarn/cache/array.prototype.findlast-npm-1.2.4-7e9343dd11-4b5145a68e.zip/node_modules/array.prototype.findlast/",\
"packageDependencies": [\
["array.prototype.findlast", "npm:1.2.4"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.23.0"],\
["es-errors", "npm:1.3.0"],\
["es-shim-unscopables", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.findlastindex", [\
["npm:1.2.3", {\
"packageLocation": "./.yarn/cache/array.prototype.findlastindex-npm-1.2.3-2a36f4417b-2c5c4d3f07.zip/node_modules/array.prototype.findlastindex/",\
"packageDependencies": [\
["array.prototype.findlastindex", "npm:1.2.3"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.22.3"],\
["es-shim-unscopables", "npm:1.0.2"],\
["get-intrinsic", "npm:1.2.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.flat", [\
["npm:1.3.2", {\
"packageLocation": "./.yarn/cache/array.prototype.flat-npm-1.3.2-350729f7f4-a578ed836a.zip/node_modules/array.prototype.flat/",\
"packageDependencies": [\
["array.prototype.flat", "npm:1.3.2"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.22.3"],\
["es-shim-unscopables", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.flatmap", [\
["npm:1.3.2", {\
"packageLocation": "./.yarn/cache/array.prototype.flatmap-npm-1.3.2-5c6a4af226-67b3f1d602.zip/node_modules/array.prototype.flatmap/",\
"packageDependencies": [\
["array.prototype.flatmap", "npm:1.3.2"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.22.3"],\
["es-shim-unscopables", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.toreversed", [\
["npm:1.1.2", {\
"packageLocation": "./.yarn/cache/array.prototype.toreversed-npm-1.1.2-48ebc74406-2b7627ea85.zip/node_modules/array.prototype.toreversed/",\
"packageDependencies": [\
["array.prototype.toreversed", "npm:1.1.2"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.22.3"],\
["es-shim-unscopables", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.tosorted", [\
["npm:1.1.3", {\
"packageLocation": "./.yarn/cache/array.prototype.tosorted-npm-1.1.3-f42c917a7c-a27e1ca511.zip/node_modules/array.prototype.tosorted/",\
"packageDependencies": [\
["array.prototype.tosorted", "npm:1.1.3"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.23.0"],\
["es-errors", "npm:1.3.0"],\
["es-shim-unscopables", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["arraybuffer.prototype.slice", [\
["npm:1.0.2", {\
"packageLocation": "./.yarn/cache/arraybuffer.prototype.slice-npm-1.0.2-4eda52ad8c-96b6e40e43.zip/node_modules/arraybuffer.prototype.slice/",\
"packageDependencies": [\
["arraybuffer.prototype.slice", "npm:1.0.2"],\
["array-buffer-byte-length", "npm:1.0.0"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.22.3"],\
["get-intrinsic", "npm:1.2.2"],\
["is-array-buffer", "npm:3.0.2"],\
["is-shared-array-buffer", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}],\
["npm:1.0.3", {\
"packageLocation": "./.yarn/cache/arraybuffer.prototype.slice-npm-1.0.3-97a993a091-d32754045b.zip/node_modules/arraybuffer.prototype.slice/",\
"packageDependencies": [\
["arraybuffer.prototype.slice", "npm:1.0.3"],\
["array-buffer-byte-length", "npm:1.0.1"],\
["call-bind", "npm:1.0.5"],\
["define-properties", "npm:1.2.1"],\
["es-abstract", "npm:1.23.0"],\
["es-errors", "npm:1.3.0"],\
["get-intrinsic", "npm:1.2.4"],\
["is-array-buffer", "npm:3.0.4"],\
["is-shared-array-buffer", "npm:1.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["ast-types-flow", [\
["npm:0.0.8", {\
"packageLocation": "./.yarn/cache/ast-types-flow-npm-0.0.8-d5c457c18e-f2a0ba8055.zip/node_modules/ast-types-flow/",\
"packageDependencies": [\
["ast-types-flow", "npm:0.0.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["asynciterator.prototype", [\
["npm:1.0.0", {\
"packageLocation": "./.yarn/cache/asynciterator.prototype-npm-1.0.0-72b8ba3fa4-fb76850e57.zip/node_modules/asynciterator.prototype/",\
"packageDependencies": [\
["asynciterator.prototype", "npm:1.0.0"],\
["has-symbols", "npm:1.0.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["available-typed-arrays", [\
["npm:1.0.5", {\
"packageLocation": "./.yarn/cache/available-typed-arrays-npm-1.0.5-88f321e4d3-c4df567ca7.zip/node_modules/available-typed-arrays/",\
"packageDependencies": [\
["available-typed-arrays", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}],\
["npm:1.0.7", {\
"packageLocation": "./.yarn/cache/available-typed-arrays-npm-1.0.7-e5e5d79687-d07226ef4f.zip/node_modules/available-typed-arrays/",\
"packageDependencies": [\
["available-typed-arrays", "npm:1.0.7"],\
["possible-typed-array-names", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["axe-core", [\
["npm:4.7.0", {\
"packageLocation": "./.yarn/cache/axe-core-npm-4.7.0-a095cfe0ae-89ac5712b5.zip/node_modules/axe-core/",\
"packageDependencies": [\
["axe-core", "npm:4.7.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["axobject-query", [\
["npm:3.2.1", {\