-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathyarn.lock
2604 lines (2339 loc) · 90.4 KB
/
yarn.lock
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.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@algolia/cache-browser-local-storage@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/cache-browser-local-storage@npm:4.14.2"
dependencies:
"@algolia/cache-common": "npm:4.14.2"
checksum: e7d5f43ff01df5f21a2b5304b5d8f8ae25f2c6093e83e79556cb78ae07f342111ba77eba633b837b5b74a17293ea6a208acb1ade71782baafa9c2da7d58ee45c
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/cache-common@npm:4.14.2"
checksum: 4fd04c714aee19f6eaaac4ae7e00e914a44473af9a84cf3c4260e436c6ea20f5590e05e9006d963372d84ce57268776811fcb929d79e0415b59d74779bd31ee7
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/cache-in-memory@npm:4.14.2"
dependencies:
"@algolia/cache-common": "npm:4.14.2"
checksum: d6981f812a368a38db21e52c98ec81a5c0eda5d896377f7bdcc04a0be1673ac9e184836d7973065fab84dc947a63fe959586468fc14b9a87e32f916959df6222
languageName: node
linkType: hard
"@algolia/client-account@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/client-account@npm:4.14.2"
dependencies:
"@algolia/client-common": "npm:4.14.2"
"@algolia/client-search": "npm:4.14.2"
"@algolia/transporter": "npm:4.14.2"
checksum: 2e9eed5a4b8434775af87899bda8140d51eb2dd0cf08fc49370a4dc9541c220db9b241976dad14ae5d07a25f7ddafd9759a2eb462788f21a20f14e04968f98a4
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/client-analytics@npm:4.14.2"
dependencies:
"@algolia/client-common": "npm:4.14.2"
"@algolia/client-search": "npm:4.14.2"
"@algolia/requester-common": "npm:4.14.2"
"@algolia/transporter": "npm:4.14.2"
checksum: 544dc0994b4a43162b5a4cdd7167fb3c9004d2ba14696678e2b10b9310ee7db3174c4c776118bbe2c7809d20c5ab66d768a72937c7f25807054d7942dc4ee0fa
languageName: node
linkType: hard
"@algolia/client-common@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/client-common@npm:4.14.2"
dependencies:
"@algolia/requester-common": "npm:4.14.2"
"@algolia/transporter": "npm:4.14.2"
checksum: 7458621d4ec41d0965ae89ce25383ec66004fe5b544e927109f0fa2cc9ba3b62bad08eb59a6509b7b0dc8aa1159b8f5e29ef8d6b090f9f420ba01b3a7dcda9a5
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/client-personalization@npm:4.14.2"
dependencies:
"@algolia/client-common": "npm:4.14.2"
"@algolia/requester-common": "npm:4.14.2"
"@algolia/transporter": "npm:4.14.2"
checksum: 8ec7937aef1eede6e5afe14f5af6052327f169e72a50572a1fac1fd21ee1e4b17bf73c036120163b6c613ee807656b6a17d4d01a6303246f1a9881e7f15ce7f8
languageName: node
linkType: hard
"@algolia/client-search@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/client-search@npm:4.14.2"
dependencies:
"@algolia/client-common": "npm:4.14.2"
"@algolia/requester-common": "npm:4.14.2"
"@algolia/transporter": "npm:4.14.2"
checksum: 2d9122829ade5abc2f2751a25d9c60e1c3bed1eed2084ed7984db4bd384fef04411921906e9fe0d044191745f7b1c1aa9e5af5f26453ab43370766ec72b8160e
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/logger-common@npm:4.14.2"
checksum: a4000a98831d64c8d826ccece9f5f3a77bc000d93d74a7c6b51f186d3dfd96c0bb00934f70c69da8f3c4dfb9f30ce55ab59aca9ba79c3cc3e924597838a94429
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/logger-console@npm:4.14.2"
dependencies:
"@algolia/logger-common": "npm:4.14.2"
checksum: 96c6209c7ef72cbc170b180f5b84c6523a5b6f4dea978c982577d2417eb19eb9c9ea3bc73089ced692a05bec141d66fd6d5401458d0aa162dbcace5017dbd127
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/requester-browser-xhr@npm:4.14.2"
dependencies:
"@algolia/requester-common": "npm:4.14.2"
checksum: 7d8666e21cd0d15dc2e25f6917464c2f98cf73e0d2fced94cc6a3c4e97a990b8b93d9531bbf6f3b1ff2342b9ce9760d1dcb64dbbf61a5f2c31fe4f42541deef2
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/requester-common@npm:4.14.2"
checksum: c590d9b9b1d1e4daf550a1da48e89802451387a25dc7d95c1d2fa9591d68d302dc5402062bc226d18ce18e7a0ad9d12388fa61c7a339543d59b954adc7d01046
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/requester-node-http@npm:4.14.2"
dependencies:
"@algolia/requester-common": "npm:4.14.2"
checksum: 5f5fe8b040f73bd95c6bdb5b97396e078b629b2b4cd93fea671d545be375c79501c65296c34824f0ff8368b5b51edc7a6ad9e694b04223c1416dcda869c6f566
languageName: node
linkType: hard
"@algolia/transporter@npm:4.14.2":
version: 4.14.2
resolution: "@algolia/transporter@npm:4.14.2"
dependencies:
"@algolia/cache-common": "npm:4.14.2"
"@algolia/logger-common": "npm:4.14.2"
"@algolia/requester-common": "npm:4.14.2"
checksum: f742f82ae6fe816e86ef30c381f55026466cec112f57f0067a59944950fffb31ba69a7f8d6608a9286cb02fb47f4a0efe1b7426cd9be780b3bc4f69fcf73747e
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: 14ed60cb45750d386c64229ac7bab20e10eedc193503fa4decff764162d329d6d3363ed2cd3debec833186ee54affe4f824f6e8eff531295117fd1ebda200270
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: 6ab2a9b8a1d67b067922c36f259e3b3dfd6b97b219c540877a4944549a4d49ea5ceba5663905ab5289682f1f3c15ff441d02f0447f620a42e1cb5e1937174d4b
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: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
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: 40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0
languageName: node
linkType: hard
"@sindresorhus/is@npm:^4.0.0":
version: 4.6.0
resolution: "@sindresorhus/is@npm:4.6.0"
checksum: e7f36ed72abfcd5e0355f7423a72918b9748bb1ef370a59f3e5ad8d40b728b85d63b272f65f63eec1faf417cda89dcb0aeebe94015647b6054659c1442fe5ce0
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: c29df3bcec6fc3bdec2b17981d89d9c9fc9bd7d0c9bcfe92821dc533f4440bc890ccde79971838b4ceed1921d456973c4180d7175ee1d0023ad0562240a58d95
languageName: node
linkType: hard
"@types/braces@npm:*":
version: 3.0.4
resolution: "@types/braces@npm:3.0.4"
checksum: 7324497b6cc34c963c44d3f8516c67a83b749ab4f18defd9418b231b071af7ee8f0a0f345a52b204e867de80f684cabb21158512e1eaecbcebbabed1d1e357a3
languageName: node
linkType: hard
"@types/cacheable-request@npm:^6.0.1":
version: 6.0.2
resolution: "@types/cacheable-request@npm:6.0.2"
dependencies:
"@types/http-cache-semantics": "npm:*"
"@types/keyv": "npm:*"
"@types/node": "npm:*"
"@types/responselike": "npm:*"
checksum: 7fe937f9e71a28dc16bc2c3421f00b3e7785342d6e78ebfe840dc66a69c332df45d1ee95d98b2199705923e755c20e09ceac44ceafe792b3b9edead31112a198
languageName: node
linkType: hard
"@types/emscripten@npm:^1.39.6":
version: 1.39.6
resolution: "@types/emscripten@npm:1.39.6"
checksum: 1f5dcf1dbc1538c11d67b94675110edc66d258fd92b040e1c5c335375a30ec25f6e812340314b419fc87b0d6abcc57b660ccf9954987ec353c8cf4e5a1fd77ae
languageName: node
linkType: hard
"@types/http-cache-semantics@npm:*":
version: 4.0.1
resolution: "@types/http-cache-semantics@npm:4.0.1"
checksum: d059bf8a15d5163cc60da51ba00d17620507f968d0b792cd55f62043016344a5f0e1aa94fa411089d41114035fcd0ea656f968bda7eabb6663a97787e3445a1c
languageName: node
linkType: hard
"@types/keyv@npm:*":
version: 3.1.4
resolution: "@types/keyv@npm:3.1.4"
dependencies:
"@types/node": "npm:*"
checksum: e009a2bfb50e90ca9b7c6e8f648f8464067271fd99116f881073fa6fa76dc8d0133181dd65e6614d5fb1220d671d67b0124aef7d97dc02d7e342ab143a47779d
languageName: node
linkType: hard
"@types/micromatch@npm:^4":
version: 4.0.6
resolution: "@types/micromatch@npm:4.0.6"
dependencies:
"@types/braces": "npm:*"
checksum: d86560645ad74acfd8251da612e459f72c1b146ad48cfd894aae1c4d0e55f2ea32491f793b623c7890dae546bf4b6e3b31fc536e4448ea5331c7a26acc450f94
languageName: node
linkType: hard
"@types/node@npm:*":
version: 18.11.6
resolution: "@types/node@npm:18.11.6"
checksum: 7dbf60e3c435c67e0e9aa5801ad8a26ebf723aa3aa01b04e0e1809f0d9c050a9bfbf353d3456a3f089da78131f3154b608dae0087af2b41401431b1bfaea8cec
languageName: node
linkType: hard
"@types/node@npm:^16.0.0":
version: 16.18.1
resolution: "@types/node@npm:16.18.1"
checksum: 8637d0da39bb2beaaa6c2963419431b76e6d3e292b4879a34b5fd5d69362434ee8fd2cf540a1a1452272243e7c6acd44a4626939217f620e5ea9cd05e93131be
languageName: node
linkType: hard
"@types/node@npm:^18.17.15":
version: 18.19.42
resolution: "@types/node@npm:18.19.42"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 024e8a6fac679fb4ec41a53ffa986806f3ac49b6003c380e84afb088280b463112e056f2c4ad1db3e6e36a60be75a18c3af9903ddeeb483f470e9ea629bee6f2
languageName: node
linkType: hard
"@types/node@npm:^18.7.6":
version: 18.11.5
resolution: "@types/node@npm:18.11.5"
checksum: f9f890d7174429ff559880c90e0ef2a13a5dc804fd38cf637b2d828a5e17374396914f8ae286ef40bf4d27800ef34635f3e86be95c03ec22b38b306eeee05c31
languageName: node
linkType: hard
"@types/responselike@npm:*, @types/responselike@npm:^1.0.0":
version: 1.0.0
resolution: "@types/responselike@npm:1.0.0"
dependencies:
"@types/node": "npm:*"
checksum: e4972389457e4edce3cbba5e8474fb33684d73879433a9eec989d0afb7e550fd6fa3ffb8fe68dbb429288d10707796a193bc0007c4e8429fd267bdc4d8404632
languageName: node
linkType: hard
"@types/semver@npm:^7.1.0":
version: 7.3.12
resolution: "@types/semver@npm:7.3.12"
checksum: abd4bc279bd9e8323d53afc2997139b1daa14c3a4136d1cd7c1b76409345c811165ad5af2dd2cf5ea122917fe0f4be7544e6a582936c5b8a5aa64b50c22f5d99
languageName: node
linkType: hard
"@types/tar-stream@npm:^3":
version: 3.1.3
resolution: "@types/tar-stream@npm:3.1.3"
dependencies:
"@types/node": "npm:*"
checksum: 187387748288b35924284afc26cf36b6b966377f5131398bf484c475f7191c50f5e5903c94a7391049b6cdfce174ae2e63f776dea9425d94ddc6bd31ebe386ee
languageName: node
linkType: hard
"@types/treeify@npm:^1.0.0":
version: 1.0.0
resolution: "@types/treeify@npm:1.0.0"
checksum: 7d313ba9dee8f704baaf72c75857c0dde7f9804c35e57929601f18c496b4db476ad621129d423757f05de9211086088ae01ecdbbffeaf760598722a8e7911fae
languageName: node
linkType: hard
"@types/yoga-layout@npm:1.9.2":
version: 1.9.2
resolution: "@types/yoga-layout@npm:1.9.2"
checksum: 3cbcab36d9e19d077cc2bc956d3182dc26f35f13f8fcf01648717bcba412be7ed3c4b6f43c4f8f201ea815160d0cb2b96e82698c4b43d4a179c5603a7725f34e
languageName: node
linkType: hard
"@yarnpkg/builder@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/builder@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/cli": "npm:^4.0.0-rc.26"
"@yarnpkg/core": "npm:^4.0.0-rc.26"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
chalk: "npm:^3.0.0"
clipanion: "npm:^3.2.0-rc.10"
esbuild: "npm:esbuild-wasm@^0.15.5"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
bin:
builder: ./lib/cli.js
checksum: 73d6a20a75c076f6ed7b745de06884179a7868b8b532e6c004d2f4591a666ece0d15c35132f5791dd836c1e2fd2cbfaa39b29cfee4f22b43e43f323653aee199
languageName: node
linkType: hard
"@yarnpkg/cli@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/cli@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/core": "npm:^4.0.0-rc.26"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/libzip": "npm:^3.0.0-rc.26"
"@yarnpkg/parsers": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-compat": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-constraints": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-dlx": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-essentials": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-exec": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-file": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-git": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-github": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-http": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-init": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-interactive-tools": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-link": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-nm": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-npm": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-npm-cli": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-pack": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-patch": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-pnp": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-pnpm": "npm:^2.0.0-rc.26"
"@yarnpkg/plugin-stage": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-typescript": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-version": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-workspace-tools": "npm:^4.0.0-rc.26"
"@yarnpkg/shell": "npm:^4.0.0-rc.26"
ci-info: "npm:^3.2.0"
clipanion: "npm:^3.2.0-rc.10"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
typanion: "npm:^3.3.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 2d7903bcb4db3d813176d52c063f11fc9c54771e12e1b94a652fab06443ced47a7750bde73c9ad0b93b673248dd59f619cb8f4af6f3853f3059254c4378ab694
languageName: node
linkType: hard
"@yarnpkg/core@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/core@npm:4.0.0-rc.26"
dependencies:
"@arcanis/slice-ansi": "npm:^1.1.1"
"@types/semver": "npm:^7.1.0"
"@types/treeify": "npm:^1.0.0"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/libzip": "npm:^3.0.0-rc.26"
"@yarnpkg/parsers": "npm:^3.0.0-rc.26"
"@yarnpkg/shell": "npm:^4.0.0-rc.26"
camelcase: "npm:^5.3.1"
chalk: "npm:^3.0.0"
ci-info: "npm:^3.2.0"
clipanion: "npm:^3.2.0-rc.10"
cross-spawn: "npm:7.0.3"
diff: "npm:^5.1.0"
globby: "npm:^11.0.1"
got: "npm:^11.7.0"
lodash: "npm:^4.17.15"
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"
tunnel: "npm:^0.0.6"
checksum: 94fc447b5ce4bf73bdc9b4d47d8b552588f62a64eed8f6dcc703eea5e3830666c144996e2a2d2de8ffd29f6bcf0923c82099a1b4a95c3eaa882a48c10a53ebba
languageName: node
linkType: hard
"@yarnpkg/extensions@npm:^2.0.0-rc.8":
version: 2.0.0-rc.8
resolution: "@yarnpkg/extensions@npm:2.0.0-rc.8"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 3846ad8314f9780b59b006b6fb330024dd5a16f5f378444cccb9fa6cfbd65f01ab4beb297a6a9d188662ec1a649a20dcc01de01c9e8ff6de6ec00666b2c766dd
languageName: node
linkType: hard
"@yarnpkg/fslib@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/fslib@npm:3.0.0-rc.26"
dependencies:
tslib: "npm:^2.4.0"
checksum: a3b2b25ecc452027e175ba0089ba7ed12b75f79713cd7bf1312a300eb4c565583d0b10fb391b622b609e9d0a57f6979e1908ec63c741ed27813138df4b90478c
languageName: node
linkType: hard
"@yarnpkg/fslib@npm:^3.1.0":
version: 3.1.0
resolution: "@yarnpkg/fslib@npm:3.1.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 99537cff3269f0728b440bc801872346f8f698ada479b00df82967c0fea1fc61588e69f669174fdf8274107a1b34dfb656513db8789db12afd7e6778bd2b4e86
languageName: node
linkType: hard
"@yarnpkg/libui@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/libui@npm:3.0.0-rc.26"
dependencies:
tslib: "npm:^2.4.0"
peerDependencies:
ink: ^3.0.8
react: ^16.8.4
checksum: b7f1e7a4a05f26d84029e0f2cf3210c5928fec3c772d2f88929524719df8de17cf2b9ffcb658182bc0748f701fe3bb4736ff8e300f47a6b90d9c7f82abb70cee
languageName: node
linkType: hard
"@yarnpkg/libzip@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/libzip@npm:3.0.0-rc.26"
dependencies:
"@types/emscripten": "npm:^1.39.6"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/fslib": ^3.0.0-rc.26
checksum: 914fcf415cccc5db536cb83c6b430f7882af01a9f87a290d301cd7da2fe17f21757133bdbbca38f62c28b5257faa6fa3e4411a00ef08a09598a39fd5de45186f
languageName: node
linkType: hard
"@yarnpkg/nm@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/nm@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/core": "npm:^4.0.0-rc.26"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/pnp": "npm:^4.0.0-rc.26"
checksum: d9b724a8cbd8c4ce81b6824eeb15cffb2930f5d8935df4d9229df4fea1f17f7769876653778a1d8220a1396671ed40c8c8f8ac04d006905baca64b5c1bf8b0ed
languageName: node
linkType: hard
"@yarnpkg/parsers@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/parsers@npm:3.0.0-rc.26"
dependencies:
js-yaml: "npm:^3.10.0"
tslib: "npm:^2.4.0"
checksum: e6ea36836b515066ba09eaba4a9fd6d6cfecd64db6f791eeb05900e42b7e25776583f9dc9bec9879be9eae08aab02e8b3205f737e6ff1cd8da9eb5a865a918cc
languageName: node
linkType: hard
"@yarnpkg/plugin-compat@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-compat@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/extensions": "npm:^2.0.0-rc.8"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-patch": ^4.0.0-rc.26
checksum: 72bf09b3690cd51eb47e12a1bb89d2df3f7b6401631fac61870ecd5bf43e1617294a3f3a1710801d1f7d53bf14dc9ed2def3cdbbf2413d6095e940b67d70c836
languageName: node
linkType: hard
"@yarnpkg/plugin-constraints@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-constraints@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
lodash: "npm:^4.17.15"
tau-prolog: "npm:^0.2.66"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 50651271ac7641dd51fdcf504dcbc2feec975cfa31e2afd12af19a887ce3532219445dc0561d45a88011841cdeaa4d17a1595e120e087e7aff0c9ef4d326c530
languageName: node
linkType: hard
"@yarnpkg/plugin-dlx@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-dlx@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: a7c43975257c283448d27d3e020d0eacb4393e339240b7b6d0bb40bee00ce3b9e14ed1ef30a6d767ccdc4698d14fa476fedbeb41df666ec4c1ee046f7df19083
languageName: node
linkType: hard
"@yarnpkg/plugin-essentials@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-essentials@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/parsers": "npm:^3.0.0-rc.26"
ci-info: "npm:^3.2.0"
clipanion: "npm:^3.2.0-rc.10"
enquirer: "npm:^2.3.6"
lodash: "npm:^4.17.15"
micromatch: "npm:^4.0.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
typanion: "npm:^3.3.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-git": ^3.0.0-rc.26
checksum: b2f9af3b7a3d3710127f4ab898eb8d08943db6aad6627e795fc004512962da7f73101059bbc78dfb25dc561f2e9310e6a636eefc341697e0a7183e7542f8b8ef
languageName: node
linkType: hard
"@yarnpkg/plugin-exec@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/plugin-exec@npm:3.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 57f08faecdc1e46b1c7712c47df273d208953587c1739919ed0440dd52eabe89321e50d0d37ed7ef1e447983da19e08a0d608def8a2029e551ce5ae82c8b5a32
languageName: node
linkType: hard
"@yarnpkg/plugin-file@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/plugin-file@npm:3.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/libzip": "npm:^3.0.0-rc.26"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 6ec6a3796e80a0112e4e93d3c17e2a59aedb5b670e58005d561e68639d5a6972c307bf31a0a6249598db183f62f3a5d5486de2adf756a19a4a434ada1c8718b3
languageName: node
linkType: hard
"@yarnpkg/plugin-git@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/plugin-git@npm:3.0.0-rc.26"
dependencies:
"@types/semver": "npm:^7.1.0"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
git-url-parse: "npm:11.1.2"
lodash: "npm:^4.17.15"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 3b659ecd212cc129d382b87d360e64e608aaa63b17649a8b081dd935d6474ed2f3540a0315ed8094d03d29815931288508be77d8f1db4cbe0fa487c697a14a20
languageName: node
linkType: hard
"@yarnpkg/plugin-github@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/plugin-github@npm:3.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-git": ^3.0.0-rc.26
checksum: 848d33b37ceb638b9c50993ce1fab3539a32915fdc3680a02103eab5b1d1b8678fad3f75a9d107a1c96479ce5620136a75342a0f6d11b50e9baa5e3d54068362
languageName: node
linkType: hard
"@yarnpkg/plugin-http@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/plugin-http@npm:3.0.0-rc.26"
dependencies:
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
checksum: d3986316c836ddc2f2075f6b75cab2816a9000a882420ff29410911972753a34c0161acc604648d6318b1fdd6d475994cad24330749a1a3bb141e704790f2c1a
languageName: node
linkType: hard
"@yarnpkg/plugin-init@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-init@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: f69d73030ab15e6a120f62f6a93d0814ba83f005396bfa41463ac5543e3ac56e391d66e3f35add7f79b51eb84bfc98bbd49e6724111bdfa34e1bc377ad8a897f
languageName: node
linkType: hard
"@yarnpkg/plugin-interactive-tools@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-interactive-tools@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/libui": "npm:^3.0.0-rc.26"
algoliasearch: "npm:^4.2.0"
clipanion: "npm:^3.2.0-rc.10"
diff: "npm:^5.1.0"
ink: "npm:^3.0.8"
ink-text-input: "npm:^4.0.1"
react: "npm:^16.13.1"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-essentials": ^4.0.0-rc.26
checksum: 7d7be009032eaa135e422e71769bacfb67f137b825395bd618df8e42afdf06e0d27eb198f00d36648b8133f6028dab17da5bf768bfb176a290179e9f962747ce
languageName: node
linkType: hard
"@yarnpkg/plugin-link@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/plugin-link@npm:3.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 2701a955e6963e4acf9b4bfcb850465960628b75b0b520ccf4a24afb91a369f8120a989335dfbedf23dbe563ad0741a916f88ee25a84267ae01356f489ae9ae6
languageName: node
linkType: hard
"@yarnpkg/plugin-nm@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-nm@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/libzip": "npm:^3.0.0-rc.26"
"@yarnpkg/nm": "npm:^4.0.0-rc.26"
"@yarnpkg/parsers": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-pnp": "npm:^4.0.0-rc.26"
"@yarnpkg/pnp": "npm:^4.0.0-rc.26"
"@zkochan/cmd-shim": "npm:^5.1.0"
clipanion: "npm:^3.2.0-rc.10"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 7b08d5333f335517f252549356e8265e884c3bd22695797799862c2edab993a60f132d314e3ec1ede4d2f5a29467f3186b6f4cbe3629ee13a7560f86aff1d382
languageName: node
linkType: hard
"@yarnpkg/plugin-npm-cli@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-npm-cli@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
enquirer: "npm:^2.3.6"
micromatch: "npm:^4.0.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
typanion: "npm:^3.3.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-npm": ^3.0.0-rc.26
"@yarnpkg/plugin-pack": ^4.0.0-rc.26
checksum: 66a308f8614f0dcedf857a9c55d7a6676ba54503354b1de5bfceffe8697e2bcb1e78ee1c8549d1d84214d75488798af0c22dfc8d931c724f4c2227c9eb771a86
languageName: node
linkType: hard
"@yarnpkg/plugin-npm@npm:^3.0.0-rc.26":
version: 3.0.0-rc.26
resolution: "@yarnpkg/plugin-npm@npm:3.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
enquirer: "npm:^2.3.6"
semver: "npm:^7.1.2"
ssri: "npm:^6.0.1"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-pack": ^4.0.0-rc.26
checksum: 154227670a5757be4883b949d4db2a5bb8617395def58221e41449256f3073e077c331e5362380b60ee46ba51d481ef73009b6feac2d44543ac906abd63f8d12
languageName: node
linkType: hard
"@yarnpkg/plugin-pack@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-pack@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
micromatch: "npm:^4.0.2"
tar-stream: "npm:^2.0.1"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: e65c780630fa066552ac65cf9cbcb9a900aa2c7a02eeb6f766efc62888e7cad4bf503402eab1bce7d84284e381cadd9544b87ff50e59dff506a92e097ed8d17c
languageName: node
linkType: hard
"@yarnpkg/plugin-patch@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-patch@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/libzip": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 952f3aab0aa54004b0cfd8a2464803e12527cfd3566ba9fa9fe871b4642896343996fc70252d28bac57eb43bdf57deab63869df6c7ced9c78fbefa4d0ccb8ae7
languageName: node
linkType: hard
"@yarnpkg/plugin-pnp@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-pnp@npm:4.0.0-rc.26"
dependencies:
"@types/semver": "npm:^7.1.0"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-stage": "npm:^4.0.0-rc.26"
"@yarnpkg/pnp": "npm:^4.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
micromatch: "npm:^4.0.2"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: c2230916a73200c8d4fb8374c42ab181ac699adf0069a4c7af03a709204a2a8e223f82bc38659ebea274526f4fa863c7229cc82e08cbfb8cf6effa6b802fb874
languageName: node
linkType: hard
"@yarnpkg/plugin-pnpm@npm:^2.0.0-rc.26":
version: 2.0.0-rc.26
resolution: "@yarnpkg/plugin-pnpm@npm:2.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-pnp": "npm:^4.0.0-rc.26"
"@yarnpkg/plugin-stage": "npm:^4.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
p-limit: "npm:^2.2.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: 58d011082eef09e2817487396e88d7d9862bc4c55bf0c671f7e56a6397cf80304c649d0630e710b09a887a9492364f62cc12228f9c5608c18405f1ef3df34b6e
languageName: node
linkType: hard
"@yarnpkg/plugin-stage@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-stage@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
checksum: e54e2bdcf819af84f6629ab5c51b0eb9fc2660aa3eaf3486e7867665fd0515828b7553494f1a0b569c0e46616778431332792f0218058068663bf0b1c3c24690
languageName: node
linkType: hard
"@yarnpkg/plugin-typescript@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-typescript@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/plugin-pack": "npm:^4.0.0-rc.26"
algoliasearch: "npm:^4.2.0"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-essentials": ^4.0.0-rc.26
checksum: 458cf4234267d80f817b39b9e83e4a9df298058fcc95c8a471b18ce03a3756f5327e4268a0f01228607ec22fa1aa6581d55da7c6fc0d186a96dad3009af276fe
languageName: node
linkType: hard
"@yarnpkg/plugin-version@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-version@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/libui": "npm:^3.0.0-rc.26"
"@yarnpkg/parsers": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
ink: "npm:^3.0.8"
lodash: "npm:^4.17.15"
react: "npm:^16.13.1"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-git": ^3.0.0-rc.26
checksum: 456ee0bcfc583d48c1671f46e02bc3e1332757e5d6e4d80c87faa5dc49f3b18b48e01aab950b0d7270fa4f9289b1e90dfb5bc19c5ebb9ff8287afedc4b17f63c
languageName: node
linkType: hard
"@yarnpkg/plugin-workspace-tools@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/plugin-workspace-tools@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
clipanion: "npm:^3.2.0-rc.10"
micromatch: "npm:^4.0.2"
p-limit: "npm:^2.2.0"
tslib: "npm:^2.4.0"
typanion: "npm:^3.3.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0-rc.26
"@yarnpkg/core": ^4.0.0-rc.26
"@yarnpkg/plugin-git": ^3.0.0-rc.26
checksum: 535dc750f0c9ef95b82cabe448a684385c1ae7ad4642b652ca5506688138268211a4f93299282b3d84d278a217eef23c36a3bc86038e2d8db0099b4d9b21162f
languageName: node
linkType: hard
"@yarnpkg/pnp@npm:4.0.6":
version: 4.0.6
resolution: "@yarnpkg/pnp@npm:4.0.6"
dependencies:
"@types/node": "npm:^18.17.15"
"@yarnpkg/fslib": "npm:^3.1.0"
checksum: 1bb9e91311a990a5592016937dba1cda20362c5497e073ca47e584709f5267e5b258ddfc967ba2db875498dbad176ab0bc57ddfd74e91794ac4efd78b6eb6b63
languageName: node
linkType: hard
"@yarnpkg/pnp@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/pnp@npm:4.0.0-rc.26"
dependencies:
"@types/node": "npm:^18.7.6"
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
checksum: 07343a0f122ead0b993b7b73c8f676c54c27ab6a0a1968925b2df7c3a4e0762fc365b48760bfc79e88137c5ce39ab81dbea62138cce6731e03bac2c6d23c4dfd
languageName: node
linkType: hard
"@yarnpkg/shell@npm:^4.0.0-rc.26":
version: 4.0.0-rc.26
resolution: "@yarnpkg/shell@npm:4.0.0-rc.26"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0-rc.26"
"@yarnpkg/parsers": "npm:^3.0.0-rc.26"
chalk: "npm:^3.0.0"
clipanion: "npm:^3.2.0-rc.10"
cross-spawn: "npm:7.0.3"
fast-glob: "npm:^3.2.2"
micromatch: "npm:^4.0.2"
tslib: "npm:^2.4.0"
bin:
shell: ./lib/cli.js
checksum: 2d97d3d66cadf8863c27e393bcac6bfd8a3a9a0682601964293a25de9703657525b66a415713baa58feaa834f2d2ecb466cd511b6302ae23d7d8bc04e6f7d3f8
languageName: node
linkType: hard
"@zkochan/cmd-shim@npm:^5.1.0":
version: 5.3.1
resolution: "@zkochan/cmd-shim@npm:5.3.1"
dependencies:
cmd-extension: "npm:^1.0.2"
is-windows: "npm:^1.0.2"
checksum: 6a0dcce732180cd7cbe7546a75c9a6dca95c65acc042c976d346817afae2802625ab1671afc4aebb43565cbb98b2db39fbc043049c18396b1296e50aae54c381
languageName: node
linkType: hard
"algoliasearch@npm:^4.2.0":
version: 4.14.2
resolution: "algoliasearch@npm:4.14.2"
dependencies:
"@algolia/cache-browser-local-storage": "npm:4.14.2"
"@algolia/cache-common": "npm:4.14.2"
"@algolia/cache-in-memory": "npm:4.14.2"
"@algolia/client-account": "npm:4.14.2"
"@algolia/client-analytics": "npm:4.14.2"
"@algolia/client-common": "npm:4.14.2"
"@algolia/client-personalization": "npm:4.14.2"
"@algolia/client-search": "npm:4.14.2"
"@algolia/logger-common": "npm:4.14.2"
"@algolia/logger-console": "npm:4.14.2"
"@algolia/requester-browser-xhr": "npm:4.14.2"
"@algolia/requester-common": "npm:4.14.2"
"@algolia/requester-node-http": "npm:4.14.2"
"@algolia/transporter": "npm:4.14.2"
checksum: cd32808319326009d68ca6ed7c99c8389a4b8b76eeaa8bb130e94dbb5343685fbe792331bec6227e20b8254e877f546b2526fe53c558fefabb634c8db34692ee
languageName: node
linkType: hard
"ansi-colors@npm:^4.1.1":
version: 4.1.3
resolution: "ansi-colors@npm:4.1.3"
checksum: 43d6e2fc7b1c6e4dc373de708ee76311ec2e0433e7e8bd3194e7ff123ea6a747428fc61afdcf5969da5be3a5f0fd054602bec56fc0ebe249ce2fcde6e649e3c2
languageName: node
linkType: hard
"ansi-escapes@npm:^4.2.1":
version: 4.3.2
resolution: "ansi-escapes@npm:4.3.2"
dependencies:
type-fest: "npm:^0.21.3"
checksum: 8661034456193ffeda0c15c8c564a9636b0c04094b7f78bd01517929c17c504090a60f7a75f949f5af91289c264d3e1001d91492c1bd58efc8e100500ce04de2
languageName: node
linkType: hard
"ansi-regex@npm:^5.0.1":
version: 5.0.1
resolution: "ansi-regex@npm:5.0.1"
checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b
languageName: node
linkType: hard
"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0":
version: 4.3.0
resolution: "ansi-styles@npm:4.3.0"
dependencies:
color-convert: "npm:^2.0.1"
checksum: b4494dfbfc7e4591b4711a396bd27e540f8153914123dccb4cdbbcb514015ada63a3809f362b9d8d4f6b17a706f1d7bea3c6f974b15fa5ae76b5b502070889ff
languageName: node
linkType: hard
"argparse@npm:^1.0.7":
version: 1.0.10
resolution: "argparse@npm:1.0.10"
dependencies:
sprintf-js: "npm:~1.0.2"
checksum: c6a621343a553ff3779390bb5ee9c2263d6643ebcd7843227bdde6cc7adbed796eb5540ca98db19e3fd7b4714e1faa51551f8849b268bb62df27ddb15cbcd91e
languageName: node
linkType: hard
"array-union@npm:^2.1.0":
version: 2.1.0
resolution: "array-union@npm:2.1.0"
checksum: 5bee12395cba82da674931df6d0fea23c4aa4660cb3b338ced9f828782a65caa232573e6bf3968f23e0c5eb301764a382cef2f128b170a9dc59de0e36c39f98d
languageName: node
linkType: hard
"astral-regex@npm:^2.0.0":
version: 2.0.0
resolution: "astral-regex@npm:2.0.0"
checksum: 876231688c66400473ba505731df37ea436e574dd524520294cc3bbc54ea40334865e01fa0d074d74d036ee874ee7e62f486ea38bc421ee8e6a871c06f011766
languageName: node
linkType: hard
"auto-bind@npm:4.0.0":
version: 4.0.0
resolution: "auto-bind@npm:4.0.0"
checksum: 00cad71cce5742faccb7dd65c1b55ebc4f45add4b0c9a1547b10b05bab22813230133b0c892c67ba3eb969a4524710c5e43cc45c72898ec84e56f3a596e7a04f
languageName: node
linkType: hard
"b4a@npm:^1.6.4":
version: 1.6.4
resolution: "b4a@npm:1.6.4"
checksum: 223158e626a7e024a8d945ce85e7d8871c0689c0375c5b0df5880eedcb5683a12eeb3557591ff5ccd515f3ee8d1664e370c6ff7917fa257405571b81b946604a
languageName: node
linkType: hard
"base64-js@npm:^1.3.1":
version: 1.5.1
resolution: "base64-js@npm:1.5.1"
checksum: 669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005
languageName: node
linkType: hard
"bl@npm:^4.0.3":
version: 4.1.0
resolution: "bl@npm:4.1.0"
dependencies:
buffer: "npm:^5.5.0"
inherits: "npm:^2.0.4"