-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pnp.cjs
executable file
·13669 lines (13573 loc) · 655 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": "root-workspace-0b6124",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["root-workspace-0b6124", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@astrojs/check", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:0.9.3"],\
["@astrojs/rss", "npm:4.0.7"],\
["@astrojs/sitemap", "npm:3.1.6"],\
["astro", "npm:4.16.3"],\
["typescript", "patch:typescript@npm%3A5.6.2#optional!builtin<compat/typescript>::version=5.6.2&hash=8c6c40"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@ampproject/remapping", [\
["npm:2.3.0", {\
"packageLocation": "../../../.yarn/berry/cache/@ampproject-remapping-npm-2.3.0-559c14eee4-10c0.zip/node_modules/@ampproject/remapping/",\
"packageDependencies": [\
["@ampproject/remapping", "npm:2.3.0"],\
["@jridgewell/gen-mapping", "npm:0.3.5"],\
["@jridgewell/trace-mapping", "npm:0.3.25"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/check", [\
["npm:0.9.3", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-check-npm-0.9.3-5e695ead68-10c0.zip/node_modules/@astrojs/check/",\
"packageDependencies": [\
["@astrojs/check", "npm:0.9.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:0.9.3", {\
"packageLocation": "./.yarn/__virtual__/@astrojs-check-virtual-fb62a84efc/4/.yarn/berry/cache/@astrojs-check-npm-0.9.3-5e695ead68-10c0.zip/node_modules/@astrojs/check/",\
"packageDependencies": [\
["@astrojs/check", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:0.9.3"],\
["@astrojs/language-server", "virtual:fb62a84efcb7342fc8ad07d909c9da273c75726093b6f3674741cad63d30fd1013180f098e59dbb06194d4ae3d8f40e773b4d59cf8a6445f192fadabd97903eb#npm:2.14.2"],\
["@types/typescript", null],\
["chokidar", "npm:3.6.0"],\
["fast-glob", "npm:3.3.2"],\
["kleur", "npm:4.1.5"],\
["typescript", "patch:typescript@npm%3A5.6.2#optional!builtin<compat/typescript>::version=5.6.2&hash=8c6c40"],\
["yargs", "npm:17.7.2"]\
],\
"packagePeers": [\
"@types/typescript",\
"typescript"\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/compiler", [\
["npm:2.10.3", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-compiler-npm-2.10.3-8ae2ffb9c3-10c0.zip/node_modules/@astrojs/compiler/",\
"packageDependencies": [\
["@astrojs/compiler", "npm:2.10.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/internal-helpers", [\
["npm:0.4.1", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-internal-helpers-npm-0.4.1-1d555a417b-10c0.zip/node_modules/@astrojs/internal-helpers/",\
"packageDependencies": [\
["@astrojs/internal-helpers", "npm:0.4.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/language-server", [\
["npm:2.14.2", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-language-server-npm-2.14.2-86e865aa81-10c0.zip/node_modules/@astrojs/language-server/",\
"packageDependencies": [\
["@astrojs/language-server", "npm:2.14.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:fb62a84efcb7342fc8ad07d909c9da273c75726093b6f3674741cad63d30fd1013180f098e59dbb06194d4ae3d8f40e773b4d59cf8a6445f192fadabd97903eb#npm:2.14.2", {\
"packageLocation": "./.yarn/__virtual__/@astrojs-language-server-virtual-a3e27c892e/4/.yarn/berry/cache/@astrojs-language-server-npm-2.14.2-86e865aa81-10c0.zip/node_modules/@astrojs/language-server/",\
"packageDependencies": [\
["@astrojs/language-server", "virtual:fb62a84efcb7342fc8ad07d909c9da273c75726093b6f3674741cad63d30fd1013180f098e59dbb06194d4ae3d8f40e773b4d59cf8a6445f192fadabd97903eb#npm:2.14.2"],\
["@astrojs/compiler", "npm:2.10.3"],\
["@astrojs/yaml2ts", "npm:0.2.1"],\
["@jridgewell/sourcemap-codec", "npm:1.5.0"],\
["@types/prettier", null],\
["@types/prettier-plugin-astro", null],\
["@volar/kit", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:2.4.5"],\
["@volar/language-core", "npm:2.4.5"],\
["@volar/language-server", "npm:2.4.5"],\
["@volar/language-service", "npm:2.4.5"],\
["@volar/typescript", "npm:2.4.5"],\
["fast-glob", "npm:3.3.2"],\
["muggle-string", "npm:0.4.1"],\
["prettier", null],\
["prettier-plugin-astro", null],\
["volar-service-css", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:0.0.61"],\
["volar-service-emmet", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:0.0.61"],\
["volar-service-html", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:0.0.61"],\
["volar-service-prettier", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:0.0.61"],\
["volar-service-typescript", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:0.0.61"],\
["volar-service-typescript-twoslash-queries", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:0.0.61"],\
["volar-service-yaml", "virtual:a3e27c892e138e8e2b2f8b186299226cae360f01ee5c892b78672c7aa4d739882543bf09d6023393e28da1f95c94b96f201fd3613836579243ac35ef02fc8e10#npm:0.0.61"],\
["vscode-html-languageservice", "npm:5.3.1"],\
["vscode-uri", "npm:3.0.8"]\
],\
"packagePeers": [\
"@types/prettier-plugin-astro",\
"@types/prettier",\
"prettier-plugin-astro",\
"prettier"\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/markdown-remark", [\
["npm:5.3.0", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-markdown-remark-npm-5.3.0-03c0f4fde3-10c0.zip/node_modules/@astrojs/markdown-remark/",\
"packageDependencies": [\
["@astrojs/markdown-remark", "npm:5.3.0"],\
["@astrojs/prism", "npm:3.1.0"],\
["github-slugger", "npm:2.0.0"],\
["hast-util-from-html", "npm:2.0.3"],\
["hast-util-to-text", "npm:4.0.2"],\
["import-meta-resolve", "npm:4.1.0"],\
["mdast-util-definitions", "npm:6.0.0"],\
["rehype-raw", "npm:7.0.0"],\
["rehype-stringify", "npm:10.0.1"],\
["remark-gfm", "npm:4.0.0"],\
["remark-parse", "npm:11.0.0"],\
["remark-rehype", "npm:11.1.1"],\
["remark-smartypants", "npm:3.0.2"],\
["shiki", "npm:1.22.0"],\
["unified", "npm:11.0.5"],\
["unist-util-remove-position", "npm:5.0.0"],\
["unist-util-visit", "npm:5.0.0"],\
["unist-util-visit-parents", "npm:6.0.1"],\
["vfile", "npm:6.0.3"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/prism", [\
["npm:3.1.0", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-prism-npm-3.1.0-21494c3840-10c0.zip/node_modules/@astrojs/prism/",\
"packageDependencies": [\
["@astrojs/prism", "npm:3.1.0"],\
["prismjs", "npm:1.29.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/rss", [\
["npm:4.0.7", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-rss-npm-4.0.7-118107b2ec-10c0.zip/node_modules/@astrojs/rss/",\
"packageDependencies": [\
["@astrojs/rss", "npm:4.0.7"],\
["fast-xml-parser", "npm:4.5.0"],\
["kleur", "npm:4.1.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/sitemap", [\
["npm:3.1.6", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-sitemap-npm-3.1.6-aedc715b34-10c0.zip/node_modules/@astrojs/sitemap/",\
"packageDependencies": [\
["@astrojs/sitemap", "npm:3.1.6"],\
["sitemap", "npm:7.1.2"],\
["stream-replace-string", "npm:2.0.0"],\
["zod", "npm:3.23.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/telemetry", [\
["npm:3.1.0", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-telemetry-npm-3.1.0-e7d686ad9b-10c0.zip/node_modules/@astrojs/telemetry/",\
"packageDependencies": [\
["@astrojs/telemetry", "npm:3.1.0"],\
["ci-info", "npm:4.0.0"],\
["debug", "virtual:ddf83a29ef667ff70930bb2532e0f0943a8a39f9e9a6fd424601e629bc797129f8a3af1697368da69640ebe56f8bc231d6833fb632ec36ef002a424eca53865f#npm:4.3.7"],\
["dlv", "npm:1.1.3"],\
["dset", "npm:3.1.4"],\
["is-docker", "npm:3.0.0"],\
["is-wsl", "npm:3.1.0"],\
["which-pm-runs", "npm:1.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@astrojs/yaml2ts", [\
["npm:0.2.1", {\
"packageLocation": "../../../.yarn/berry/cache/@astrojs-yaml2ts-npm-0.2.1-06a585abb7-10c0.zip/node_modules/@astrojs/yaml2ts/",\
"packageDependencies": [\
["@astrojs/yaml2ts", "npm:0.2.1"],\
["yaml", "npm:2.5.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-code-frame-npm-7.25.7-40a9f53f43-10c0.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.25.7"],\
["@babel/highlight", "npm:7.25.7"],\
["picocolors", "npm:1.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/compat-data", [\
["npm:7.25.8", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-compat-data-npm-7.25.8-a7237f1519-10c0.zip/node_modules/@babel/compat-data/",\
"packageDependencies": [\
["@babel/compat-data", "npm:7.25.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/core", [\
["npm:7.25.8", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-core-npm-7.25.8-e5a00584a2-10c0.zip/node_modules/@babel/core/",\
"packageDependencies": [\
["@babel/core", "npm:7.25.8"],\
["@ampproject/remapping", "npm:2.3.0"],\
["@babel/code-frame", "npm:7.25.7"],\
["@babel/generator", "npm:7.25.7"],\
["@babel/helper-compilation-targets", "npm:7.25.7"],\
["@babel/helper-module-transforms", "virtual:e5a00584a285b0af54cef0dd0f4aa450c66fb9ff72a926747912c010361531d86226daef2c61386b254279bb40b28aaca6512cf376825cb81e1a7b6b7404d417#npm:7.25.7"],\
["@babel/helpers", "npm:7.25.7"],\
["@babel/parser", "npm:7.25.8"],\
["@babel/template", "npm:7.25.7"],\
["@babel/traverse", "npm:7.25.7"],\
["@babel/types", "npm:7.25.8"],\
["convert-source-map", "npm:2.0.0"],\
["debug", "virtual:ddf83a29ef667ff70930bb2532e0f0943a8a39f9e9a6fd424601e629bc797129f8a3af1697368da69640ebe56f8bc231d6833fb632ec36ef002a424eca53865f#npm:4.3.7"],\
["gensync", "npm:1.0.0-beta.2"],\
["json5", "npm:2.2.3"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/generator", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-generator-npm-7.25.7-68dd72ad91-10c0.zip/node_modules/@babel/generator/",\
"packageDependencies": [\
["@babel/generator", "npm:7.25.7"],\
["@babel/types", "npm:7.25.8"],\
["@jridgewell/gen-mapping", "npm:0.3.5"],\
["@jridgewell/trace-mapping", "npm:0.3.25"],\
["jsesc", "npm:3.0.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-annotate-as-pure", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-annotate-as-pure-npm-7.25.7-ca9a6263d0-10c0.zip/node_modules/@babel/helper-annotate-as-pure/",\
"packageDependencies": [\
["@babel/helper-annotate-as-pure", "npm:7.25.7"],\
["@babel/types", "npm:7.25.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-compilation-targets", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-compilation-targets-npm-7.25.7-912ef98d47-10c0.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "npm:7.25.7"],\
["@babel/compat-data", "npm:7.25.8"],\
["@babel/helper-validator-option", "npm:7.25.7"],\
["browserslist", "npm:4.24.0"],\
["lru-cache", "npm:5.1.1"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-imports", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-module-imports-npm-7.25.7-f7b3a083a0-10c0.zip/node_modules/@babel/helper-module-imports/",\
"packageDependencies": [\
["@babel/helper-module-imports", "npm:7.25.7"],\
["@babel/traverse", "npm:7.25.7"],\
["@babel/types", "npm:7.25.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-transforms", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-module-transforms-npm-7.25.7-01310522f0-10c0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "npm:7.25.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:e5a00584a285b0af54cef0dd0f4aa450c66fb9ff72a926747912c010361531d86226daef2c61386b254279bb40b28aaca6512cf376825cb81e1a7b6b7404d417#npm:7.25.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-6c5bc87670/4/.yarn/berry/cache/@babel-helper-module-transforms-npm-7.25.7-01310522f0-10c0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "virtual:e5a00584a285b0af54cef0dd0f4aa450c66fb9ff72a926747912c010361531d86226daef2c61386b254279bb40b28aaca6512cf376825cb81e1a7b6b7404d417#npm:7.25.7"],\
["@babel/core", "npm:7.25.8"],\
["@babel/helper-module-imports", "npm:7.25.7"],\
["@babel/helper-simple-access", "npm:7.25.7"],\
["@babel/helper-validator-identifier", "npm:7.25.7"],\
["@babel/traverse", "npm:7.25.7"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-plugin-utils", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-plugin-utils-npm-7.25.7-0b7fcf14ca-10c0.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.25.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-simple-access", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-simple-access-npm-7.25.7-3a9e5cd6e8-10c0.zip/node_modules/@babel/helper-simple-access/",\
"packageDependencies": [\
["@babel/helper-simple-access", "npm:7.25.7"],\
["@babel/traverse", "npm:7.25.7"],\
["@babel/types", "npm:7.25.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-string-parser", [\
["npm:7.24.8", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-string-parser-npm-7.24.8-133b2e71e1-10c0.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.24.8"]\
],\
"linkType": "HARD"\
}],\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-string-parser-npm-7.25.7-352069de58-10c0.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.25.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.24.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.24.7-748889c8d2-10c0.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.24.7"]\
],\
"linkType": "HARD"\
}],\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.25.7-1c758f0472-10c0.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.25.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-option", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-validator-option-npm-7.25.7-8c969bf588-10c0.zip/node_modules/@babel/helper-validator-option/",\
"packageDependencies": [\
["@babel/helper-validator-option", "npm:7.25.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helpers", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helpers-npm-7.25.7-267b4cec46-10c0.zip/node_modules/@babel/helpers/",\
"packageDependencies": [\
["@babel/helpers", "npm:7.25.7"],\
["@babel/template", "npm:7.25.7"],\
["@babel/types", "npm:7.25.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/highlight", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-highlight-npm-7.25.7-308b20da71-10c0.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.25.7"],\
["@babel/helper-validator-identifier", "npm:7.25.7"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"],\
["picocolors", "npm:1.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/parser", [\
["npm:7.25.6", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-parser-npm-7.25.6-3cb198940b-10c0.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.25.6"],\
["@babel/types", "npm:7.25.6"]\
],\
"linkType": "HARD"\
}],\
["npm:7.25.8", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-parser-npm-7.25.8-fda12195b5-10c0.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.25.8"],\
["@babel/types", "npm:7.25.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-jsx", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.25.7-77bfb68a8c-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "npm:7.25.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:e6ed214bd933d2448f8d7e727b25a250de792a52771296a839567c7848440614c0558250477f8b8fd43bf13a360eedd9c08662c0aa7aa096976f29dd0101254b#npm:7.25.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-jsx-virtual-b4d80da79e/4/.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.25.7-77bfb68a8c-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "virtual:e6ed214bd933d2448f8d7e727b25a250de792a52771296a839567c7848440614c0558250477f8b8fd43bf13a360eedd9c08662c0aa7aa096976f29dd0101254b#npm:7.25.7"],\
["@babel/core", "npm:7.25.8"],\
["@babel/helper-plugin-utils", "npm:7.25.7"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-transform-react-jsx", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-plugin-transform-react-jsx-npm-7.25.7-fe3244a843-10c0.zip/node_modules/@babel/plugin-transform-react-jsx/",\
"packageDependencies": [\
["@babel/plugin-transform-react-jsx", "npm:7.25.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:af93b13fe0bbb9be3c4c5de793e58def7d375f09ee93862f4b071916724aec1e16472d259274fa28330bf425f9be860094394a10305e5ef24978a674fc3b000f#npm:7.25.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-react-jsx-virtual-e6ed214bd9/4/.yarn/berry/cache/@babel-plugin-transform-react-jsx-npm-7.25.7-fe3244a843-10c0.zip/node_modules/@babel/plugin-transform-react-jsx/",\
"packageDependencies": [\
["@babel/plugin-transform-react-jsx", "virtual:af93b13fe0bbb9be3c4c5de793e58def7d375f09ee93862f4b071916724aec1e16472d259274fa28330bf425f9be860094394a10305e5ef24978a674fc3b000f#npm:7.25.7"],\
["@babel/core", "npm:7.25.8"],\
["@babel/helper-annotate-as-pure", "npm:7.25.7"],\
["@babel/helper-module-imports", "npm:7.25.7"],\
["@babel/helper-plugin-utils", "npm:7.25.7"],\
["@babel/plugin-syntax-jsx", "virtual:e6ed214bd933d2448f8d7e727b25a250de792a52771296a839567c7848440614c0558250477f8b8fd43bf13a360eedd9c08662c0aa7aa096976f29dd0101254b#npm:7.25.7"],\
["@babel/types", "npm:7.25.8"],\
["@types/babel__core", "npm:7.20.5"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/template", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-template-npm-7.25.7-4db3590fa2-10c0.zip/node_modules/@babel/template/",\
"packageDependencies": [\
["@babel/template", "npm:7.25.7"],\
["@babel/code-frame", "npm:7.25.7"],\
["@babel/parser", "npm:7.25.8"],\
["@babel/types", "npm:7.25.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/traverse", [\
["npm:7.25.7", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-traverse-npm-7.25.7-0ca7b771fb-10c0.zip/node_modules/@babel/traverse/",\
"packageDependencies": [\
["@babel/traverse", "npm:7.25.7"],\
["@babel/code-frame", "npm:7.25.7"],\
["@babel/generator", "npm:7.25.7"],\
["@babel/parser", "npm:7.25.8"],\
["@babel/template", "npm:7.25.7"],\
["@babel/types", "npm:7.25.8"],\
["debug", "virtual:ddf83a29ef667ff70930bb2532e0f0943a8a39f9e9a6fd424601e629bc797129f8a3af1697368da69640ebe56f8bc231d6833fb632ec36ef002a424eca53865f#npm:4.3.7"],\
["globals", "npm:11.12.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/types", [\
["npm:7.25.6", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-types-npm-7.25.6-98df73a2ca-10c0.zip/node_modules/@babel/types/",\
"packageDependencies": [\
["@babel/types", "npm:7.25.6"],\
["@babel/helper-string-parser", "npm:7.24.8"],\
["@babel/helper-validator-identifier", "npm:7.24.7"],\
["to-fast-properties", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}],\
["npm:7.25.8", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-types-npm-7.25.8-44acfff5f6-10c0.zip/node_modules/@babel/types/",\
"packageDependencies": [\
["@babel/types", "npm:7.25.8"],\
["@babel/helper-string-parser", "npm:7.25.7"],\
["@babel/helper-validator-identifier", "npm:7.25.7"],\
["to-fast-properties", "npm:2.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emmetio/abbreviation", [\
["npm:2.3.3", {\
"packageLocation": "../../../.yarn/berry/cache/@emmetio-abbreviation-npm-2.3.3-ca85b1f1d7-10c0.zip/node_modules/@emmetio/abbreviation/",\
"packageDependencies": [\
["@emmetio/abbreviation", "npm:2.3.3"],\
["@emmetio/scanner", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emmetio/css-abbreviation", [\
["npm:2.1.8", {\
"packageLocation": "../../../.yarn/berry/cache/@emmetio-css-abbreviation-npm-2.1.8-15808fbc2a-10c0.zip/node_modules/@emmetio/css-abbreviation/",\
"packageDependencies": [\
["@emmetio/css-abbreviation", "npm:2.1.8"],\
["@emmetio/scanner", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emmetio/css-parser", [\
["npm:0.4.0", {\
"packageLocation": "../../../.yarn/berry/cache/@emmetio-css-parser-npm-0.4.0-7cf6610ddd-10c0.zip/node_modules/@emmetio/css-parser/",\
"packageDependencies": [\
["@emmetio/css-parser", "npm:0.4.0"],\
["@emmetio/stream-reader", "npm:2.2.0"],\
["@emmetio/stream-reader-utils", "npm:0.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emmetio/html-matcher", [\
["npm:1.3.0", {\
"packageLocation": "../../../.yarn/berry/cache/@emmetio-html-matcher-npm-1.3.0-f3728fa280-10c0.zip/node_modules/@emmetio/html-matcher/",\
"packageDependencies": [\
["@emmetio/html-matcher", "npm:1.3.0"],\
["@emmetio/scanner", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emmetio/scanner", [\
["npm:1.0.4", {\
"packageLocation": "../../../.yarn/berry/cache/@emmetio-scanner-npm-1.0.4-3feb65886b-10c0.zip/node_modules/@emmetio/scanner/",\
"packageDependencies": [\
["@emmetio/scanner", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emmetio/stream-reader", [\
["npm:2.2.0", {\
"packageLocation": "../../../.yarn/berry/cache/@emmetio-stream-reader-npm-2.2.0-bd31f51261-10c0.zip/node_modules/@emmetio/stream-reader/",\
"packageDependencies": [\
["@emmetio/stream-reader", "npm:2.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emmetio/stream-reader-utils", [\
["npm:0.1.0", {\
"packageLocation": "../../../.yarn/berry/cache/@emmetio-stream-reader-utils-npm-0.1.0-689344e08d-10c0.zip/node_modules/@emmetio/stream-reader-utils/",\
"packageDependencies": [\
["@emmetio/stream-reader-utils", "npm:0.1.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@emnapi/runtime", [\
["npm:1.2.0", {\
"packageLocation": "../../../.yarn/berry/cache/@emnapi-runtime-npm-1.2.0-36d2203035-10c0.zip/node_modules/@emnapi/runtime/",\
"packageDependencies": [\
["@emnapi/runtime", "npm:1.2.0"],\
["tslib", "npm:2.7.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/aix-ppc64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-aix-ppc64-npm-0.21.5-ebeb42da03/node_modules/@esbuild/aix-ppc64/",\
"packageDependencies": [\
["@esbuild/aix-ppc64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-arm", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-arm-npm-0.21.5-7e30e7b6d7/node_modules/@esbuild/android-arm/",\
"packageDependencies": [\
["@esbuild/android-arm", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-arm64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-arm64-npm-0.21.5-916e33d43e/node_modules/@esbuild/android-arm64/",\
"packageDependencies": [\
["@esbuild/android-arm64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-x64-npm-0.21.5-07abfd6fa9/node_modules/@esbuild/android-x64/",\
"packageDependencies": [\
["@esbuild/android-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/darwin-arm64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-darwin-arm64-npm-0.21.5-62349c1520/node_modules/@esbuild/darwin-arm64/",\
"packageDependencies": [\
["@esbuild/darwin-arm64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/darwin-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-darwin-x64-npm-0.21.5-491c2ae06c/node_modules/@esbuild/darwin-x64/",\
"packageDependencies": [\
["@esbuild/darwin-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/freebsd-arm64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-freebsd-arm64-npm-0.21.5-2465c8f200/node_modules/@esbuild/freebsd-arm64/",\
"packageDependencies": [\
["@esbuild/freebsd-arm64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/freebsd-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-freebsd-x64-npm-0.21.5-f866a2f0cc/node_modules/@esbuild/freebsd-x64/",\
"packageDependencies": [\
["@esbuild/freebsd-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-arm", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-arm-npm-0.21.5-9485bcbfc7/node_modules/@esbuild/linux-arm/",\
"packageDependencies": [\
["@esbuild/linux-arm", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-arm64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-arm64-npm-0.21.5-c6a54cd648/node_modules/@esbuild/linux-arm64/",\
"packageDependencies": [\
["@esbuild/linux-arm64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-ia32", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-ia32-npm-0.21.5-499a15b672/node_modules/@esbuild/linux-ia32/",\
"packageDependencies": [\
["@esbuild/linux-ia32", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-loong64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-loong64-npm-0.21.5-b2d213a264/node_modules/@esbuild/linux-loong64/",\
"packageDependencies": [\
["@esbuild/linux-loong64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-mips64el", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-mips64el-npm-0.21.5-6534e468c0/node_modules/@esbuild/linux-mips64el/",\
"packageDependencies": [\
["@esbuild/linux-mips64el", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-ppc64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-ppc64-npm-0.21.5-38298ce68c/node_modules/@esbuild/linux-ppc64/",\
"packageDependencies": [\
["@esbuild/linux-ppc64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-riscv64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-riscv64-npm-0.21.5-73ca00d59e/node_modules/@esbuild/linux-riscv64/",\
"packageDependencies": [\
["@esbuild/linux-riscv64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-s390x", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-s390x-npm-0.21.5-44720430f0/node_modules/@esbuild/linux-s390x/",\
"packageDependencies": [\
["@esbuild/linux-s390x", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/linux-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-linux-x64-npm-0.21.5-88079726c4/node_modules/@esbuild/linux-x64/",\
"packageDependencies": [\
["@esbuild/linux-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/netbsd-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-netbsd-x64-npm-0.21.5-5f21539ffa/node_modules/@esbuild/netbsd-x64/",\
"packageDependencies": [\
["@esbuild/netbsd-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/openbsd-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-openbsd-x64-npm-0.21.5-23fbf4de2b/node_modules/@esbuild/openbsd-x64/",\
"packageDependencies": [\
["@esbuild/openbsd-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/sunos-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-sunos-x64-npm-0.21.5-855a15205a/node_modules/@esbuild/sunos-x64/",\
"packageDependencies": [\
["@esbuild/sunos-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/win32-arm64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-win32-arm64-npm-0.21.5-d0ef444aab/node_modules/@esbuild/win32-arm64/",\
"packageDependencies": [\
["@esbuild/win32-arm64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/win32-ia32", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-win32-ia32-npm-0.21.5-a4fb03dad4/node_modules/@esbuild/win32-ia32/",\
"packageDependencies": [\
["@esbuild/win32-ia32", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/win32-x64", [\
["npm:0.21.5", {\
"packageLocation": "./.yarn/unplugged/@esbuild-win32-x64-npm-0.21.5-eddc2b5ad6/node_modules/@esbuild/win32-x64/",\
"packageDependencies": [\
["@esbuild/win32-x64", "npm:0.21.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-darwin-arm64", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-darwin-arm64-npm-0.33.5-c319591c53/node_modules/@img/sharp-darwin-arm64/",\
"packageDependencies": [\
["@img/sharp-darwin-arm64", "npm:0.33.5"],\
["@img/sharp-libvips-darwin-arm64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-darwin-x64", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-darwin-x64-npm-0.33.5-785c54564a/node_modules/@img/sharp-darwin-x64/",\
"packageDependencies": [\
["@img/sharp-darwin-x64", "npm:0.33.5"],\
["@img/sharp-libvips-darwin-x64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-darwin-arm64", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-darwin-arm64-npm-1.0.4-d0d063884a/node_modules/@img/sharp-libvips-darwin-arm64/",\
"packageDependencies": [\
["@img/sharp-libvips-darwin-arm64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-darwin-x64", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-darwin-x64-npm-1.0.4-6fde8e50e0/node_modules/@img/sharp-libvips-darwin-x64/",\
"packageDependencies": [\
["@img/sharp-libvips-darwin-x64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-linux-arm", [\
["npm:1.0.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-linux-arm-npm-1.0.5-99ec104f55/node_modules/@img/sharp-libvips-linux-arm/",\
"packageDependencies": [\
["@img/sharp-libvips-linux-arm", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-linux-arm64", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-linux-arm64-npm-1.0.4-24a3d8b19a/node_modules/@img/sharp-libvips-linux-arm64/",\
"packageDependencies": [\
["@img/sharp-libvips-linux-arm64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-linux-s390x", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-linux-s390x-npm-1.0.4-c4ea54fdc1/node_modules/@img/sharp-libvips-linux-s390x/",\
"packageDependencies": [\
["@img/sharp-libvips-linux-s390x", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-linux-x64", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-linux-x64-npm-1.0.4-0974f077b7/node_modules/@img/sharp-libvips-linux-x64/",\
"packageDependencies": [\
["@img/sharp-libvips-linux-x64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-linuxmusl-arm64", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-linuxmusl-arm64-npm-1.0.4-c63b2fb991/node_modules/@img/sharp-libvips-linuxmusl-arm64/",\
"packageDependencies": [\
["@img/sharp-libvips-linuxmusl-arm64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-libvips-linuxmusl-x64", [\
["npm:1.0.4", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-libvips-linuxmusl-x64-npm-1.0.4-ea67a00cef/node_modules/@img/sharp-libvips-linuxmusl-x64/",\
"packageDependencies": [\
["@img/sharp-libvips-linuxmusl-x64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-linux-arm", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-linux-arm-npm-0.33.5-2c7cd6ba15/node_modules/@img/sharp-linux-arm/",\
"packageDependencies": [\
["@img/sharp-linux-arm", "npm:0.33.5"],\
["@img/sharp-libvips-linux-arm", "npm:1.0.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-linux-arm64", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-linux-arm64-npm-0.33.5-9d6c17ffc3/node_modules/@img/sharp-linux-arm64/",\
"packageDependencies": [\
["@img/sharp-linux-arm64", "npm:0.33.5"],\
["@img/sharp-libvips-linux-arm64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-linux-s390x", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-linux-s390x-npm-0.33.5-e9edc1d1ea/node_modules/@img/sharp-linux-s390x/",\
"packageDependencies": [\
["@img/sharp-linux-s390x", "npm:0.33.5"],\
["@img/sharp-libvips-linux-s390x", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-linux-x64", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-linux-x64-npm-0.33.5-1b6c430eb4/node_modules/@img/sharp-linux-x64/",\
"packageDependencies": [\
["@img/sharp-linux-x64", "npm:0.33.5"],\
["@img/sharp-libvips-linux-x64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-linuxmusl-arm64", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-linuxmusl-arm64-npm-0.33.5-686a8ec1a7/node_modules/@img/sharp-linuxmusl-arm64/",\
"packageDependencies": [\
["@img/sharp-linuxmusl-arm64", "npm:0.33.5"],\
["@img/sharp-libvips-linuxmusl-arm64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-linuxmusl-x64", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-linuxmusl-x64-npm-0.33.5-b88b11869b/node_modules/@img/sharp-linuxmusl-x64/",\
"packageDependencies": [\
["@img/sharp-linuxmusl-x64", "npm:0.33.5"],\
["@img/sharp-libvips-linuxmusl-x64", "npm:1.0.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-wasm32", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-wasm32-npm-0.33.5-e49bff60db/node_modules/@img/sharp-wasm32/",\
"packageDependencies": [\
["@img/sharp-wasm32", "npm:0.33.5"],\
["@emnapi/runtime", "npm:1.2.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@img/sharp-win32-ia32", [\
["npm:0.33.5", {\
"packageLocation": "./.yarn/unplugged/@img-sharp-win32-ia32-npm-0.33.5-531493b2d4/node_modules/@img/sharp-win32-ia32/",\
"packageDependencies": [\
["@img/sharp-win32-ia32", "npm:0.33.5"]\
],\
"linkType": "HARD"\