-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pnp.cjs
executable file
·13999 lines (13903 loc) · 688 KB
/
.pnp.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env node
/* eslint-disable */
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "@reshaped/blog",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["@reshaped/blog", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@reshaped/blog", "npm:0.4.1"],\
["@types/mdx", "npm:2.0.11"],\
["@types/node", "npm:20.11.19"],\
["@types/react", "npm:18.2.56"],\
["@types/react-dom", "npm:18.2.19"],\
["commander", "npm:12.0.0"],\
["eslint", "npm:8.56.0"],\
["eslint-config-next", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:14.1.0"],\
["execa", "npm:8.0.1"],\
["fs-extra", "npm:11.2.0"],\
["gray-matter", "npm:4.0.3"],\
["next", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:14.1.0"],\
["next-mdx-remote", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:4.4.1"],\
["prettier", "npm:3.2.5"],\
["react", "npm:18.2.0"],\
["react-dom", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:18.2.0"],\
["react-feather", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:2.0.10"],\
["reshaped", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:2.9.5"],\
["resolve-tspaths", "virtual:0764b835ad4f1ab3982ceebdff146ece65059c9fb72f4db7e454d408c5969ff16bf3d6859e3d04ee1f1def5aad2adff29e7622eb75ba4a9c5fef909fd9b9fa7b#npm:0.8.18"],\
["shiki", "npm:1.1.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@aashutoshrathi/word-wrap", [\
["npm:1.2.6", {\
"packageLocation": "../../../.yarn/berry/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-10c0.zip/node_modules/@aashutoshrathi/word-wrap/",\
"packageDependencies": [\
["@aashutoshrathi/word-wrap", "npm:1.2.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/runtime", [\
["npm:7.23.9", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-runtime-npm-7.23.9-3b96e23cc2-10c0.zip/node_modules/@babel/runtime/",\
"packageDependencies": [\
["@babel/runtime", "npm:7.23.9"],\
["regenerator-runtime", "npm:0.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@csstools/cascade-layer-name-parser", [\
["npm:1.0.7", {\
"packageLocation": "../../../.yarn/berry/cache/@csstools-cascade-layer-name-parser-npm-1.0.7-233683c7ce-10c0.zip/node_modules/@csstools/cascade-layer-name-parser/",\
"packageDependencies": [\
["@csstools/cascade-layer-name-parser", "npm:1.0.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:1.0.7", {\
"packageLocation": "./.yarn/__virtual__/@csstools-cascade-layer-name-parser-virtual-407520ee15/4/.yarn/berry/cache/@csstools-cascade-layer-name-parser-npm-1.0.7-233683c7ce-10c0.zip/node_modules/@csstools/cascade-layer-name-parser/",\
"packageDependencies": [\
["@csstools/cascade-layer-name-parser", "virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:1.0.7"],\
["@csstools/css-parser-algorithms", "virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:2.5.0"],\
["@csstools/css-tokenizer", "npm:2.2.3"],\
["@types/csstools__css-parser-algorithms", null],\
["@types/csstools__css-tokenizer", null]\
],\
"packagePeers": [\
"@csstools/css-parser-algorithms",\
"@csstools/css-tokenizer",\
"@types/csstools__css-parser-algorithms",\
"@types/csstools__css-tokenizer"\
],\
"linkType": "HARD"\
}]\
]],\
["@csstools/css-parser-algorithms", [\
["npm:2.5.0", {\
"packageLocation": "../../../.yarn/berry/cache/@csstools-css-parser-algorithms-npm-2.5.0-b22abafd96-10c0.zip/node_modules/@csstools/css-parser-algorithms/",\
"packageDependencies": [\
["@csstools/css-parser-algorithms", "npm:2.5.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:2.5.0", {\
"packageLocation": "./.yarn/__virtual__/@csstools-css-parser-algorithms-virtual-ee6ae25b3a/4/.yarn/berry/cache/@csstools-css-parser-algorithms-npm-2.5.0-b22abafd96-10c0.zip/node_modules/@csstools/css-parser-algorithms/",\
"packageDependencies": [\
["@csstools/css-parser-algorithms", "virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:2.5.0"],\
["@csstools/css-tokenizer", "npm:2.2.3"],\
["@types/csstools__css-tokenizer", null]\
],\
"packagePeers": [\
"@csstools/css-tokenizer",\
"@types/csstools__css-tokenizer"\
],\
"linkType": "HARD"\
}]\
]],\
["@csstools/css-tokenizer", [\
["npm:2.2.3", {\
"packageLocation": "../../../.yarn/berry/cache/@csstools-css-tokenizer-npm-2.2.3-a5c0d6c134-10c0.zip/node_modules/@csstools/css-tokenizer/",\
"packageDependencies": [\
["@csstools/css-tokenizer", "npm:2.2.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@csstools/media-query-list-parser", [\
["npm:2.1.7", {\
"packageLocation": "../../../.yarn/berry/cache/@csstools-media-query-list-parser-npm-2.1.7-a8daa0487d-10c0.zip/node_modules/@csstools/media-query-list-parser/",\
"packageDependencies": [\
["@csstools/media-query-list-parser", "npm:2.1.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:2.1.7", {\
"packageLocation": "./.yarn/__virtual__/@csstools-media-query-list-parser-virtual-bae39fcac8/4/.yarn/berry/cache/@csstools-media-query-list-parser-npm-2.1.7-a8daa0487d-10c0.zip/node_modules/@csstools/media-query-list-parser/",\
"packageDependencies": [\
["@csstools/media-query-list-parser", "virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:2.1.7"],\
["@csstools/css-parser-algorithms", "virtual:449c5f403be110466787b76fb88fbfb33bb73ce48be386ce11bc5b083b56384607bcf4d2c34ca40187e799c1ddd29f7b502f75e69decbf71ff5612db9ee28fe9#npm:2.5.0"],\
["@csstools/css-tokenizer", "npm:2.2.3"],\
["@types/csstools__css-parser-algorithms", null],\
["@types/csstools__css-tokenizer", null]\
],\
"packagePeers": [\
"@csstools/css-parser-algorithms",\
"@csstools/css-tokenizer",\
"@types/csstools__css-parser-algorithms",\
"@types/csstools__css-tokenizer"\
],\
"linkType": "HARD"\
}]\
]],\
["@csstools/postcss-global-data", [\
["npm:2.1.1", {\
"packageLocation": "../../../.yarn/berry/cache/@csstools-postcss-global-data-npm-2.1.1-5734773c26-10c0.zip/node_modules/@csstools/postcss-global-data/",\
"packageDependencies": [\
["@csstools/postcss-global-data", "npm:2.1.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:63e2ba8249346a5010a201c958f7057c8f99ce041277e3b751239e523bcbc4e9768a93e715d755b60119ddbd9e292ab434896552abe8c4f72fbcaf03b69cd6b4#npm:2.1.1", {\
"packageLocation": "./.yarn/__virtual__/@csstools-postcss-global-data-virtual-365e20ccf8/4/.yarn/berry/cache/@csstools-postcss-global-data-npm-2.1.1-5734773c26-10c0.zip/node_modules/@csstools/postcss-global-data/",\
"packageDependencies": [\
["@csstools/postcss-global-data", "virtual:63e2ba8249346a5010a201c958f7057c8f99ce041277e3b751239e523bcbc4e9768a93e715d755b60119ddbd9e292ab434896552abe8c4f72fbcaf03b69cd6b4#npm:2.1.1"],\
["@types/postcss", null],\
["postcss", null]\
],\
"packagePeers": [\
"@types/postcss",\
"postcss"\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/eslint-utils", [\
["npm:4.4.0", {\
"packageLocation": "../../../.yarn/berry/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-10c0.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "npm:4.4.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0", {\
"packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-719be7711d/4/.yarn/berry/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-10c0.zip/node_modules/@eslint-community/eslint-utils/",\
"packageDependencies": [\
["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\
["@types/eslint", null],\
["eslint", "npm:8.56.0"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"packagePeers": [\
"@types/eslint",\
"eslint"\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint-community/regexpp", [\
["npm:4.10.0", {\
"packageLocation": "../../../.yarn/berry/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-10c0.zip/node_modules/@eslint-community/regexpp/",\
"packageDependencies": [\
["@eslint-community/regexpp", "npm:4.10.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@eslint/eslintrc", [\
["npm:2.1.4", {\
"packageLocation": "../../../.yarn/berry/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-10c0.zip/node_modules/@eslint/eslintrc/",\
"packageDependencies": [\
["@eslint/eslintrc", "npm:2.1.4"],\
["ajv", "npm:6.12.6"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#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.56.0", {\
"packageLocation": "../../../.yarn/berry/cache/@eslint-js-npm-8.56.0-b1de08cbff-10c0.zip/node_modules/@eslint/js/",\
"packageDependencies": [\
["@eslint/js", "npm:8.56.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/config-array", [\
["npm:0.11.14", {\
"packageLocation": "../../../.yarn/berry/cache/@humanwhocodes-config-array-npm-0.11.14-94a02fcc87-10c0.zip/node_modules/@humanwhocodes/config-array/",\
"packageDependencies": [\
["@humanwhocodes/config-array", "npm:0.11.14"],\
["@humanwhocodes/object-schema", "npm:2.0.2"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["minimatch", "npm:3.1.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@humanwhocodes/module-importer", [\
["npm:1.0.1", {\
"packageLocation": "../../../.yarn/berry/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-10c0.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/berry/cache/@humanwhocodes-object-schema-npm-2.0.2-77b42018f9-10c0.zip/node_modules/@humanwhocodes/object-schema/",\
"packageDependencies": [\
["@humanwhocodes/object-schema", "npm:2.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@isaacs/cliui", [\
["npm:8.0.2", {\
"packageLocation": "../../../.yarn/berry/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-10c0.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"\
}]\
]],\
["@mdx-js/mdx", [\
["npm:2.3.0", {\
"packageLocation": "../../../.yarn/berry/cache/@mdx-js-mdx-npm-2.3.0-043b30d13e-10c0.zip/node_modules/@mdx-js/mdx/",\
"packageDependencies": [\
["@mdx-js/mdx", "npm:2.3.0"],\
["@types/estree-jsx", "npm:1.0.4"],\
["@types/mdx", "npm:2.0.11"],\
["estree-util-build-jsx", "npm:2.2.2"],\
["estree-util-is-identifier-name", "npm:2.1.0"],\
["estree-util-to-js", "npm:1.2.0"],\
["estree-walker", "npm:3.0.3"],\
["hast-util-to-estree", "npm:2.3.3"],\
["markdown-extensions", "npm:1.1.1"],\
["periscopic", "npm:3.1.0"],\
["remark-mdx", "npm:2.3.0"],\
["remark-parse", "npm:10.0.2"],\
["remark-rehype", "npm:10.1.0"],\
["unified", "npm:10.1.2"],\
["unist-util-position-from-estree", "npm:1.1.2"],\
["unist-util-stringify-position", "npm:3.0.3"],\
["unist-util-visit", "npm:4.1.2"],\
["vfile", "npm:5.3.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@mdx-js/react", [\
["npm:2.3.0", {\
"packageLocation": "../../../.yarn/berry/cache/@mdx-js-react-npm-2.3.0-d5582a450b-10c0.zip/node_modules/@mdx-js/react/",\
"packageDependencies": [\
["@mdx-js/react", "npm:2.3.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:21e17165b4ad2bdc737b6549d2381f996a01a9fc793723a93672f724f458565cd3de3490b96b6b74b4c9db1a82c2a76bf1a432ab9caf733dd9826aeea080ea1e#npm:2.3.0", {\
"packageLocation": "./.yarn/__virtual__/@mdx-js-react-virtual-198146c1d2/4/.yarn/berry/cache/@mdx-js-react-npm-2.3.0-d5582a450b-10c0.zip/node_modules/@mdx-js/react/",\
"packageDependencies": [\
["@mdx-js/react", "virtual:21e17165b4ad2bdc737b6549d2381f996a01a9fc793723a93672f724f458565cd3de3490b96b6b74b4c9db1a82c2a76bf1a432ab9caf733dd9826aeea080ea1e#npm:2.3.0"],\
["@types/mdx", "npm:2.0.11"],\
["@types/react", "npm:18.2.56"],\
["react", "npm:18.2.0"]\
],\
"packagePeers": [\
"@types/react",\
"react"\
],\
"linkType": "HARD"\
}]\
]],\
["@next/env", [\
["npm:14.1.0", {\
"packageLocation": "../../../.yarn/berry/cache/@next-env-npm-14.1.0-7b2d7071d0-10c0.zip/node_modules/@next/env/",\
"packageDependencies": [\
["@next/env", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/eslint-plugin-next", [\
["npm:14.1.0", {\
"packageLocation": "../../../.yarn/berry/cache/@next-eslint-plugin-next-npm-14.1.0-9cacf84bd9-10c0.zip/node_modules/@next/eslint-plugin-next/",\
"packageDependencies": [\
["@next/eslint-plugin-next", "npm:14.1.0"],\
["glob", "npm:10.3.10"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-darwin-arm64", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-darwin-arm64-npm-14.1.0-6d433a23a7/node_modules/@next/swc-darwin-arm64/",\
"packageDependencies": [\
["@next/swc-darwin-arm64", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-darwin-x64", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-darwin-x64-npm-14.1.0-3ed39b30a5/node_modules/@next/swc-darwin-x64/",\
"packageDependencies": [\
["@next/swc-darwin-x64", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-linux-arm64-gnu", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-linux-arm64-gnu-npm-14.1.0-30c1ade678/node_modules/@next/swc-linux-arm64-gnu/",\
"packageDependencies": [\
["@next/swc-linux-arm64-gnu", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-linux-arm64-musl", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-linux-arm64-musl-npm-14.1.0-88383a3dd2/node_modules/@next/swc-linux-arm64-musl/",\
"packageDependencies": [\
["@next/swc-linux-arm64-musl", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-linux-x64-gnu", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-linux-x64-gnu-npm-14.1.0-5a9ae6f5df/node_modules/@next/swc-linux-x64-gnu/",\
"packageDependencies": [\
["@next/swc-linux-x64-gnu", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-linux-x64-musl", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-linux-x64-musl-npm-14.1.0-84367622de/node_modules/@next/swc-linux-x64-musl/",\
"packageDependencies": [\
["@next/swc-linux-x64-musl", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-win32-arm64-msvc", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-win32-arm64-msvc-npm-14.1.0-5c7ff9edc3/node_modules/@next/swc-win32-arm64-msvc/",\
"packageDependencies": [\
["@next/swc-win32-arm64-msvc", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-win32-ia32-msvc", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-win32-ia32-msvc-npm-14.1.0-f880693056/node_modules/@next/swc-win32-ia32-msvc/",\
"packageDependencies": [\
["@next/swc-win32-ia32-msvc", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@next/swc-win32-x64-msvc", [\
["npm:14.1.0", {\
"packageLocation": "./.yarn/unplugged/@next-swc-win32-x64-msvc-npm-14.1.0-3e244b012e/node_modules/@next/swc-win32-x64-msvc/",\
"packageDependencies": [\
["@next/swc-win32-x64-msvc", "npm:14.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@nodelib/fs.scandir", [\
["npm:2.1.5", {\
"packageLocation": "../../../.yarn/berry/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-10c0.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/berry/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-10c0.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/berry/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-10c0.zip/node_modules/@nodelib/fs.walk/",\
"packageDependencies": [\
["@nodelib/fs.walk", "npm:1.2.8"],\
["@nodelib/fs.scandir", "npm:2.1.5"],\
["fastq", "npm:1.17.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@pkgjs/parseargs", [\
["npm:0.11.0", {\
"packageLocation": "../../../.yarn/berry/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-10c0.zip/node_modules/@pkgjs/parseargs/",\
"packageDependencies": [\
["@pkgjs/parseargs", "npm:0.11.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@reshaped/blog", [\
["npm:0.4.1", {\
"packageLocation": "../../../.yarn/berry/cache/@reshaped-blog-npm-0.4.1-71d13ae93b-10c0.zip/node_modules/@reshaped/blog/",\
"packageDependencies": [\
["@reshaped/blog", "npm:0.4.1"],\
["@types/mdx", "npm:2.0.11"],\
["@types/node", "npm:20.11.19"],\
["@types/react", "npm:18.2.56"],\
["@types/react-dom", "npm:18.2.19"],\
["commander", "npm:12.0.0"],\
["eslint", "npm:8.56.0"],\
["eslint-config-next", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:14.1.0"],\
["execa", "npm:8.0.1"],\
["fs-extra", "npm:11.2.0"],\
["gray-matter", "npm:4.0.3"],\
["next", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:14.1.0"],\
["next-mdx-remote", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:4.4.1"],\
["prettier", "npm:3.2.5"],\
["react", "npm:18.2.0"],\
["react-dom", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:18.2.0"],\
["react-feather", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:2.0.10"],\
["reshaped", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:2.9.5"],\
["shiki", "npm:1.1.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"linkType": "HARD"\
}],\
["workspace:.", {\
"packageLocation": "./",\
"packageDependencies": [\
["@reshaped/blog", "npm:0.4.1"],\
["@types/mdx", "npm:2.0.11"],\
["@types/node", "npm:20.11.19"],\
["@types/react", "npm:18.2.56"],\
["@types/react-dom", "npm:18.2.19"],\
["commander", "npm:12.0.0"],\
["eslint", "npm:8.56.0"],\
["eslint-config-next", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:14.1.0"],\
["execa", "npm:8.0.1"],\
["fs-extra", "npm:11.2.0"],\
["gray-matter", "npm:4.0.3"],\
["next", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:14.1.0"],\
["next-mdx-remote", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:4.4.1"],\
["prettier", "npm:3.2.5"],\
["react", "npm:18.2.0"],\
["react-dom", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:18.2.0"],\
["react-feather", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:2.0.10"],\
["reshaped", "virtual:71d13ae93b0730dd3b5ee8726f0106101e36f3962ce73bd6b8c653e58a397abf39b780165a506254d1af792ef4ea61636532e4ca9174b16001d5ce69a62b252f#npm:2.9.5"],\
["resolve-tspaths", "virtual:0764b835ad4f1ab3982ceebdff146ece65059c9fb72f4db7e454d408c5969ff16bf3d6859e3d04ee1f1def5aad2adff29e7622eb75ba4a9c5fef909fd9b9fa7b#npm:0.8.18"],\
["shiki", "npm:1.1.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@rushstack/eslint-patch", [\
["npm:1.7.2", {\
"packageLocation": "../../../.yarn/berry/cache/@rushstack-eslint-patch-npm-1.7.2-e0ac536367-10c0.zip/node_modules/@rushstack/eslint-patch/",\
"packageDependencies": [\
["@rushstack/eslint-patch", "npm:1.7.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@shikijs/core", [\
["npm:1.1.3", {\
"packageLocation": "../../../.yarn/berry/cache/@shikijs-core-npm-1.1.3-ab7ed042c8-10c0.zip/node_modules/@shikijs/core/",\
"packageDependencies": [\
["@shikijs/core", "npm:1.1.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@swc/helpers", [\
["npm:0.5.2", {\
"packageLocation": "../../../.yarn/berry/cache/@swc-helpers-npm-0.5.2-f81ca286ad-10c0.zip/node_modules/@swc/helpers/",\
"packageDependencies": [\
["@swc/helpers", "npm:0.5.2"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@trysound/sax", [\
["npm:0.2.0", {\
"packageLocation": "../../../.yarn/berry/cache/@trysound-sax-npm-0.2.0-9f763d0295-10c0.zip/node_modules/@trysound/sax/",\
"packageDependencies": [\
["@trysound/sax", "npm:0.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/acorn", [\
["npm:4.0.6", {\
"packageLocation": "../../../.yarn/berry/cache/@types-acorn-npm-4.0.6-a81a5c57b1-10c0.zip/node_modules/@types/acorn/",\
"packageDependencies": [\
["@types/acorn", "npm:4.0.6"],\
["@types/estree", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/debug", [\
["npm:4.1.12", {\
"packageLocation": "../../../.yarn/berry/cache/@types-debug-npm-4.1.12-82a3fc4905-10c0.zip/node_modules/@types/debug/",\
"packageDependencies": [\
["@types/debug", "npm:4.1.12"],\
["@types/ms", "npm:0.7.34"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/estree", [\
["npm:1.0.5", {\
"packageLocation": "../../../.yarn/berry/cache/@types-estree-npm-1.0.5-5b7faed3b4-10c0.zip/node_modules/@types/estree/",\
"packageDependencies": [\
["@types/estree", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/estree-jsx", [\
["npm:1.0.4", {\
"packageLocation": "../../../.yarn/berry/cache/@types-estree-jsx-npm-1.0.4-40f25ab99a-10c0.zip/node_modules/@types/estree-jsx/",\
"packageDependencies": [\
["@types/estree-jsx", "npm:1.0.4"],\
["@types/estree", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/hast", [\
["npm:2.3.10", {\
"packageLocation": "../../../.yarn/berry/cache/@types-hast-npm-2.3.10-2f30349bb8-10c0.zip/node_modules/@types/hast/",\
"packageDependencies": [\
["@types/hast", "npm:2.3.10"],\
["@types/unist", "npm:2.0.10"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/js-yaml", [\
["npm:4.0.9", {\
"packageLocation": "../../../.yarn/berry/cache/@types-js-yaml-npm-4.0.9-6a16d01bd2-10c0.zip/node_modules/@types/js-yaml/",\
"packageDependencies": [\
["@types/js-yaml", "npm:4.0.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/json5", [\
["npm:0.0.29", {\
"packageLocation": "../../../.yarn/berry/cache/@types-json5-npm-0.0.29-f63a7916bd-10c0.zip/node_modules/@types/json5/",\
"packageDependencies": [\
["@types/json5", "npm:0.0.29"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/mdast", [\
["npm:3.0.15", {\
"packageLocation": "../../../.yarn/berry/cache/@types-mdast-npm-3.0.15-66e5bbbc2b-10c0.zip/node_modules/@types/mdast/",\
"packageDependencies": [\
["@types/mdast", "npm:3.0.15"],\
["@types/unist", "npm:2.0.10"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/mdx", [\
["npm:2.0.11", {\
"packageLocation": "../../../.yarn/berry/cache/@types-mdx-npm-2.0.11-57598b217b-10c0.zip/node_modules/@types/mdx/",\
"packageDependencies": [\
["@types/mdx", "npm:2.0.11"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/ms", [\
["npm:0.7.34", {\
"packageLocation": "../../../.yarn/berry/cache/@types-ms-npm-0.7.34-46f5141bfd-10c0.zip/node_modules/@types/ms/",\
"packageDependencies": [\
["@types/ms", "npm:0.7.34"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/node", [\
["npm:20.11.19", {\
"packageLocation": "../../../.yarn/berry/cache/@types-node-npm-20.11.19-5d4958999b-10c0.zip/node_modules/@types/node/",\
"packageDependencies": [\
["@types/node", "npm:20.11.19"],\
["undici-types", "npm:5.26.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/prop-types", [\
["npm:15.7.11", {\
"packageLocation": "../../../.yarn/berry/cache/@types-prop-types-npm-15.7.11-a0a5a0025c-10c0.zip/node_modules/@types/prop-types/",\
"packageDependencies": [\
["@types/prop-types", "npm:15.7.11"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/react", [\
["npm:18.2.48", {\
"packageLocation": "../../../.yarn/berry/cache/@types-react-npm-18.2.48-3bda252d86-10c0.zip/node_modules/@types/react/",\
"packageDependencies": [\
["@types/react", "npm:18.2.48"],\
["@types/prop-types", "npm:15.7.11"],\
["@types/scheduler", "npm:0.16.8"],\
["csstype", "npm:3.1.3"]\
],\
"linkType": "HARD"\
}],\
["npm:18.2.56", {\
"packageLocation": "../../../.yarn/berry/cache/@types-react-npm-18.2.56-733723db25-10c0.zip/node_modules/@types/react/",\
"packageDependencies": [\
["@types/react", "npm:18.2.56"],\
["@types/prop-types", "npm:15.7.11"],\
["@types/scheduler", "npm:0.16.8"],\
["csstype", "npm:3.1.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/react-dom", [\
["npm:18.2.19", {\
"packageLocation": "../../../.yarn/berry/cache/@types-react-dom-npm-18.2.19-4c3126d580-10c0.zip/node_modules/@types/react-dom/",\
"packageDependencies": [\
["@types/react-dom", "npm:18.2.19"],\
["@types/react", "npm:18.2.48"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/scheduler", [\
["npm:0.16.8", {\
"packageLocation": "../../../.yarn/berry/cache/@types-scheduler-npm-0.16.8-303819b439-10c0.zip/node_modules/@types/scheduler/",\
"packageDependencies": [\
["@types/scheduler", "npm:0.16.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@types/unist", [\
["npm:2.0.10", {\
"packageLocation": "../../../.yarn/berry/cache/@types-unist-npm-2.0.10-f9b9ac478e-10c0.zip/node_modules/@types/unist/",\
"packageDependencies": [\
["@types/unist", "npm:2.0.10"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/parser", [\
["npm:6.19.1", {\
"packageLocation": "../../../.yarn/berry/cache/@typescript-eslint-parser-npm-6.19.1-615778ac06-10c0.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "npm:6.19.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:05e610742320e67926f01f96e5a2219731caf30c838b83baf612d2bcebe072f3f55fe33a05b4175db6f3c2e16d554681fce1e4557fc254133204a8dbed313bcb#npm:6.19.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-ab2529d7f8/4/.yarn/berry/cache/@typescript-eslint-parser-npm-6.19.1-615778ac06-10c0.zip/node_modules/@typescript-eslint/parser/",\
"packageDependencies": [\
["@typescript-eslint/parser", "virtual:05e610742320e67926f01f96e5a2219731caf30c838b83baf612d2bcebe072f3f55fe33a05b4175db6f3c2e16d554681fce1e4557fc254133204a8dbed313bcb#npm:6.19.1"],\
["@types/eslint", null],\
["@types/typescript", null],\
["@typescript-eslint/scope-manager", "npm:6.19.1"],\
["@typescript-eslint/types", "npm:6.19.1"],\
["@typescript-eslint/typescript-estree", "virtual:ab2529d7f81b3c8f633a160bbd55c1c29868b124c6fdb4aabf10dddff667da798e793da3d265a2f1736090a58bc98ec6a46a4c23630f491b07e338280d7ce7f6#npm:6.19.1"],\
["@typescript-eslint/visitor-keys", "npm:6.19.1"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#npm:4.3.4"],\
["eslint", "npm:8.56.0"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/eslint",\
"@types/typescript",\
"eslint",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/scope-manager", [\
["npm:6.19.1", {\
"packageLocation": "../../../.yarn/berry/cache/@typescript-eslint-scope-manager-npm-6.19.1-ad7101299b-10c0.zip/node_modules/@typescript-eslint/scope-manager/",\
"packageDependencies": [\
["@typescript-eslint/scope-manager", "npm:6.19.1"],\
["@typescript-eslint/types", "npm:6.19.1"],\
["@typescript-eslint/visitor-keys", "npm:6.19.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/types", [\
["npm:6.19.1", {\
"packageLocation": "../../../.yarn/berry/cache/@typescript-eslint-types-npm-6.19.1-b1df73ad9d-10c0.zip/node_modules/@typescript-eslint/types/",\
"packageDependencies": [\
["@typescript-eslint/types", "npm:6.19.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/typescript-estree", [\
["npm:6.19.1", {\
"packageLocation": "../../../.yarn/berry/cache/@typescript-eslint-typescript-estree-npm-6.19.1-559df34951-10c0.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "npm:6.19.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:ab2529d7f81b3c8f633a160bbd55c1c29868b124c6fdb4aabf10dddff667da798e793da3d265a2f1736090a58bc98ec6a46a4c23630f491b07e338280d7ce7f6#npm:6.19.1", {\
"packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-efa1c7af64/4/.yarn/berry/cache/@typescript-eslint-typescript-estree-npm-6.19.1-559df34951-10c0.zip/node_modules/@typescript-eslint/typescript-estree/",\
"packageDependencies": [\
["@typescript-eslint/typescript-estree", "virtual:ab2529d7f81b3c8f633a160bbd55c1c29868b124c6fdb4aabf10dddff667da798e793da3d265a2f1736090a58bc98ec6a46a4c23630f491b07e338280d7ce7f6#npm:6.19.1"],\
["@types/typescript", null],\
["@typescript-eslint/types", "npm:6.19.1"],\
["@typescript-eslint/visitor-keys", "npm:6.19.1"],\
["debug", "virtual:1ff4b5f90832ba0a9c93ba1223af226e44ba70c1126a3740d93562b97bc36544e896a5e95908196f7458713e6a6089a34bfc67362fc6df7fa093bd06c878be47#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:efa1c7af64bce912687c66c0f69b32d5ccde52443c00665724b626cb632164169cb70c742478b52d8f4ed654b226dd5a9be5f3b4616a01a7c90a1396e7421b89#npm:1.0.3"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@typescript-eslint/visitor-keys", [\
["npm:6.19.1", {\
"packageLocation": "../../../.yarn/berry/cache/@typescript-eslint-visitor-keys-npm-6.19.1-e80d067b31-10c0.zip/node_modules/@typescript-eslint/visitor-keys/",\
"packageDependencies": [\
["@typescript-eslint/visitor-keys", "npm:6.19.1"],\
["@typescript-eslint/types", "npm:6.19.1"],\
["eslint-visitor-keys", "npm:3.4.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@ungap/structured-clone", [\
["npm:1.2.0", {\
"packageLocation": "../../../.yarn/berry/cache/@ungap-structured-clone-npm-1.2.0-648f0b82e0-10c0.zip/node_modules/@ungap/structured-clone/",\
"packageDependencies": [\
["@ungap/structured-clone", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["acorn", [\
["npm:8.11.3", {\
"packageLocation": "../../../.yarn/berry/cache/acorn-npm-8.11.3-0d7ab48b38-10c0.zip/node_modules/acorn/",\
"packageDependencies": [\
["acorn", "npm:8.11.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["acorn-jsx", [\
["npm:5.3.2", {\
"packageLocation": "../../../.yarn/berry/cache/acorn-jsx-npm-5.3.2-d7594599ea-10c0.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/4/.yarn/berry/cache/acorn-jsx-npm-5.3.2-d7594599ea-10c0.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"\
}]\
]],\
["ajv", [\
["npm:6.12.6", {\
"packageLocation": "../../../.yarn/berry/cache/ajv-npm-6.12.6-4b5105e2b2-10c0.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-colors", [\
["npm:4.1.3", {\
"packageLocation": "../../../.yarn/berry/cache/ansi-colors-npm-4.1.3-8ffd0ae6c7-10c0.zip/node_modules/ansi-colors/",\
"packageDependencies": [\
["ansi-colors", "npm:4.1.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["ansi-regex", [\
["npm:5.0.1", {\
"packageLocation": "../../../.yarn/berry/cache/ansi-regex-npm-5.0.1-c963a48615-10c0.zip/node_modules/ansi-regex/",\
"packageDependencies": [\
["ansi-regex", "npm:5.0.1"]\
],\
"linkType": "HARD"\
}],\
["npm:6.0.1", {\
"packageLocation": "../../../.yarn/berry/cache/ansi-regex-npm-6.0.1-8d663a607d-10c0.zip/node_modules/ansi-regex/",\
"packageDependencies": [\
["ansi-regex", "npm:6.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["ansi-styles", [\
["npm:4.3.0", {\
"packageLocation": "../../../.yarn/berry/cache/ansi-styles-npm-4.3.0-245c7d42c7-10c0.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/berry/cache/ansi-styles-npm-6.2.1-d43647018c-10c0.zip/node_modules/ansi-styles/",\
"packageDependencies": [\
["ansi-styles", "npm:6.2.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["argparse", [\
["npm:1.0.10", {\
"packageLocation": "../../../.yarn/berry/cache/argparse-npm-1.0.10-528934e59d-10c0.zip/node_modules/argparse/",\
"packageDependencies": [\
["argparse", "npm:1.0.10"],\
["sprintf-js", "npm:1.0.3"]\
],\
"linkType": "HARD"\
}],\
["npm:2.0.1", {\
"packageLocation": "../../../.yarn/berry/cache/argparse-npm-2.0.1-faff7999e6-10c0.zip/node_modules/argparse/",\
"packageDependencies": [\
["argparse", "npm:2.0.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["aria-query", [\
["npm:5.3.0", {\
"packageLocation": "../../../.yarn/berry/cache/aria-query-npm-5.3.0-76575ac83b-10c0.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/berry/cache/array-buffer-byte-length-npm-1.0.0-331671f28a-10c0.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"\
}]\
]],\
["array-includes", [\
["npm:3.1.7", {\
"packageLocation": "../../../.yarn/berry/cache/array-includes-npm-3.1.7-d32a5ee179-10c0.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/berry/cache/array-union-npm-2.1.0-4e4852b221-10c0.zip/node_modules/array-union/",\
"packageDependencies": [\
["array-union", "npm:2.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["array.prototype.findlastindex", [\
["npm:1.2.3", {\
"packageLocation": "../../../.yarn/berry/cache/array.prototype.findlastindex-npm-1.2.3-2a36f4417b-10c0.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/berry/cache/array.prototype.flat-npm-1.3.2-350729f7f4-10c0.zip/node_modules/array.prototype.flat/",\