forked from andreialecu/yarn-plugin-workspace-lockfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
2274 lines (2046 loc) · 77.5 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: 10c0
"@algolia/cache-browser-local-storage@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/cache-browser-local-storage@npm:4.20.0"
dependencies:
"@algolia/cache-common": "npm:4.20.0"
checksum: efab9b8535d9cf2fc9d1e382541e87797946da0953dc02809aab181161b40ce419b4fa71bc35883e02eb34176185200e0ce1e887109a24233c0e9e6ef5f2a340
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/cache-common@npm:4.20.0"
checksum: e2e55945dc9d3cafaace828afe28cb944a14efa645d588968e8bf88360efd7dc35f95f2b2392fc84dc697d115ada2a253b34f384ec5d82a191df77eb2125e43e
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/cache-in-memory@npm:4.20.0"
dependencies:
"@algolia/cache-common": "npm:4.20.0"
checksum: 9dd67c93fb97d0055ec6d487bae922a5ccbf2adcdf2692c737b85d50b5aa2b57f3fb21ead0202a570e7feb1096fb48ea56a2309259998c17d7c82bc8ae170818
languageName: node
linkType: hard
"@algolia/client-account@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-account@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/client-search": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: 6ff0cd7834d48988ec748ed504a28e4de8842526881c7d0f875f9702e037f51c9ec70195489e5d189995d0901212f844b0555d6df0b423d0b846b300a321b6a2
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-analytics@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/client-search": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: ebc20c90461a05c1bfbdf152953904afde749d70fe7008857c4f5a96510f0bb1895420a400decfcb3dce3137be880b4360e8ac09a8249b4fe8426dd0a3042a09
languageName: node
linkType: hard
"@algolia/client-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-common@npm:4.20.0"
dependencies:
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: b0cf4d127dd5712867e3e7dbb10465d960d5ad2ca491321c0d1908c3b4d2f485bc54926c1b3de2b9d5b5f3438a1e91d50f02318fc164770d4e78bd7828a3e2f6
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-personalization@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: a4ffff168daee0495192c7aa1b155827d10ba408d352d01e112552e048a18244a2a446df47706639dc67a6b4061bdc084f35e47b5a75b0f1a722427abe131fe8
languageName: node
linkType: hard
"@algolia/client-search@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-search@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: 79b75fbfddf41bd65d1d028236b249e81672a5a5aea9e84fa5586ee5d1f0d78966dacdc464109e14a46f6c78c8d68d5a8a50ad7b571247ac64fc2d1399072332
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/logger-common@npm:4.20.0"
checksum: 03fffc0e021097836d4588f130fc22b3fd6ca55e286e8fc59f0525330754bc49edcf7c5d2f0016fd1c4aa3ad3432005ba3a17b5c41880c16258e98bcf4746b4d
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/logger-console@npm:4.20.0"
dependencies:
"@algolia/logger-common": "npm:4.20.0"
checksum: 2b1f32f3344613de3ae949df57ef5b794ec247572dfbdd04b2c5d1b250b224fef2ce7292c9ce56f45ef491afe90a7505ec21ad3b00f645ef07516c8cbe200fae
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/requester-browser-xhr@npm:4.20.0"
dependencies:
"@algolia/requester-common": "npm:4.20.0"
checksum: 0e3fba53b05805bb9801b3b0e8cc4c95b8f55c6e23f43f4c5f1cd01ce277aa71fb08d935be97f921af0d60d83d23b83e2bbdd35f79bd2657c9aaa8604a838d62
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/requester-common@npm:4.20.0"
checksum: 3d69d781549a58784fdf34d79c46e15a9010185757112953e58f987a814e9645b47a2d7202148fb644edfacc73df783041b274eac58de06936dfc9c6f1ac88e5
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/requester-node-http@npm:4.20.0"
dependencies:
"@algolia/requester-common": "npm:4.20.0"
checksum: b774593ad9a4f04215481ed3e18a4870275c0586a9106280137e53fd6278a6e4eea9fed15fb086e5989c436097552b4884c35a2f2ec49999105ab697b20831a2
languageName: node
linkType: hard
"@algolia/transporter@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/transporter@npm:4.20.0"
dependencies:
"@algolia/cache-common": "npm:4.20.0"
"@algolia/logger-common": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
checksum: 769c5d61a280283e2dc4c4a49fcd92e6489bc0267a290438f56311dacc213c0ff4979d063fb8dd5b7bcc888d819ec00eef5d24eb2768946696f4297b757ff527
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: 2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.3":
version: 2.1.3
resolution: "@nodelib/fs.scandir@npm:2.1.3"
dependencies:
"@nodelib/fs.stat": "npm:2.0.3"
run-parallel: "npm:^1.1.9"
checksum: 68b6d044fd45ef258dc39659e2380a83eb950b1dc45451b26cc31f843283951711dda7b98f0456cd5fe1097f3ced3b94f57bb52634d505c30a958acee5fe590a
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.3, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.3
resolution: "@nodelib/fs.stat@npm:2.0.3"
checksum: 81ca8f179f9d51a62788d7c0427e802d93377c190beda3700868733dd09d02b1f0bbdbe3b522ab5a1b688f7be8f39a5095b6666092194514ecaa2481f82224c3
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.4
resolution: "@nodelib/fs.walk@npm:1.2.4"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.3"
fastq: "npm:^1.6.0"
checksum: ebc8e292c5099003c78a70dddc04cde5f0316f0046eb66ba48429fba094c15e43ab93f180a14eabe06c7a29dcb91e3c008be2377a79c0fb3c9a459d075a33303
languageName: node
linkType: hard
"@openagenda/yarn-plugin-workspace-lockfile@workspace:packages/plugin":
version: 0.0.0-use.local
resolution: "@openagenda/yarn-plugin-workspace-lockfile@workspace:packages/plugin"
dependencies:
"@types/node": "npm:^20.8.8"
"@yarnpkg/builder": "npm:^4.0.0"
"@yarnpkg/cli": "npm:^4.0.0"
"@yarnpkg/core": "npm:^4.0.0"
"@yarnpkg/fslib": "npm:^3.0.0"
typescript: "npm:^5.2.2"
languageName: unknown
linkType: soft
"@sindresorhus/is@npm:^4.0.0":
version: 4.0.0
resolution: "@sindresorhus/is@npm:4.0.0"
checksum: 968c5ef770c0f8d7db9b2b0283d2e48a6cf9e17577b09c6cc9869473850256ec6283185fcb7520a8878427d3ff75b34a4b99194efda98201f2b55054af3b1f87
languageName: node
linkType: hard
"@szmarczak/http-timer@npm:^4.0.5":
version: 4.0.5
resolution: "@szmarczak/http-timer@npm:4.0.5"
dependencies:
defer-to-connect: "npm:^2.0.0"
checksum: de3f5054e08b72762b88e9ee837018d4e513e5df20e1d9f8c671d813f22b0972148509e0781b85c1de7fc60a7c9be10c2b7d4b8372ba80ffc11c43e6a24e945f
languageName: node
linkType: hard
"@types/cacheable-request@npm:^6.0.1":
version: 6.0.1
resolution: "@types/cacheable-request@npm:6.0.1"
dependencies:
"@types/http-cache-semantics": "npm:*"
"@types/keyv": "npm:*"
"@types/node": "npm:*"
"@types/responselike": "npm:*"
checksum: 6f92bd099c65adf36a27022e6f7a4fd6d237d930fed29ddd03fdcbf821957b68663ea5b31a607b3e15d6a9ca7d0b57d5f18d3ef4766c8947e27ba6ccd2aa7854
languageName: node
linkType: hard
"@types/emscripten@npm:^1.39.6":
version: 1.39.9
resolution: "@types/emscripten@npm:1.39.9"
checksum: d11461453315f4ba382f304717c64e907b10646af0f9ec0f64f34d604a79d8d839b9227dc9b95311b247c86a3bb4a7b95f5c971ad4fe079296836ad2245a48fe
languageName: node
linkType: hard
"@types/http-cache-semantics@npm:*":
version: 4.0.0
resolution: "@types/http-cache-semantics@npm:4.0.0"
checksum: 330396eb9e1eef72373323912c7c2f1df0acbea93a973d7524413bf46ac016e62c08d6d7b48aacb750cbabfb2cfc214a7dd9b579f1b6818beeb0fe9a00da425d
languageName: node
linkType: hard
"@types/keyv@npm:*":
version: 3.1.1
resolution: "@types/keyv@npm:3.1.1"
dependencies:
"@types/node": "npm:*"
checksum: 5098b339a80fe28a461785c455aded9271b2b35da8568375edae4c144422ea0dbeab5aab05929f4c51321ec6a07fd5e0980096c202e19da41a86314bf45700ec
languageName: node
linkType: hard
"@types/node@npm:*":
version: 13.13.26
resolution: "@types/node@npm:13.13.26"
checksum: 376fe833d60c258c397e021377f13cd94f527139e7d3d335e13b3a76d59a5e5a6cef22aa5ec6cdf5150964911a8742a2d0de7761f2cc47dded4bcb06fa8181cb
languageName: node
linkType: hard
"@types/node@npm:^18.17.15":
version: 18.18.6
resolution: "@types/node@npm:18.18.6"
checksum: 50312053b0906058aa026e1c85c9125b4f0e8d6ae5e3699fb5bc8e0d5b9d1c2b12303902b2b91477c389f15ad40235d240b882819dd93a49bd6b46983f63be1c
languageName: node
linkType: hard
"@types/node@npm:^20.8.8":
version: 20.8.8
resolution: "@types/node@npm:20.8.8"
dependencies:
undici-types: "npm:~5.25.1"
checksum: 739b3d6f4aa760d72373d504d91adec86ac2eab502f68a80214711983e7d1886fd276ade78a276a2affe4942a55ad65cf655c3aa9464d1150f6405445c5ba635
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: 474ac2402e6d43c007eee25f50d01eb1f67255ca83dd8e036877292bbe8dd5d2d1e50b54b408e233b50a8c38e681ff3ebeaf22f18b478056eddb65536abb003a
languageName: node
linkType: hard
"@types/semver@npm:^7.1.0":
version: 7.3.4
resolution: "@types/semver@npm:7.3.4"
checksum: 3d84a3688ae854fedf52362e0f466449edd52eef097f0db9917ebe55ea3df5922dc2980cd82228f5ffadbfd15850683b3ac59832c7358ac825512fd60794d320
languageName: node
linkType: hard
"@types/treeify@npm:^1.0.0":
version: 1.0.0
resolution: "@types/treeify@npm:1.0.0"
checksum: 8a279d0f1897e47cc02b4b5a570141ab70de6bc5d95cafe976aaee78740c13c2e80dae69f7ae9ca1c735c653b65a4ec59a7eed6970683cd04fc0ddf4b98794ff
languageName: node
linkType: hard
"@types/yoga-layout@npm:1.9.2":
version: 1.9.2
resolution: "@types/yoga-layout@npm:1.9.2"
checksum: 9f2a8618afe3e2e18e76eeaa4ec7d09a85f01f071231f8ff21388d851f940dd7ae5867a5f9aef29eafe44c47453a328d3c718fff1451ab62266450b415e43150
languageName: node
linkType: hard
"@yarnpkg/builder@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/builder@npm:4.0.0"
dependencies:
"@yarnpkg/cli": "npm:^4.0.0"
"@yarnpkg/core": "npm:^4.0.0"
"@yarnpkg/fslib": "npm:^3.0.0"
chalk: "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
esbuild: "npm:esbuild-wasm@^0.15.15"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
bin:
builder: ./lib/cli.js
checksum: 41024a63bdf85b39522b049955c385534129ece7ea027a9eae4ad7f3cfb77fc709e8fdaca7a4357a6795cbbc01d032cf083d93fcb39fb843aca89adb1ead2c5d
languageName: node
linkType: hard
"@yarnpkg/cli@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/cli@npm:4.0.0"
dependencies:
"@yarnpkg/core": "npm:^4.0.0"
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/libzip": "npm:^3.0.0"
"@yarnpkg/parsers": "npm:^3.0.0"
"@yarnpkg/plugin-compat": "npm:^4.0.0"
"@yarnpkg/plugin-constraints": "npm:^4.0.0"
"@yarnpkg/plugin-dlx": "npm:^4.0.0"
"@yarnpkg/plugin-essentials": "npm:^4.0.0"
"@yarnpkg/plugin-exec": "npm:^3.0.0"
"@yarnpkg/plugin-file": "npm:^3.0.0"
"@yarnpkg/plugin-git": "npm:^3.0.0"
"@yarnpkg/plugin-github": "npm:^3.0.0"
"@yarnpkg/plugin-http": "npm:^3.0.0"
"@yarnpkg/plugin-init": "npm:^4.0.0"
"@yarnpkg/plugin-interactive-tools": "npm:^4.0.0"
"@yarnpkg/plugin-link": "npm:^3.0.0"
"@yarnpkg/plugin-nm": "npm:^4.0.0"
"@yarnpkg/plugin-npm": "npm:^3.0.0"
"@yarnpkg/plugin-npm-cli": "npm:^4.0.0"
"@yarnpkg/plugin-pack": "npm:^4.0.0"
"@yarnpkg/plugin-patch": "npm:^4.0.0"
"@yarnpkg/plugin-pnp": "npm:^4.0.0"
"@yarnpkg/plugin-pnpm": "npm:^2.0.0"
"@yarnpkg/plugin-stage": "npm:^4.0.0"
"@yarnpkg/plugin-typescript": "npm:^4.0.0"
"@yarnpkg/plugin-version": "npm:^4.0.0"
"@yarnpkg/plugin-workspace-tools": "npm:^4.0.0"
"@yarnpkg/shell": "npm:^4.0.0"
ci-info: "npm:^3.2.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.0.0
checksum: 33ee0bd2c10c74ca9b9fb804e7309eb3060c1839e18e796e12addfe8924528d2a3df9a65c5981153eeeff22ef0a6c5d2319c05e991c31a5f411cda99968b40e0
languageName: node
linkType: hard
"@yarnpkg/core@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/core@npm:4.0.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.0.0"
"@yarnpkg/libzip": "npm:^3.0.0"
"@yarnpkg/parsers": "npm:^3.0.0"
"@yarnpkg/shell": "npm:^4.0.0"
camelcase: "npm:^5.3.1"
chalk: "npm:^3.0.0"
ci-info: "npm:^3.2.0"
clipanion: "npm:^4.0.0-rc.2"
cross-spawn: "npm:7.0.3"
diff: "npm:^5.1.0"
dotenv: "npm:^16.3.1"
fast-glob: "npm:^3.2.2"
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: 0023110fbc49e03c5bf2a9255d8d411ab1da28667b85b1a3107c7dd14f2c071bae61b7ab131ee9ff37df18e74ebcec7aac951b2d813d029c039cae4b4a9320d5
languageName: node
linkType: hard
"@yarnpkg/extensions@npm:^2.0.0":
version: 2.0.0
resolution: "@yarnpkg/extensions@npm:2.0.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
checksum: 763870f0436cc57a9782c91875deea26263bac25d0aaa4ea3f2ab10b3b98541c3a34d73447e7114ff648d5036f3a060517edcb37a4731cf8096564b6c95644fc
languageName: node
linkType: hard
"@yarnpkg/fslib@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/fslib@npm:3.0.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: c22eab3db1782797349ffe3786e155f089e5070d31b3b05972a340bb6720b1518b8a37c6964cf03143423aa0987c25e7d5c9db450e78a3ce360c64b84033b859
languageName: node
linkType: hard
"@yarnpkg/libui@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/libui@npm:3.0.0"
dependencies:
tslib: "npm:^2.4.0"
peerDependencies:
ink: ^3.0.8
react: ^16.8.4
checksum: b3e8d3fd11a914d308d4ba56f4ed0d7d60ad0b2de8da3f2da30d581c6db88e23e8fa2a143f70f018f0d6ef3c41399f4ab3af6a6a1d2e7632a0030f5a154435dd
languageName: node
linkType: hard
"@yarnpkg/libzip@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/libzip@npm:3.0.0"
dependencies:
"@types/emscripten": "npm:^1.39.6"
"@yarnpkg/fslib": "npm:^3.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/fslib": ^3.0.0
checksum: 1aa06a1da0d9b46a8f85991a81f9ddc00297369da28a528fa37c0a3643f6bb5eff35671e3c16713d9f5912070825d9afcba4de7a0bda7d9b2665d769d7116041
languageName: node
linkType: hard
"@yarnpkg/nm@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/nm@npm:4.0.0"
dependencies:
"@yarnpkg/core": "npm:^4.0.0"
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/pnp": "npm:^4.0.0"
checksum: 582138eb33819ea23cfe0a22f2048d704ab7cce5c1ffdfa2a3383045a68b9284a63d1f36ea96b9fbf7b801890c57bbfd64f451634b3d4da11ecaea5d24d5249a
languageName: node
linkType: hard
"@yarnpkg/parsers@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/parsers@npm:3.0.0"
dependencies:
js-yaml: "npm:^3.10.0"
tslib: "npm:^2.4.0"
checksum: cec2c6dd6e7f926e9f7de6c2d8551261fece40295f2bb2b333f47c88559094aead266750f4963809f7fded3bd9f642f194b4e0bb87a847e191761004a790533a
languageName: node
linkType: hard
"@yarnpkg/plugin-compat@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-compat@npm:4.0.0"
dependencies:
"@yarnpkg/extensions": "npm:^2.0.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-patch": ^4.0.0
checksum: 7f71c06d1418b8c42fa77dc93f74d0ea2fd02e7d2ca80f4a88610f8b3482a1249fa6397f69247c116ba4dc7a1f1c956c1b59fe2a7daa222085bffd88b7d3b183
languageName: node
linkType: hard
"@yarnpkg/plugin-constraints@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-constraints@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
lodash: "npm:^4.17.15"
tau-prolog: "npm:^0.2.66"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: 061d5ded2366521b786f654933219ab144670d04e9f3ddfc1dcd3d09e5b3360880d46e598d4a27638ac7e3c66ab11034122d8a19c3c240675b780dc2dd141aa3
languageName: node
linkType: hard
"@yarnpkg/plugin-dlx@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-dlx@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: 84ee386772c1d6cb28552d5265a56df7a60fb97b993786c1df5206afde38332f36b9444116666297777c41761c3e5dda540fad3192fcd956988604d10f5ec2d4
languageName: node
linkType: hard
"@yarnpkg/plugin-essentials@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-essentials@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/parsers": "npm:^3.0.0"
ci-info: "npm:^3.2.0"
clipanion: "npm:^4.0.0-rc.2"
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.14.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-git": ^3.0.0
checksum: 4231216a9ebf9b2a068b6729bc6b56f15893562af69742db8eebcf82db422f9cf6acd8ffe59508f553c0f40da8e33bcfd27c3d2d27750d96e20625e49df5a76d
languageName: node
linkType: hard
"@yarnpkg/plugin-exec@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/plugin-exec@npm:3.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
checksum: 438b3a612ab3808f05754120d1d6d311f620e30c1e98a9a515cbb299a63c38a053cd26b2f22a1eb8c26582ec0d8457e85478f9c9670f9abae142d0f372ab2fe9
languageName: node
linkType: hard
"@yarnpkg/plugin-file@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/plugin-file@npm:3.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/libzip": "npm:^3.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
checksum: 229e78e6c5464221d88ee53ab55f6f3a140c234e45ece3b4999d3e1038b31b5c1263b5c2929820988512ae87b1897bb9c0a0358495b3fa59350556b4abc82cc9
languageName: node
linkType: hard
"@yarnpkg/plugin-git@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/plugin-git@npm:3.0.0"
dependencies:
"@types/semver": "npm:^7.1.0"
"@yarnpkg/fslib": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
git-url-parse: "npm:^13.1.0"
lodash: "npm:^4.17.15"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
checksum: 6c84d5f011af8e3efe5f366957e336a433eab9d40b25931d32011502f6707d8981a5f44bac7a4b5c2eadeb16a6e8b39d8db6999dde80289b51efad670c6bd961
languageName: node
linkType: hard
"@yarnpkg/plugin-github@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/plugin-github@npm:3.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-git": ^3.0.0
checksum: b2d65a307c4252b642fbf6ce5d7084dee6a10c4d538fb85e5dd65671ebfd81ba558015f96b5b2204c191935aeae066298be5cee7116664bb85d9df33c0c3aa5f
languageName: node
linkType: hard
"@yarnpkg/plugin-http@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/plugin-http@npm:3.0.0"
dependencies:
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
checksum: e20d8846b057af7c2d28dceaa76ac0f156d8e733b60082acaa0516534d2a6c776d22c469fa751405c531b52e9cc335a0c317b3fa5d4ca68f0db3e78a2e69a138
languageName: node
linkType: hard
"@yarnpkg/plugin-init@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-init@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: 7751f308d998f292b59bc9fd2c60263e781dbcc6799af66c99558b6008bf36255767ae289ab7f4ff182012edd8f5b10a1044a0ef240873f359ee9abe5ecdcb3f
languageName: node
linkType: hard
"@yarnpkg/plugin-interactive-tools@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-interactive-tools@npm:4.0.0"
dependencies:
"@yarnpkg/libui": "npm:^3.0.0"
algoliasearch: "npm:^4.2.0"
clipanion: "npm:^4.0.0-rc.2"
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
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-essentials": ^4.0.0
checksum: 07695da339a6345e34885ce5f9a07a335e9a67fcad4d8efc3e3412568bd228032181a5296fe4612a26e50b04e9f681b36b5a06c659c73cc6c9ed81b220752b60
languageName: node
linkType: hard
"@yarnpkg/plugin-link@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/plugin-link@npm:3.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
checksum: 68d43cb51747bac351026e8fa0d1f31d0e37af0c9ed3f05d43d9ecbf1d426a8fb5dadf89c7af8f48fd27e248ddb66eac567741b69df73ca7959d9ae351b0e87a
languageName: node
linkType: hard
"@yarnpkg/plugin-nm@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-nm@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/libzip": "npm:^3.0.0"
"@yarnpkg/nm": "npm:^4.0.0"
"@yarnpkg/parsers": "npm:^3.0.0"
"@yarnpkg/plugin-pnp": "npm:^4.0.0"
"@yarnpkg/pnp": "npm:^4.0.0"
"@zkochan/cmd-shim": "npm:^5.1.0"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: e98436a4f114eb8c3815831fbb22825fa0878ec6367fadcb59e18dd630d4f41189a49f466b632629997cf3cabd1a8b6ed43dfb5aecc6374ccc5417c509147cd9
languageName: node
linkType: hard
"@yarnpkg/plugin-npm-cli@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-npm-cli@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
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.0.0
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-npm": ^3.0.0
"@yarnpkg/plugin-pack": ^4.0.0
checksum: f85013fc23645099d558637704e0054c60d952a95515ec5e29ed0a63e65b7f29e10e71e48708d21746b7b6612ddbf6e758eacb9c96b3a0f08d12c300384573f1
languageName: node
linkType: hard
"@yarnpkg/plugin-npm@npm:^3.0.0":
version: 3.0.0
resolution: "@yarnpkg/plugin-npm@npm:3.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
enquirer: "npm:^2.3.6"
lodash: "npm:^4.17.15"
semver: "npm:^7.1.2"
ssri: "npm:^6.0.1"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-pack": ^4.0.0
checksum: d5482b3cc12e7d37e0e3947787ba3a30e92fff3172f3bf7050994979a529ad6418b56b200167c2fc8470d99c9a807117f95cc5a6f51fdaf34c635a928612a829
languageName: node
linkType: hard
"@yarnpkg/plugin-pack@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-pack@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
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.0.0
"@yarnpkg/core": ^4.0.0
checksum: 81dcb98fbcf43c22978a6f7e37dbeea7ed23c9a27bca319597baddeb74c37151c8a397847659f9d39c3fe2033ac2cbac2b0126ba2fe940f9b0004f0b66b5abc2
languageName: node
linkType: hard
"@yarnpkg/plugin-patch@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-patch@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/libzip": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: 46dd3ad2d9cb84b48327b539368e6ecdbfeca2860d3b1e0a689bc2eba5a62668b1181ad4e012dad2da3fd2059e86624fd9e5dc25e7442e45615b75ef37053b5e
languageName: node
linkType: hard
"@yarnpkg/plugin-pnp@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-pnp@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/plugin-stage": "npm:^4.0.0"
"@yarnpkg/pnp": "npm:^4.0.0"
clipanion: "npm:^4.0.0-rc.2"
micromatch: "npm:^4.0.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: ff6649862adf4a50ad7bb59d2a7cedb268325346aa7931193f802fef20f0d92aa10c6ee7e0b7cf1888393da852712b76f1202b6c49d3824730d522f3069d854c
languageName: node
linkType: hard
"@yarnpkg/plugin-pnpm@npm:^2.0.0":
version: 2.0.0
resolution: "@yarnpkg/plugin-pnpm@npm:2.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/plugin-pnp": "npm:^4.0.0"
"@yarnpkg/plugin-stage": "npm:^4.0.0"
clipanion: "npm:^4.0.0-rc.2"
p-limit: "npm:^2.2.0"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: 18fe2ad052e33a689ba74b93b7c53caa9c0da654d2b36096fdeb9de40542b15d5113c315cd0732881df00b7769392bfce79f6f256f8aa5973c6426ef11430144
languageName: node
linkType: hard
"@yarnpkg/plugin-stage@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-stage@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
checksum: cee83dea8ce32c2bcbe3687d7a3314797b80bda680aea3963570fc9f8dd164d01413c83280172f44412e395cc1c6d3ea099d53a2da6dc928b9b54b6169078685
languageName: node
linkType: hard
"@yarnpkg/plugin-typescript@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-typescript@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/plugin-pack": "npm:^4.0.0"
algoliasearch: "npm:^4.2.0"
semver: "npm:^7.1.2"
tslib: "npm:^2.4.0"
peerDependencies:
"@yarnpkg/cli": ^4.0.0
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-essentials": ^4.0.0
checksum: a29ff7ab0578aff6bd5acd8c3317a956dca47946c14a5eef46058011303799465064e9225e3083e4f640d40e38518ab4c078d46e670498bdc5dd2b46d46adf22
languageName: node
linkType: hard
"@yarnpkg/plugin-version@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-version@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/libui": "npm:^3.0.0"
"@yarnpkg/parsers": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
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
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-git": ^3.0.0
checksum: ce39652b1135307166dbfffcf3193da50a8b59876b522211da5071b2ebd99e9350d0feac194a9870247b9d1b61adf29e57f64f8175a0c776e67534581ebcc59c
languageName: node
linkType: hard
"@yarnpkg/plugin-workspace-tools@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/plugin-workspace-tools@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
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.0.0
"@yarnpkg/core": ^4.0.0
"@yarnpkg/plugin-git": ^3.0.0
checksum: be5b39565baae8b90b32b1b1ca51bb40c9a5cd71e8860a26818e64d77b2c4ee69cc50e8e32599a4ebe5e03d7419f9d7b5e949ad8076d0ccd76e31e28e44cff71
languageName: node
linkType: hard
"@yarnpkg/pnp@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/pnp@npm:4.0.0"
dependencies:
"@types/node": "npm:^18.17.15"
"@yarnpkg/fslib": "npm:^3.0.0"
checksum: 58b04d4d6cba611861bf52072c112babba1d55aa1bbc6a2615d33673bf1c92f3a62e9e6f5b248eac758487201334cc97902debe719922f10bb4ccbe6c2d2af5d
languageName: node
linkType: hard
"@yarnpkg/shell@npm:^4.0.0":
version: 4.0.0
resolution: "@yarnpkg/shell@npm:4.0.0"
dependencies:
"@yarnpkg/fslib": "npm:^3.0.0"
"@yarnpkg/parsers": "npm:^3.0.0"
chalk: "npm:^3.0.0"
clipanion: "npm:^4.0.0-rc.2"
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: 040728146cc2d0ec0b25896f4286f2c586965384c7440023ac75db73fcadfc4938c260c3fc862fc892b5cf547b61526b6524fa24cf311f8eac40f7f7568183f4
languageName: node
linkType: hard
"@zkochan/cmd-shim@npm:^5.1.0":
version: 5.4.1
resolution: "@zkochan/cmd-shim@npm:5.4.1"
dependencies:
cmd-extension: "npm:^1.0.2"
graceful-fs: "npm:^4.2.10"
is-windows: "npm:^1.0.2"
checksum: 59ef924e62aa6ddb6867e6e9b6b9b428fcb0d47a647b2e43fc0ed1e0af6812c140e224265b0f33149a2e833475b3109ed55b278882a3f59dd4f27a5ed8e1356f
languageName: node
linkType: hard
"algoliasearch@npm:^4.2.0":
version: 4.20.0
resolution: "algoliasearch@npm:4.20.0"
dependencies:
"@algolia/cache-browser-local-storage": "npm:4.20.0"
"@algolia/cache-common": "npm:4.20.0"
"@algolia/cache-in-memory": "npm:4.20.0"
"@algolia/client-account": "npm:4.20.0"
"@algolia/client-analytics": "npm:4.20.0"
"@algolia/client-common": "npm:4.20.0"
"@algolia/client-personalization": "npm:4.20.0"
"@algolia/client-search": "npm:4.20.0"
"@algolia/logger-common": "npm:4.20.0"
"@algolia/logger-console": "npm:4.20.0"
"@algolia/requester-browser-xhr": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
"@algolia/requester-node-http": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: 39c1e5391560ba019a845440c00f770e41b3462860214f45b678f976e3de61108eb7abafab610f26adde7d3057df1f8f65d465bcd114612546b935880e43f1dd
languageName: node
linkType: hard
"ansi-colors@npm:^4.1.1":
version: 4.1.1
resolution: "ansi-colors@npm:4.1.1"
checksum: 6086ade4336b4250b6b25e144b83e5623bcaf654d3df0c3546ce09c9c5ff999cb6a6f00c87e802d05cf98aef79d92dc76ade2670a2493b8dcb80220bec457838
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: da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50
languageName: node
linkType: hard
"ansi-regex@npm:^5.0.0":
version: 5.0.0
resolution: "ansi-regex@npm:5.0.0"
checksum: 4c711eeec7ab00c1869e926ae78758abd10137047cbb08b6fda499be2dc39c2d5f21e15c7279dbb222de523b53834b54043d4997191f62372d5e2250edcbc83a
languageName: node
linkType: hard
"ansi-regex@npm:^5.0.1":
version: 5.0.1
resolution: "ansi-regex@npm:5.0.1"
checksum: 9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737
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: 895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041
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: b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de
languageName: node
linkType: hard
"astral-regex@npm:^2.0.0":
version: 2.0.0
resolution: "astral-regex@npm:2.0.0"
checksum: f63d439cc383db1b9c5c6080d1e240bd14dae745f15d11ec5da863e182bbeca70df6c8191cffef5deba0b566ef98834610a68be79ac6379c95eeb26e1b310e25
languageName: node
linkType: hard
"auto-bind@npm:4.0.0":
version: 4.0.0
resolution: "auto-bind@npm:4.0.0"
checksum: 12f70745d081ba990dca028ecfa70de25d4baa9a8b74a5bef3ab293da56cba32ff8276c3ff8e5fe6d9f370547bf3fa71486befbfefe272af7e722c21d0c25530
languageName: node
linkType: hard
"base64-js@npm:^1.0.2":
version: 1.3.1
resolution: "base64-js@npm:1.3.1"
checksum: f111a2c2b105eb9ee3818c30154e047fb00370699a03c2130d0944f10914697677ceb5faec64ea851e00710b80539afb03e9aa098e19c183a5e7a1cdc18abb29
languageName: node
linkType: hard
"bl@npm:^4.0.3":
version: 4.0.3
resolution: "bl@npm:4.0.3"
dependencies:
buffer: "npm:^5.5.0"
inherits: "npm:^2.0.4"
readable-stream: "npm:^3.4.0"
checksum: c7b0d5e5f96f3222aed169f82b6b443f7878f409e173f29702b7685a197409eb9a4a67bb23dc4537f41e542d83a596f1904718753bf42f19ce5fb781d694f01d
languageName: node
linkType: hard
"braces@npm:^3.0.1":
version: 3.0.2
resolution: "braces@npm:3.0.2"
dependencies:
fill-range: "npm:^7.0.1"
checksum: 321b4d675791479293264019156ca322163f02dc06e3c4cab33bb15cd43d80b51efef69b0930cfde3acd63d126ebca24cd0544fa6f261e093a0fb41ab9dda381
languageName: node
linkType: hard
"buffer@npm:^5.5.0":
version: 5.6.0
resolution: "buffer@npm:5.6.0"
dependencies:
base64-js: "npm:^1.0.2"
ieee754: "npm:^1.1.4"
checksum: 07037a0278b07fbc779920f1ba1b473933ffb4a2e2f7b387c55daf6ac64a05b58c27da9e85730a4046e8f97a49f8acd9f7bf89605c0a4dfda88ebfb7e08bfe4a
languageName: node
linkType: hard
"cacheable-lookup@npm:^5.0.3":
version: 5.0.3
resolution: "cacheable-lookup@npm:5.0.3"
checksum: ff7e5679ced82097c166fe89089a8eb2a320315d7810bf205da79125b7852675a662ed7f883a9335384d9d0ceda6752c56283b0619863f44774282629813e658
languageName: node
linkType: hard
"cacheable-request@npm:^7.0.1":
version: 7.0.1
resolution: "cacheable-request@npm:7.0.1"
dependencies:
clone-response: "npm:^1.0.2"
get-stream: "npm:^5.1.0"
http-cache-semantics: "npm:^4.0.0"
keyv: "npm:^4.0.0"
lowercase-keys: "npm:^2.0.0"
normalize-url: "npm:^4.1.0"
responselike: "npm:^2.0.0"
checksum: 79996bd3fcf2b61f3af4c909a5d71a116fb9fd900ed0038b8c13476a6b652d1cc8689d9fd73a98c3fb2bf3268bc08dd52e8ff5aaea29aa98f747a000bb2fa506
languageName: node