This repository was archived by the owner on Feb 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.workspace.lock
More file actions
3000 lines (2696 loc) · 105 KB
/
yarn.workspace.lock
File metadata and controls
3000 lines (2696 loc) · 105 KB
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
# This file is generated by running "yarn install" inside your project through the workspace-lockfile plugin.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@algolia/cache-browser-local-storage@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/cache-browser-local-storage@npm:4.24.0"
dependencies:
"@algolia/cache-common": "npm:4.24.0"
checksum: 10c0/68823c3b1c07dab093de98e678e2ff7fcf7a40915a157715f6f51d073e3865086be98cbbe554b7bf9e0514db5dd9e726033e27e566d9e5db059cb5059c3436cc
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/cache-common@npm:4.24.0"
checksum: 10c0/ad481ad50d7ea92d0cce525757627f4a647b5373dc6d3cbed6405d05cb83f21a110919e7133e5233d5b13c2c8f59ed9e927efdbc82e70571707709075b07d2c6
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/cache-in-memory@npm:4.24.0"
dependencies:
"@algolia/cache-common": "npm:4.24.0"
checksum: 10c0/2956600b2722f113373dbb71449f546afb5a0fb1a3d1558a1a3e957b7a630d1f25045c29646c8dbb44cdffe6ff4c9d1219bf63fc9fd8e4d5467381c7150e09f9
languageName: node
linkType: hard
"@algolia/client-account@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-account@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/client-search": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/3dd52dd692a2194eb45844280e6261192d5a4ef99aec729a09a01da5cf071fd77b37c6d164bf8877823efc1484d576068d76ada764a4f0624238a3475bc199b2
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-analytics@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/client-search": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/8d02e6d0eb0dcde099832c62fa7d7e9910b2757b4d37e07e1eefb65a12fef7e7ce3d73fda23e8ee02d53953a91efc15086016b1af5e9fea9227dfc0fc61c9f63
languageName: node
linkType: hard
"@algolia/client-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-common@npm:4.24.0"
dependencies:
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/9e75d0bb51bb04f099e823e4397d1bac6659e1ecb7c7a73a5eaf9153632d544bd6c62a4961b606490220b236361eb8b7b77a5e4c47f12aefdd2952b14ce2fd18
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-personalization@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/9193e032841ae991ce6dd8c8988608d0d83a6785681abf26055812506aaf070db8d8f44403d0270384ff39530677603d103c330a869a397181d594bebe46b4b0
languageName: node
linkType: hard
"@algolia/client-search@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-search@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/d161235014fa73acc0ff04d737c695b7357c060d31db6d602464b27ba846208c6aeb35b179e76d4c33b51329b77de0c460f6cb21b66d364c18a5534874c7b987
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/logger-common@npm:4.24.0"
checksum: 10c0/1ebe93901a2b3ce41696b535d028337c1c6a98a4262868117c16dd603cc8bb106b840e45cf53c08d098cf518e07bedc64a59cc86bef18795dc49031c2c208d31
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/logger-console@npm:4.24.0"
dependencies:
"@algolia/logger-common": "npm:4.24.0"
checksum: 10c0/fdfa3983e6c38cc7b69d66e1085ac702e009d693bd49d64b27cad9ba4197788a8784529a8ed9c25e6ccd51cc4ad3a2427241ecc322c22ca2c8ce6a8d4d94fe69
languageName: node
linkType: hard
"@algolia/recommend@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/recommend@npm:4.24.0"
dependencies:
"@algolia/cache-browser-local-storage": "npm:4.24.0"
"@algolia/cache-common": "npm:4.24.0"
"@algolia/cache-in-memory": "npm:4.24.0"
"@algolia/client-common": "npm:4.24.0"
"@algolia/client-search": "npm:4.24.0"
"@algolia/logger-common": "npm:4.24.0"
"@algolia/logger-console": "npm:4.24.0"
"@algolia/requester-browser-xhr": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/requester-node-http": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/685fb5c1d85d7b9fd39d9246b49da5be4199fecc144bb350ed92fc191b66e4e1101ee6df9ca857ac5096f587638fa3366e01ddca0258f11000aa092ed68daea3
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/requester-browser-xhr@npm:4.24.0"
dependencies:
"@algolia/requester-common": "npm:4.24.0"
checksum: 10c0/2d277b291bcc0a388f114116879c15a96c057f698b026c32e719b354c2e2e03e05b3c304f45d2354eb4dd8dfa519d481af51ce8ef19b6fb4fd6d384cf41373de
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/requester-common@npm:4.24.0"
checksum: 10c0/cf88ca1f04f4243515bbfa05d7cf51afe6a57904390d9e1ccab799bae20f6fa77e954d9eee9d5c718086582aeb478e271ccf1d5a6a5ab943494250dce820268e
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/requester-node-http@npm:4.24.0"
dependencies:
"@algolia/requester-common": "npm:4.24.0"
checksum: 10c0/e9cef1463f29035a44f12941ddeb343a213ff512c61ade46a07db19b2023f49a5ac12024a3f56d8b9c0c5b2bd32466030c5e27b26a6a6e17773b810388ddb3b7
languageName: node
linkType: hard
"@algolia/transporter@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/transporter@npm:4.24.0"
dependencies:
"@algolia/cache-common": "npm:4.24.0"
"@algolia/logger-common": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
checksum: 10c0/9eee8e6613c8d2a5562e4df284dc7b0804a7bf80586fd8512ad769dc4829f947a334480378d94efd3cc57ca4d400886eb677786a3c5664f85881093f9e27cab7
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
languageName: node
linkType: hard
"@isaacs/balanced-match@npm:^4.0.1":
version: 4.0.1
resolution: "@isaacs/balanced-match@npm:4.0.1"
checksum: 10c0/7da011805b259ec5c955f01cee903da72ad97c5e6f01ca96197267d3f33103d5b2f8a1af192140f3aa64526c593c8d098ae366c2b11f7f17645d12387c2fd420
languageName: node
linkType: hard
"@isaacs/brace-expansion@npm:^5.0.0":
version: 5.0.0
resolution: "@isaacs/brace-expansion@npm:5.0.0"
dependencies:
"@isaacs/balanced-match": "npm:^4.0.1"
checksum: 10c0/b4d4812f4be53afc2c5b6c545001ff7a4659af68d4484804e9d514e183d20269bb81def8682c01a22b17c4d6aed14292c8494f7d2ac664e547101c1a905aa977
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/agent@npm:3.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271
languageName: node
linkType: hard
"@npmcli/fs@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/fs@npm:4.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@sigstore/bundle@npm:^3.1.0":
version: 3.1.0
resolution: "@sigstore/bundle@npm:3.1.0"
dependencies:
"@sigstore/protobuf-specs": "npm:^0.4.0"
checksum: 10c0/f34afa3efe81b0925cf1568eeea7678876c5889799fcdf9b81d1062067108e74fc3f3480b0d2b7daa7389f944e4a2523b5fc98d65dbbaa34d206d8c2edc4fa5a
languageName: node
linkType: hard
"@sigstore/core@npm:^2.0.0":
version: 2.0.0
resolution: "@sigstore/core@npm:2.0.0"
checksum: 10c0/bb7e668aedcda68312d2ff7c986fd0ba29057ca4dfbaef516c997b0799cd8858b2fc8017a7946fd2e43f237920adbcaa7455097a0a02909ed86cad9f98d592d4
languageName: node
linkType: hard
"@sigstore/protobuf-specs@npm:^0.4.0":
version: 0.4.1
resolution: "@sigstore/protobuf-specs@npm:0.4.1"
checksum: 10c0/8de75bc84f307b7d7bf4fa265f89a8bfa717d96e091be29ee9be1ffd6036b81355a349955e5036b86570d37f2b30b18a68a43f5e40bd958bd4128aa6bb39a3f3
languageName: node
linkType: hard
"@sigstore/sign@npm:^3.1.0":
version: 3.1.0
resolution: "@sigstore/sign@npm:3.1.0"
dependencies:
"@sigstore/bundle": "npm:^3.1.0"
"@sigstore/core": "npm:^2.0.0"
"@sigstore/protobuf-specs": "npm:^0.4.0"
make-fetch-happen: "npm:^14.0.2"
proc-log: "npm:^5.0.0"
promise-retry: "npm:^2.0.1"
checksum: 10c0/7647f3a1350a09d66e7d77fdf8edf6eeb047f818acc2cd06325fc8ec9f0cd654dd25909876147b7ed052d459dc6a1d64e8cbaa44486300b241c3b139d778f254
languageName: node
linkType: hard
"@sigstore/tuf@npm:^3.1.0":
version: 3.1.0
resolution: "@sigstore/tuf@npm:3.1.0"
dependencies:
"@sigstore/protobuf-specs": "npm:^0.4.0"
tuf-js: "npm:^3.0.1"
checksum: 10c0/940237295bec3817ef4dbfd48de8b9a73b4e297966c05e81b6103747904def999f27499adb3de572407f2c72c6f28d2c699a6c8446be808b599c427a9903f081
languageName: node
linkType: hard
"@sigstore/verify@npm:^2.1.0":
version: 2.1.0
resolution: "@sigstore/verify@npm:2.1.0"
dependencies:
"@sigstore/bundle": "npm:^3.1.0"
"@sigstore/core": "npm:^2.0.0"
"@sigstore/protobuf-specs": "npm:^0.4.0"
checksum: 10c0/3e4f575c25d352ce4953e1fedd220c481199e8a704c5906b1cea933945020dc77bdc25090a0957ef15f01d2d475bd4bc3dbc1edf8acbb2f3a3448befdb2eca7e
languageName: node
linkType: hard
"@sindresorhus/is@npm:^4.0.0":
version: 4.6.0
resolution: "@sindresorhus/is@npm:4.6.0"
checksum: 10c0/33b6fb1d0834ec8dd7689ddc0e2781c2bfd8b9c4e4bacbcb14111e0ae00621f2c264b8a7d36541799d74888b5dccdf422a891a5cb5a709ace26325eedc81e22e
languageName: node
linkType: hard
"@szmarczak/http-timer@npm:^4.0.5":
version: 4.0.6
resolution: "@szmarczak/http-timer@npm:4.0.6"
dependencies:
defer-to-connect: "npm:^2.0.0"
checksum: 10c0/73946918c025339db68b09abd91fa3001e87fc749c619d2e9c2003a663039d4c3cb89836c98a96598b3d47dec2481284ba85355392644911f5ecd2336536697f
languageName: node
linkType: hard
"@tufjs/canonical-json@npm:2.0.0":
version: 2.0.0
resolution: "@tufjs/canonical-json@npm:2.0.0"
checksum: 10c0/52c5ffaef1483ed5c3feedfeba26ca9142fa386eea54464e70ff515bd01c5e04eab05d01eff8c2593291dcaf2397ca7d9c512720e11f52072b04c47a5c279415
languageName: node
linkType: hard
"@tufjs/models@npm:3.0.1":
version: 3.0.1
resolution: "@tufjs/models@npm:3.0.1"
dependencies:
"@tufjs/canonical-json": "npm:2.0.0"
minimatch: "npm:^9.0.5"
checksum: 10c0/0b2022589139102edf28f7fdcd094407fc98ac25bf530ebcf538dd63152baea9b6144b713c8dfc4f6b7580adeff706ab6ecc5f9716c4b816e58a04419abb1926
languageName: node
linkType: hard
"@types/cacheable-request@npm:^6.0.1":
version: 6.0.3
resolution: "@types/cacheable-request@npm:6.0.3"
dependencies:
"@types/http-cache-semantics": "npm:*"
"@types/keyv": "npm:^3.1.4"
"@types/node": "npm:*"
"@types/responselike": "npm:^1.0.0"
checksum: 10c0/10816a88e4e5b144d43c1d15a81003f86d649776c7f410c9b5e6579d0ad9d4ca71c541962fb403077388b446e41af7ae38d313e46692144985f006ac5e11fa03
languageName: node
linkType: hard
"@types/emscripten@npm:^1.39.6":
version: 1.40.1
resolution: "@types/emscripten@npm:1.40.1"
checksum: 10c0/0d6cd29e551f85ba49a0e7d58de16c857960d40e57553e7cc2860b7d80c4210c992ed292998ec3fd3bdc3b41d96541e91d01a6c232106ac0ad79b4710e87f38d
languageName: node
linkType: hard
"@types/http-cache-semantics@npm:*":
version: 4.0.4
resolution: "@types/http-cache-semantics@npm:4.0.4"
checksum: 10c0/51b72568b4b2863e0fe8d6ce8aad72a784b7510d72dc866215642da51d84945a9459fa89f49ec48f1e9a1752e6a78e85a4cda0ded06b1c73e727610c925f9ce6
languageName: node
linkType: hard
"@types/keyv@npm:^3.1.4":
version: 3.1.4
resolution: "@types/keyv@npm:3.1.4"
dependencies:
"@types/node": "npm:*"
checksum: 10c0/ff8f54fc49621210291f815fe5b15d809fd7d032941b3180743440bd507ecdf08b9e844625fa346af568c84bf34114eb378dcdc3e921a08ba1e2a08d7e3c809c
languageName: node
linkType: hard
"@types/node@npm:*, @types/node@npm:^24.10.1":
version: 24.10.1
resolution: "@types/node@npm:24.10.1"
dependencies:
undici-types: "npm:~7.16.0"
checksum: 10c0/d6bca7a78f550fbb376f236f92b405d676003a8a09a1b411f55920ef34286ee3ee51f566203920e835478784df52662b5b2af89159d9d319352e9ea21801c002
languageName: node
linkType: hard
"@types/node@npm:^18.19.124":
version: 18.19.130
resolution: "@types/node@npm:18.19.130"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 10c0/22ba2bc9f8863101a7e90a56aaeba1eb3ebdc51e847cef4a6d188967ab1acbce9b4f92251372fd0329ecb924bbf610509e122c3dfe346c04dbad04013d4ad7d0
languageName: node
linkType: hard
"@types/responselike@npm:^1.0.0":
version: 1.0.3
resolution: "@types/responselike@npm:1.0.3"
dependencies:
"@types/node": "npm:*"
checksum: 10c0/a58ba341cb9e7d74f71810a88862da7b2a6fa42e2a1fc0ce40498f6ea1d44382f0640117057da779f74c47039f7166bf48fad02dc876f94e005c7afa50f5e129
languageName: node
linkType: hard
"@types/semver@npm:^7.1.0":
version: 7.7.0
resolution: "@types/semver@npm:7.7.0"
checksum: 10c0/6b5f65f647474338abbd6ee91a6bbab434662ddb8fe39464edcbcfc96484d388baad9eb506dff217b6fc1727a88894930eb1f308617161ac0f376fe06be4e1ee
languageName: node
linkType: hard
"@types/treeify@npm:^1.0.0":
version: 1.0.3
resolution: "@types/treeify@npm:1.0.3"
checksum: 10c0/758902638ff83a790c13359729d77aeb80aae50f7039670037e3a0ba2bcc7b09dd49173ab21a96946d83af1682fcd70e448e49151ecd46e190f8925077142d4a
languageName: node
linkType: hard
"@types/yoga-layout@npm:1.9.2":
version: 1.9.2
resolution: "@types/yoga-layout@npm:1.9.2"
checksum: 10c0/9f2a8618afe3e2e18e76eeaa4ec7d09a85f01f071231f8ff21388d851f940dd7ae5867a5f9aef29eafe44c47453a328d3c718fff1451ab62266450b415e43150
languageName: node
linkType: hard
"@yarnpkg/builder@npm:^4.2.3":
version: 4.2.3
resolution: "@yarnpkg/builder@npm:4.2.3"
dependencies:
"@yarnpkg/cli": "npm:^4.10.0"
"@yarnpkg/core": "npm:^4.4.4"
"@yarnpkg/fslib": "npm:^3.1.3"
chalk: "npm:^4.1.2"
clipanion: "npm:^4.0.0-rc.2"
esbuild: "npm:esbuild-wasm@^0.23.0"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
bin:
builder: ./lib/cli.js
checksum: 10c0/916578cee6a41dd69b7ab3a2b45595780e76bdca3c173b1c1139c14e9ea495a76638d7516c25bc4524ca8df303baaa180f294db9023110a1fb9a124d44a5ea92
languageName: node
linkType: hard
"@yarnpkg/cli@npm:^4.12.0":
version: 4.12.0
resolution: "@yarnpkg/cli@npm:4.12.0"
dependencies:
"@yarnpkg/core": "npm:^4.5.0"
"@yarnpkg/fslib": "npm:^3.1.4"
"@yarnpkg/libzip": "npm:^3.2.2"
"@yarnpkg/parsers": "npm:^3.0.3"
"@yarnpkg/plugin-catalog": "npm:^1.0.2"
"@yarnpkg/plugin-compat": "npm:^4.0.12"
"@yarnpkg/plugin-constraints": "npm:^4.0.5"
"@yarnpkg/plugin-dlx": "npm:^4.0.2"
"@yarnpkg/plugin-essentials": "npm:^4.4.4"
"@yarnpkg/plugin-exec": "npm:^3.0.2"
"@yarnpkg/plugin-file": "npm:^3.0.2"
"@yarnpkg/plugin-git": "npm:^3.1.4"
"@yarnpkg/plugin-github": "npm:^3.0.2"
"@yarnpkg/plugin-http": "npm:^3.0.3"
"@yarnpkg/plugin-init": "npm:^4.1.2"
"@yarnpkg/plugin-interactive-tools": "npm:^4.0.3"
"@yarnpkg/plugin-jsr": "npm:^1.1.1"
"@yarnpkg/plugin-link": "npm:^3.0.2"
"@yarnpkg/plugin-nm": "npm:^4.0.8"
"@yarnpkg/plugin-npm": "npm:^3.4.0"
"@yarnpkg/plugin-npm-cli": "npm:^4.4.0"
"@yarnpkg/plugin-pack": "npm:^4.0.4"
"@yarnpkg/plugin-patch": "npm:^4.0.3"
"@yarnpkg/plugin-pnp": "npm:^4.1.3"
"@yarnpkg/plugin-pnpm": "npm:^2.1.2"
"@yarnpkg/plugin-stage": "npm:^4.0.2"
"@yarnpkg/plugin-typescript": "npm:^4.1.3"
"@yarnpkg/plugin-version": "npm:^4.2.0"
"@yarnpkg/plugin-workspace-tools": "npm:^4.1.6"
"@yarnpkg/shell": "npm:^4.1.3"
ci-info: "npm:^4.0.0"
clipanion: "npm:^4.0.0-rc.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
typanion: "npm:^3.14.0"
peerDependencies:
"@yarnpkg/core": ^4.5.0
checksum: 10c0/eaa7b75f072524b9576a4cf82ef65c49b20dac586382bf00503bfa9d512f178391b3b290a5ba5179068af496b405b9bd6967f9f7cfd4c46add94e724b33ef2df
languageName: node
linkType: hard
"@yarnpkg/core@npm:^4.4.2, @yarnpkg/core@npm:^4.4.4, @yarnpkg/core@npm:^4.5.0":
version: 4.5.0
resolution: "@yarnpkg/core@npm:4.5.0"
dependencies:
"@arcanis/slice-ansi": "npm:^1.1.1"
"@types/semver": "npm:^7.1.0"
"@types/treeify": "npm:^1.0.0"
"@yarnpkg/fslib": "npm:^3.1.4"
"@yarnpkg/libzip": "npm:^3.2.2"
"@yarnpkg/parsers": "npm:^3.0.3"
"@yarnpkg/shell": "npm:^4.1.3"
camelcase: "npm:^5.3.1"
chalk: "npm:^4.1.2"
ci-info: "npm:^4.0.0"
clipanion: "npm:^4.0.0-rc.2"
cross-spawn: "npm:^7.0.3"
diff: "npm:^5.1.0"
dotenv: "npm:^16.3.1"
es-toolkit: "npm:^1.39.7"
fast-glob: "npm:^3.2.2"
got: "npm:^11.7.0"
hpagent: "npm:^1.2.0"
micromatch: "npm:^4.0.2"
p-limit: "npm:^2.2.0"
semver: "npm:^7.1.2"
strip-ansi: "npm:^6.0.0"
tar: "npm:^6.0.5"
tinylogic: "npm:^2.0.0"
treeify: "npm:^1.1.0"
tslib: "npm:^2.4.0"
checksum: 10c0/3fc4a161d243279c3d554a723dd21192bdaade0c852daffdb991e8411e3874ec1c50547d5bcc1abd14395290b820e3714f4d5a02a7bafcfd65509ad40dbeb2d1
languageName: node
linkType: hard
"@yarnpkg/extensions@npm:^2.0.6":
version: 2.0.6
resolution: "@yarnpkg/extensions@npm:2.0.6"
peerDependencies:
"@yarnpkg/core": ^4.4.2
checksum: 10c0/3be3689d0c01f240fcc1553f8eaf50bb926dc98e2a81e2f26eb94314c832436c7990d94beb2ca5da0d578d86f3adf91595ddbaa5b6b96c2869fad864650e841b
languageName: node
linkType: hard
"@yarnpkg/fslib@npm:^3.1.2, @yarnpkg/fslib@npm:^3.1.3, @yarnpkg/fslib@npm:^3.1.4":
version: 3.1.4
resolution: "@yarnpkg/fslib@npm:3.1.4"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/d38e108a6349b34b6bd885ad9fc8dcc3b7d50be5e54246e260cba899a80b5c91c8e9b27ad1e9c59b2d46e02cc07f8b7d839a851e388aa568d6efc85f5d6d10dc
languageName: node
linkType: hard
"@yarnpkg/libui@npm:^3.0.2":
version: 3.0.2
resolution: "@yarnpkg/libui@npm:3.0.2"
dependencies:
tslib: "npm:^2.4.0"
peerDependencies:
ink: ^3.0.8
react: ^17.0.2
checksum: 10c0/ca9523992c2168864e334da4e83f682c65616e7d25a02fd3e8900b4ee22577e861f7beb62b3ca327c1b0b59b858a47ca70b3e48e92900790e134c1b698efa2df
languageName: node
linkType: hard
"@yarnpkg/libzip@npm:^3.2.1, @yarnpkg/libzip@npm:^3.2.2":
version: 3.2.2
resolution: "@yarnpkg/libzip@npm:3.2.2"
dependencies:
"@types/emscripten": "npm:^1.39.6"
"@yarnpkg/fslib": "npm:^3.1.3"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/fslib": ^3.1.3
checksum: 10c0/40f5c63520477c9d5ed98e0ad888a5aa48f5641df883664b6892be2b4068b5489ac030123fe3569599269adc3e773a6ca890c41e033c71daf37a9fa51011784a
languageName: node
linkType: hard
"@yarnpkg/nm@npm:^4.0.7":
version: 4.0.7
resolution: "@yarnpkg/nm@npm:4.0.7"
dependencies:
"@yarnpkg/core": "npm:^4.4.2"
"@yarnpkg/fslib": "npm:^3.1.2"
"@yarnpkg/pnp": "npm:^4.1.1"
checksum: 10c0/68c29613bd4e22a061a88c50221f8e3eeb970283b53f7202013aaee21dad379dac1acd80107e23bac1ab70f459dce741e5606639592738a2e89af9f1a9529d6c
languageName: node
linkType: hard
"@yarnpkg/parsers@npm:^3.0.3":
version: 3.0.3
resolution: "@yarnpkg/parsers@npm:3.0.3"
dependencies:
js-yaml: "npm:^3.10.0"
tslib: "npm:^2.4.0"
checksum: 10c0/70c2fa011bf28a517a8ee4264dd93d7590f6e3d02c6d4feb50533f405ca3b100cb156f11405b9a34f7c51c6893d3d8b051554dddfd5afaae2067f921512447a3
languageName: node
linkType: hard
"@yarnpkg/plugin-catalog@npm:^1.0.2":
version: 1.0.2
resolution: "@yarnpkg/plugin-catalog@npm:1.0.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.4"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.5.0
"@yarnpkg/plugin-pack": ^4.0.4
checksum: 10c0/e3a9734f1287ae7ed905ccd9ba5b384f8f22df4d22a24e25c08858a6ce171aaf92a30dc11de3cf689aae19eee80c6dba277b973dde6bb54f72c40f2cf4157d3c
languageName: node
linkType: hard
"@yarnpkg/plugin-compat@npm:^4.0.12":
version: 4.0.12
resolution: "@yarnpkg/plugin-compat@npm:4.0.12"
dependencies:
"@yarnpkg/extensions": "npm:^2.0.6"
peerDependencies:
"@yarnpkg/core": ^4.4.2
"@yarnpkg/plugin-patch": ^4.0.3
checksum: 10c0/895f4adf42d5abd16b89e06831c7b0c0911ffecbae9820a933e65788d6df8a018a462eb0fe17db23881dfb62da67a25dede050a6291c4dddb5eea7bdf3101c86
languageName: node
linkType: hard
"@yarnpkg/plugin-constraints@npm:^4.0.5":
version: 4.0.5
resolution: "@yarnpkg/plugin-constraints@npm:4.0.5"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
clipanion: "npm:^4.0.0-rc.2"
es-toolkit: "npm:^1.39.7"
tau-prolog: "npm:^0.2.66"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.3
"@yarnpkg/core": ^4.4.3
checksum: 10c0/a3d8e0c9bf7af8009a70f5ab50eb0c5cbbdc5800ad4665fbf5843b01537eddab71062eee1c7f3872377b847f770a79f395073ba3a70dd9e3cee071538bef2b78
languageName: node
linkType: hard
"@yarnpkg/plugin-dlx@npm:^4.0.2":
version: 4.0.2
resolution: "@yarnpkg/plugin-dlx@npm:4.0.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.2
"@yarnpkg/core": ^4.4.2
checksum: 10c0/c7af7bea6b1c146aba1658731475f826bbe149f7695b18ea8968f7bcfbb8a5aee49cc27c4b7c6642b4c23a24a9652225c72152d5ea03f9c6a77610dbf4a95b36
languageName: node
linkType: hard
"@yarnpkg/plugin-essentials@npm:^4.4.4":
version: 4.4.4
resolution: "@yarnpkg/plugin-essentials@npm:4.4.4"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.3"
"@yarnpkg/parsers": "npm:^3.0.3"
ci-info: "npm:^4.0.0"
clipanion: "npm:^4.0.0-rc.2"
enquirer: "npm:^2.3.6"
es-toolkit: "npm:^1.39.7"
micromatch: "npm:^4.0.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
typanion: "npm:^3.14.0"
peerDependencies:
"@yarnpkg/cli": ^4.10.0
"@yarnpkg/core": ^4.4.4
"@yarnpkg/plugin-git": ^3.1.3
checksum: 10c0/ed0545652ab404f028ce9996dc2780d66eb75dd5855b7213392456703ffc0aa33224a1f81df64fca1e17103f44d1644a2d3b0b688525dba96e6069c738e95691
languageName: node
linkType: hard
"@yarnpkg/plugin-exec@npm:^3.0.2":
version: 3.0.2
resolution: "@yarnpkg/plugin-exec@npm:3.0.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.4.2
checksum: 10c0/eeefae30902e264c664880ac8bfc78aaed3d2989a11b45c5ad1293b77e58690e525a670d4a159c672d47c96c754098ec5dbdddff1fba097ea29c83ddc4f07993
languageName: node
linkType: hard
"@yarnpkg/plugin-file@npm:^3.0.2":
version: 3.0.2
resolution: "@yarnpkg/plugin-file@npm:3.0.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
"@yarnpkg/libzip": "npm:^3.2.1"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.4.2
checksum: 10c0/42f4d4a1fe91ee8ee396e2ce35c85b90f92c0547cb3b2540aa55f03050c1d5fa30118318feb5e1676bacfd955607826a2c6259a4912268dff22c3c8d4ced40d2
languageName: node
linkType: hard
"@yarnpkg/plugin-git@npm:^3.1.4":
version: 3.1.4
resolution: "@yarnpkg/plugin-git@npm:3.1.4"
dependencies:
"@types/semver": "npm:^7.1.0"
"@yarnpkg/fslib": "npm:^3.1.4"
clipanion: "npm:^4.0.0-rc.2"
es-toolkit: "npm:^1.39.7"
git-url-parse: "npm:^13.1.0"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.5.0
checksum: 10c0/c71d1a9b6f2ad226ba52ba43be46f1477d5323be58920ffbc1d8df7180931c0652a4480a71ababd8da07c28c0902ceb85817f3178e7d25c5266eb3fbbf845494
languageName: node
linkType: hard
"@yarnpkg/plugin-github@npm:^3.0.2":
version: 3.0.2
resolution: "@yarnpkg/plugin-github@npm:3.0.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.4.2
"@yarnpkg/plugin-git": ^3.1.2
checksum: 10c0/64fbda413d2cc0b46c60e413564e09f5e60ffa036f428fd0893652c22a7e7b0b3ebd7be1810c46ec395d27be6c28050459b0a5cc75d584c6fcb4474ff54aa21c
languageName: node
linkType: hard
"@yarnpkg/plugin-http@npm:^3.0.3":
version: 3.0.3
resolution: "@yarnpkg/plugin-http@npm:3.0.3"
dependencies:
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.4.2
checksum: 10c0/958d46ee1b0ae57a51356046063bca50653d7b5c1be3aea43bc7bd17658ed4e802055733562d05189c787478b2d5ebf255a42bdd792d07cb7d4a042663c9dd61
languageName: node
linkType: hard
"@yarnpkg/plugin-init@npm:^4.1.2":
version: 4.1.2
resolution: "@yarnpkg/plugin-init@npm:4.1.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.2
"@yarnpkg/core": ^4.4.2
checksum: 10c0/7417948d62dcaba95fd74727c8dc02e61a4d0e5c7e4b8cc20738b4db9cc42590f82a546aafc271e0fd1a88bce5b91aae277b93dfd63be4d608585310ceec6264
languageName: node
linkType: hard
"@yarnpkg/plugin-interactive-tools@npm:^4.0.3":
version: 4.0.3
resolution: "@yarnpkg/plugin-interactive-tools@npm:4.0.3"
dependencies:
"@yarnpkg/libui": "npm:^3.0.2"
algoliasearch: "npm:^4.2.0"
clipanion: "npm:^4.0.0-rc.2"
diff: "npm:^5.1.0"
ink: "npm:^3.2.0"
ink-text-input: "npm:^4.0.3"
react: "npm:^17.0.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.2
"@yarnpkg/core": ^4.4.2
"@yarnpkg/plugin-essentials": ^4.4.1
checksum: 10c0/efbb765cef645ee54bf45cf4033da2e4c83648c56f4e987045f5be30b844bd6ee39412f522afbf182f3d88e25d76be52af59998ac98c64ad1c06b1f5de6b5278
languageName: node
linkType: hard
"@yarnpkg/plugin-jsr@npm:^1.1.1":
version: 1.1.1
resolution: "@yarnpkg/plugin-jsr@npm:1.1.1"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.4.2
checksum: 10c0/a407b6ee832171d1e5bd7190673f582ec05bbf3942e939ac1224cf78115c43cc08d17d24878d724cc03aa7931da4d72f69a990e1918b3f888c6c8471d879cdb3
languageName: node
linkType: hard
"@yarnpkg/plugin-link@npm:^3.0.2":
version: 3.0.2
resolution: "@yarnpkg/plugin-link@npm:3.0.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.4.2
checksum: 10c0/e9531d1cded1d9915038b5f3f4296e128424dbadea5dade93418347284525700c12cb643063a5e8d073c59d2d5e1068e0e076c5de5e499f662ad0e73bd1cbdfe
languageName: node
linkType: hard
"@yarnpkg/plugin-nm@npm:^4.0.8":
version: 4.0.8
resolution: "@yarnpkg/plugin-nm@npm:4.0.8"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.3"
"@yarnpkg/libzip": "npm:^3.2.2"
"@yarnpkg/nm": "npm:^4.0.7"
"@yarnpkg/parsers": "npm:^3.0.3"
"@yarnpkg/plugin-pnp": "npm:^4.1.2"
"@yarnpkg/pnp": "npm:^4.1.2"
"@zkochan/cmd-shim": "npm:^5.1.0"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.10.0
"@yarnpkg/core": ^4.4.4
checksum: 10c0/9dc550dc018cde5a7033d13e0e301560751e6b26fffb5d6fa48ac3edd72a6df88fcdb7fc1f75caf1aa2e5b3d161238ee131a767cc3a13d5583408c3a7cbe304c
languageName: node
linkType: hard
"@yarnpkg/plugin-npm-cli@npm:^4.4.0":
version: 4.4.0
resolution: "@yarnpkg/plugin-npm-cli@npm:4.4.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.4"
clipanion: "npm:^4.0.0-rc.2"
enquirer: "npm:^2.3.6"
micromatch: "npm:^4.0.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
typanion: "npm:^3.14.0"
peerDependencies:
"@yarnpkg/cli": ^4.12.0
"@yarnpkg/core": ^4.5.0
"@yarnpkg/plugin-npm": ^3.4.0
"@yarnpkg/plugin-pack": ^4.0.4
checksum: 10c0/3b578ec8ecd6bc55cc1c300ee0662a40854b2a08a5e4f9abcf3839ee1b54f764036b75a2fc0404ea79d8f22db3fad5b129ff7f166ac2cb672416b46ac29f5a9a
languageName: node
linkType: hard
"@yarnpkg/plugin-npm@npm:^3.4.0":
version: 3.4.0
resolution: "@yarnpkg/plugin-npm@npm:3.4.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.4"
enquirer: "npm:^2.3.6"
es-toolkit: "npm:^1.39.7"
micromatch: "npm:^4.0.2"
semver: "npm:^7.1.2"
sigstore: "npm:^3.1.0"
ssri: "npm:^12.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.5.0
"@yarnpkg/plugin-pack": ^4.0.4
checksum: 10c0/957dace25b0ee5eaab33af06ce39584e8c83f2b525c09b5f6f1106b2f81e567d130b16f1811f8ed2da39a6962b66e0a91a217e53d014cea905cadd76e5621c28
languageName: node
linkType: hard
"@yarnpkg/plugin-pack@npm:^4.0.2, @yarnpkg/plugin-pack@npm:^4.0.4":
version: 4.0.4
resolution: "@yarnpkg/plugin-pack@npm:4.0.4"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.3"
clipanion: "npm:^4.0.0-rc.2"
micromatch: "npm:^4.0.2"
tar-stream: "npm:^2.0.1"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.10.1
"@yarnpkg/core": ^4.4.4
checksum: 10c0/a13eb6d7546b0b2cc4d5c6f5e8f8afa82ea88a015e120fd731164d82f9f3d73854a31502c655759460f803e1549c0c0f3ad6286e7d6d275b5b1d8eda21bf9187
languageName: node
linkType: hard
"@yarnpkg/plugin-patch@npm:^4.0.3":
version: 4.0.3
resolution: "@yarnpkg/plugin-patch@npm:4.0.3"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
"@yarnpkg/libzip": "npm:^3.2.1"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.2
"@yarnpkg/core": ^4.4.2
checksum: 10c0/9ceccb7cdd36d45eadff5cca951fad2022102c67da8dab803b6ed071866e7fcbed9fc92d2b7372fc3b59b12bca685bdf9097762f754adbb7aa1065c8832ca9c4
languageName: node
linkType: hard
"@yarnpkg/plugin-pnp@npm:^4.1.1, @yarnpkg/plugin-pnp@npm:^4.1.2, @yarnpkg/plugin-pnp@npm:^4.1.3":
version: 4.1.3
resolution: "@yarnpkg/plugin-pnp@npm:4.1.3"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.4"
"@yarnpkg/plugin-stage": "npm:^4.0.2"
"@yarnpkg/pnp": "npm:^4.1.3"
clipanion: "npm:^4.0.0-rc.2"
micromatch: "npm:^4.0.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.11.0
"@yarnpkg/core": ^4.5.0
checksum: 10c0/c712e943fe33397b5e5e25b1dfc094afd7e468a266a5f886a4e8e91176ee723c5399f929b2a62e6817d9aa0fb61a8475a52f0b65fe965533cf51fcd055ff57dc
languageName: node
linkType: hard
"@yarnpkg/plugin-pnpm@npm:^2.1.2":
version: 2.1.2
resolution: "@yarnpkg/plugin-pnpm@npm:2.1.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
"@yarnpkg/plugin-pnp": "npm:^4.1.1"
"@yarnpkg/plugin-stage": "npm:^4.0.2"
clipanion: "npm:^4.0.0-rc.2"
p-limit: "npm:^2.2.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.3
"@yarnpkg/core": ^4.4.3
checksum: 10c0/c6e9f8a83d5ef6a5c12ac88c9e443bbf75de85ef41a37702c412767762e1c4a28fb352ec43f4404c1def4dfcd2b0c74ed38859c4ba3b970f9d62b095e79f9d2a
languageName: node
linkType: hard
"@yarnpkg/plugin-stage@npm:^4.0.2":
version: 4.0.2
resolution: "@yarnpkg/plugin-stage@npm:4.0.2"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.2
"@yarnpkg/core": ^4.4.2
checksum: 10c0/96d803980c42a8cb69f84bd0a041b020067be892eafd26ebed7cb3d1c5814185025d2b77218f2c74aedf1041e12b02ff580a8cb49c1ccb927c303f5b02c330b2
languageName: node
linkType: hard
"@yarnpkg/plugin-typescript@npm:^4.1.3":
version: 4.1.3
resolution: "@yarnpkg/plugin-typescript@npm:4.1.3"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
"@yarnpkg/plugin-pack": "npm:^4.0.2"
algoliasearch: "npm:^4.2.0"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.2
"@yarnpkg/core": ^4.4.2
"@yarnpkg/plugin-essentials": ^4.4.1
checksum: 10c0/775b366795960495cf03bf2211616f5e6829e5d03074867332c6bb90beeee852b6444e961384d5b21bd296a473e4e2cae4a0f4cdabbfb4af4217f88440a7e19c
languageName: node
linkType: hard
"@yarnpkg/plugin-version@npm:^4.2.0":
version: 4.2.0
resolution: "@yarnpkg/plugin-version@npm:4.2.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
"@yarnpkg/libui": "npm:^3.0.2"
"@yarnpkg/parsers": "npm:^3.0.3"
clipanion: "npm:^4.0.0-rc.2"
es-toolkit: "npm:^1.39.7"
ink: "npm:^3.2.0"
react: "npm:^17.0.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.4
"@yarnpkg/core": ^4.4.3
"@yarnpkg/plugin-git": ^3.1.3
checksum: 10c0/173dceb2567c9ab33253ea97e32d58d50185c7212598cf09e6b1f91118029dd3b457872512bfd0350442c59dc292f251d2476411946bafd5d2e3aa08f7e298b3
languageName: node
linkType: hard
"@yarnpkg/plugin-workspace-tools@npm:^4.1.6":
version: 4.1.6
resolution: "@yarnpkg/plugin-workspace-tools@npm:4.1.6"
dependencies:
"@yarnpkg/fslib": "npm:^3.1.2"
clipanion: "npm:^4.0.0-rc.2"
es-toolkit: "npm:^1.39.7"
micromatch: "npm:^4.0.2"
p-limit: "npm:^2.2.0"
tslib: "npm:^2.4.0"
typanion: "npm:^3.14.0"
peerDependencies:
"@yarnpkg/cli": ^4.9.3
"@yarnpkg/core": ^4.4.3
"@yarnpkg/plugin-git": ^3.1.3
checksum: 10c0/b9b9f396a7b15a54f6e37f165d7b00ee481ca6ec9eaf4720ac35440f4b1519f0b6c5cc4fae92b905fab9466d375744ef54742e814bd41106fb1cddaee025a12f
languageName: node
linkType: hard
"@yarnpkg/pnp@npm:^4.1.1, @yarnpkg/pnp@npm:^4.1.2, @yarnpkg/pnp@npm:^4.1.3":
version: 4.1.3
resolution: "@yarnpkg/pnp@npm:4.1.3"
dependencies:
"@types/node": "npm:^18.19.124"
"@yarnpkg/fslib": "npm:^3.1.4"