forked from SBoudrias/Inquirer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8718 lines (7827 loc) · 298 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@andrewbranch/untar.js@npm:^1.0.3":
version: 1.0.3
resolution: "@andrewbranch/untar.js@npm:1.0.3"
checksum: 10/a32de53839fc61af90a394cf93d4368aacd167c9c80f0b3ba0c268460942a6ce2bfe257b6d3f03986b9dcb7368f10b9dc7f66c2f94254d2662da8278454e7d12
languageName: node
linkType: hard
"@arethetypeswrong/cli@npm:^0.15.3":
version: 0.15.3
resolution: "@arethetypeswrong/cli@npm:0.15.3"
dependencies:
"@arethetypeswrong/core": "npm:0.15.1"
chalk: "npm:^4.1.2"
cli-table3: "npm:^0.6.3"
commander: "npm:^10.0.1"
marked: "npm:^9.1.2"
marked-terminal: "npm:^6.0.0"
semver: "npm:^7.5.4"
bin:
attw: dist/index.js
checksum: 10/d64eea5c946669a24cd93007b03546b1422b9fa26e298589add461fc818a9aa1fddd2f0d3a7ed3a5f302f6c047ba574782bf4b04f7b087f1a370540e5dbfbb90
languageName: node
linkType: hard
"@arethetypeswrong/core@npm:0.15.1":
version: 0.15.1
resolution: "@arethetypeswrong/core@npm:0.15.1"
dependencies:
"@andrewbranch/untar.js": "npm:^1.0.3"
fflate: "npm:^0.8.2"
semver: "npm:^7.5.4"
ts-expose-internals-conditionally: "npm:1.0.0-empty.0"
typescript: "npm:5.3.3"
validate-npm-package-name: "npm:^5.0.0"
checksum: 10/af07d7d0d93926b019d8dc412cee251db972e443be181ef4ef79d28d61f76542b2911a381397ab3ddc23d9a669d830994b4f3b0033f8244f3750027f319595af
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": "npm:^7.22.5"
checksum: 10/b1ac7de75859699a9118c5247f489cc943d8d041339323904cd8140592993762f50abc14bc49b6703cb8a94b1aa90d6df2599625825e7ae470c9283b4a6170aa
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: 10/c352082474a2ee1d2b812bd116a56b2e8b38065df9678a32a535f151ec6f58e54633cc778778374f10544b930703cca6ddf998803888a636afa27e2658068a9c
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-string-parser@npm:7.24.7"
checksum: 10/603d8d962bbe89907aa99a8f19a006759ab7b2464615f20a6a22e3e2e8375af37ddd0e5175c9e622e1c4b2d83607ffb41055a59d0ce34404502af30fde573a5c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.22.5, @babel/helper-validator-identifier@npm:^7.24.5":
version: 7.24.5
resolution: "@babel/helper-validator-identifier@npm:7.24.5"
checksum: 10/38aaf6a64a0ea2e84766165b461deda3c24fd2173dff18419a2cc9e1ea1d3e709039aee94db29433a07011492717c80900a5eb564cdca7d137757c3c69e26898
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10/86875063f57361471b531dbc2ea10bbf5406e12b06d249b03827d361db4cad2388c6f00936bcd9dc86479f7e2c69ea21412c2228d4b3672588b754b70a449d4b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/highlight@npm:7.22.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10/ff59305c0184648c9cb042638e9d2d184c12df2a112c71359268a982e7ab65cd5236f392ee8eb722a3bf5b5bd155954fdc7b5aacb6b2b1cd5e38dafcbe63cc57
languageName: node
linkType: hard
"@babel/parser@npm:^7.24.4":
version: 7.24.7
resolution: "@babel/parser@npm:7.24.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10/ef9ebce60e13db560ccc7af9235d460f6726bb7e23ae2d675098c1fc43d5249067be60d4118889dad33b1d4f85162cf66baf554719e1669f29bb20e71322568e
languageName: node
linkType: hard
"@babel/types@npm:^7.24.0":
version: 7.24.7
resolution: "@babel/types@npm:7.24.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
to-fast-properties: "npm:^2.0.0"
checksum: 10/ad3c8c0d6fb4acb0bb74bb5b4bb849b181bf6185677ef9c59c18856c81e43628d0858253cf232f0eca806f02e08eff85a1d3e636a3e94daea737597796b0b430
languageName: node
linkType: hard
"@babel/types@npm:^7.8.3":
version: 7.23.9
resolution: "@babel/types@npm:7.23.9"
dependencies:
"@babel/helper-string-parser": "npm:^7.23.4"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 10/bed9634e5fd0f9dc63c84cfa83316c4cb617192db9fedfea464fca743affe93736d7bf2ebf418ee8358751a9d388e303af87a0c050cb5d87d5870c1b0154f6cb
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 10/1a1f0e356a3bb30b5f1ced6f79c413e6ebacf130421f15fac5fcd8be5ddf98aedb4404d7f5624e3285b700e041f9ef938321f3ca4d359d5b716f96afa120d88d
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10/9d226461c1e91e95f067be2bdc5e6f99cfe55a721f45afb44122e23e4b8602eeac4ff7325af6b5a369f36396ee1514d3809af3f57769066d80d83790d8e53339
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10/b6e38a1712fab242c86a241c229cf562195aad985d0564bd352ac404be583029e89e93028ffd2c251d2c407ecac5fb0cbdca94a2d5c10f29ac806ede0508b3ff
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/aix-ppc64@npm:0.20.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-arm64@npm:0.20.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-arm@npm:0.20.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-x64@npm:0.20.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/darwin-arm64@npm:0.20.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/darwin-x64@npm:0.20.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/freebsd-arm64@npm:0.20.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/freebsd-x64@npm:0.20.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-arm64@npm:0.20.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-arm@npm:0.20.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-ia32@npm:0.20.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-loong64@npm:0.20.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-mips64el@npm:0.20.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-ppc64@npm:0.20.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-riscv64@npm:0.20.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-s390x@npm:0.20.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-x64@npm:0.20.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/netbsd-x64@npm:0.20.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/openbsd-x64@npm:0.20.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/sunos-x64@npm:0.20.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-arm64@npm:0.20.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-ia32@npm:0.20.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-x64@npm:0.20.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.1.2, @eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.0":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: 10/8c36169c815fc5d726078e8c71a5b592957ee60d08c6470f9ce0187c8046af1a00afbda0a065cc40ff18d5d83f82aed9793c6818f7304a74a7488dc9f3ecbd42
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.11.0":
version: 4.11.0
resolution: "@eslint-community/regexpp@npm:4.11.0"
checksum: 10/f053f371c281ba173fe6ee16dbc4fe544c84870d58035ccca08dba7f6ce1830d895ce3237a0db89ba37616524775dca82f1c502066b58e2d5712d7f87f5ba17c
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.17.0":
version: 0.17.0
resolution: "@eslint/config-array@npm:0.17.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.4"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10/4609b94519cd63ed1aba1429a53c0eb3cb5585056ffaa10184f0b7b91ceaed7ed5e625da3b5b4ffcc9b9093be8d6be7fc46111885936d6543890efb016aa303f
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.0.2, @eslint/eslintrc@npm:^3.1.0":
version: 3.1.0
resolution: "@eslint/eslintrc@npm:3.1.0"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10/02bf892d1397e1029209dea685e9f4f87baf643315df2a632b5f121ec7e8548a3b34f428a007234fa82772218fa8a3ac2d10328637b9ce63b7f8344035b74db3
languageName: node
linkType: hard
"@eslint/js@npm:9.7.0, @eslint/js@npm:^9.7.0":
version: 9.7.0
resolution: "@eslint/js@npm:9.7.0"
checksum: 10/b56b9fdec705f2cefae3a6d9d4227c4c28c5cbdbd8849c7997c357cabd4a729cee4445ddb43bb1423fbeb2280a119ced4d0819be8749d107c511e9d81dfe863a
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/object-schema@npm:2.1.4"
checksum: 10/221e8d9f281c605948cd6e030874aacce83fe097f8f9c1964787037bccf08e82b7aa9eff1850a30fffac43f1d76555727ec22a2af479d91e268e89d1e035131e
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10/e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.0
resolution: "@humanwhocodes/retry@npm:0.3.0"
checksum: 10/e574bab58680867414e225c9002e9a97eb396f85871c180fbb1a9bcdf9ded4b4de0b327f7d0c43b775873362b7c92956d4b322e8bc4b90be56077524341f04b2
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 10/dae0656f2e77315a3027ab9ca438ed344bf78a5fda7b145f65a1fface20dfb17e94e1d31e146c8b76de4657c21020aabc72dc53b53941c9f5fe2c27416559283
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^2.4.2, @inquirer/checkbox@workspace:packages/checkbox":
version: 0.0.0-use.local
resolution: "@inquirer/checkbox@workspace:packages/checkbox"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/figures": "npm:^1.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
languageName: unknown
linkType: soft
"@inquirer/cjs-integration-tests@workspace:integration/cjs":
version: 0.0.0-use.local
resolution: "@inquirer/cjs-integration-tests@workspace:integration/cjs"
dependencies:
"@inquirer/core": "workspace:*"
"@inquirer/input": "workspace:*"
"@inquirer/prompts": "workspace:*"
inquirer: "workspace:*"
languageName: unknown
linkType: soft
"@inquirer/confirm@npm:^3.1.17, @inquirer/confirm@workspace:packages/confirm":
version: 0.0.0-use.local
resolution: "@inquirer/confirm@workspace:packages/confirm"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
languageName: unknown
linkType: soft
"@inquirer/core@npm:^9.0.5, @inquirer/core@workspace:*, @inquirer/core@workspace:packages/core":
version: 0.0.0-use.local
resolution: "@inquirer/core@workspace:packages/core"
dependencies:
"@inquirer/figures": "npm:^1.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
"@types/mute-stream": "npm:^0.0.4"
"@types/node": "npm:^20.14.11"
"@types/wrap-ansi": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
cli-spinners: "npm:^2.9.2"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^1.0.0"
signal-exit: "npm:^4.1.0"
strip-ansi: "npm:^6.0.1"
wrap-ansi: "npm:^6.2.0"
yoctocolors-cjs: "npm:^2.1.2"
languageName: unknown
linkType: soft
"@inquirer/demo@workspace:packages/demo":
version: 0.0.0-use.local
resolution: "@inquirer/demo@workspace:packages/demo"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/prompts": "npm:^5.3.2"
yoctocolors-cjs: "npm:^2.1.2"
bin:
inquirer-demo: index.mjs
languageName: unknown
linkType: soft
"@inquirer/editor@npm:^2.1.17, @inquirer/editor@workspace:packages/editor":
version: 0.0.0-use.local
resolution: "@inquirer/editor@workspace:packages/editor"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
external-editor: "npm:^3.1.0"
languageName: unknown
linkType: soft
"@inquirer/esm-integration-tests@workspace:integration/esm":
version: 0.0.0-use.local
resolution: "@inquirer/esm-integration-tests@workspace:integration/esm"
dependencies:
"@inquirer/core": "workspace:*"
"@inquirer/input": "workspace:*"
"@inquirer/prompts": "workspace:*"
inquirer: "workspace:*"
languageName: unknown
linkType: soft
"@inquirer/expand@npm:^2.1.17, @inquirer/expand@workspace:packages/expand":
version: 0.0.0-use.local
resolution: "@inquirer/expand@workspace:packages/expand"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
yoctocolors-cjs: "npm:^2.1.2"
languageName: unknown
linkType: soft
"@inquirer/figures@npm:^1.0.5, @inquirer/figures@workspace:packages/figures":
version: 0.0.0-use.local
resolution: "@inquirer/figures@workspace:packages/figures"
languageName: unknown
linkType: soft
"@inquirer/input@npm:^2.2.4, @inquirer/input@workspace:*, @inquirer/input@workspace:packages/input":
version: 0.0.0-use.local
resolution: "@inquirer/input@workspace:packages/input"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
languageName: unknown
linkType: soft
"@inquirer/number@npm:^1.0.5, @inquirer/number@workspace:packages/number":
version: 0.0.0-use.local
resolution: "@inquirer/number@workspace:packages/number"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
languageName: unknown
linkType: soft
"@inquirer/password@npm:^2.1.17, @inquirer/password@workspace:packages/password":
version: 0.0.0-use.local
resolution: "@inquirer/password@workspace:packages/password"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
ansi-escapes: "npm:^4.3.2"
languageName: unknown
linkType: soft
"@inquirer/prompts@npm:^5.3.2, @inquirer/prompts@workspace:*, @inquirer/prompts@workspace:packages/prompts":
version: 0.0.0-use.local
resolution: "@inquirer/prompts@workspace:packages/prompts"
dependencies:
"@inquirer/checkbox": "npm:^2.4.2"
"@inquirer/confirm": "npm:^3.1.17"
"@inquirer/editor": "npm:^2.1.17"
"@inquirer/expand": "npm:^2.1.17"
"@inquirer/input": "npm:^2.2.4"
"@inquirer/number": "npm:^1.0.5"
"@inquirer/password": "npm:^2.1.17"
"@inquirer/rawlist": "npm:^2.1.17"
"@inquirer/search": "npm:^1.0.2"
"@inquirer/select": "npm:^2.4.2"
"@inquirer/type": "npm:^1.5.1"
languageName: unknown
linkType: soft
"@inquirer/rawlist@npm:^2.1.17, @inquirer/rawlist@workspace:packages/rawlist":
version: 0.0.0-use.local
resolution: "@inquirer/rawlist@workspace:packages/rawlist"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
yoctocolors-cjs: "npm:^2.1.2"
languageName: unknown
linkType: soft
"@inquirer/root@workspace:.":
version: 0.0.0-use.local
resolution: "@inquirer/root@workspace:."
dependencies:
"@arethetypeswrong/cli": "npm:^0.15.3"
"@eslint/js": "npm:^9.7.0"
"@sindresorhus/tsconfig": "npm:^6.0.0"
"@types/node": "npm:^20.14.11"
"@vitest/coverage-v8": "npm:^2.0.3"
"@vitest/ui": "npm:^2.0.3"
eslint: "npm:^9.7.0"
eslint-config-prettier: "npm:^9.1.0"
eslint-plugin-n: "npm:^17.9.0"
eslint-plugin-prettier: "npm:^5.2.1"
eslint-plugin-unicorn: "npm:^54.0.0"
globals: "npm:^15.8.0"
globby: "npm:^14.0.2"
husky: "npm:^9.1.1"
lerna: "npm:^8.1.7"
lint-staged: "npm:^15.2.7"
prettier: "npm:^3.3.3"
ts-node: "npm:^10.9.2"
turbo: "npm:^2.0.9"
typescript: "npm:^5.5.3"
typescript-eslint: "npm:^7.16.1"
vitest: "npm:^2.0.3"
languageName: unknown
linkType: soft
"@inquirer/search@npm:^1.0.2, @inquirer/search@workspace:packages/search":
version: 0.0.0-use.local
resolution: "@inquirer/search@workspace:packages/search"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/figures": "npm:^1.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
yoctocolors-cjs: "npm:^2.1.2"
languageName: unknown
linkType: soft
"@inquirer/select@npm:^2.4.2, @inquirer/select@workspace:packages/select":
version: 0.0.0-use.local
resolution: "@inquirer/select@workspace:packages/select"
dependencies:
"@inquirer/core": "npm:^9.0.5"
"@inquirer/figures": "npm:^1.0.5"
"@inquirer/testing": "npm:^2.1.28"
"@inquirer/type": "npm:^1.5.1"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
languageName: unknown
linkType: soft
"@inquirer/testing@npm:^2.1.28, @inquirer/testing@workspace:packages/testing":
version: 0.0.0-use.local
resolution: "@inquirer/testing@workspace:packages/testing"
dependencies:
"@inquirer/type": "npm:^1.5.1"
"@types/mute-stream": "npm:^0.0.4"
"@types/node": "npm:^20.14.11"
ansi-escapes: "npm:^4.3.2"
mute-stream: "npm:^1.0.0"
strip-ansi: "npm:^6.0.1"
languageName: unknown
linkType: soft
"@inquirer/type@npm:^1.5.1, @inquirer/type@workspace:packages/type":
version: 0.0.0-use.local
resolution: "@inquirer/type@workspace:packages/type"
dependencies:
mute-stream: "npm:^1.0.0"
languageName: unknown
linkType: soft
"@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: 10/e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 10/85682b14602f32023e487f62bc4076fe13cd3e887df9cca36acc0d41ea99b403100d586acb9367331526f3ee737d802ecaa582f59020998d75991e62a7ef0db5
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.3
resolution: "@istanbuljs/schema@npm:0.1.3"
checksum: 10/a9b1e49acdf5efc2f5b2359f2df7f90c5c725f2656f16099e8b2cd3a000619ecca9fc48cf693ba789cf0fd989f6e0df6a22bc05574be4223ecdbb7997d04384b
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": "npm:^0.27.8"
checksum: 10/910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": "npm:^1.2.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/81587b3c4dd8e6c60252122937cea0c637486311f4ed208b52b62aae2e7a87598f63ec330e6cd0984af494bfb16d3f0d60d3b21d7e5b4aedd2602ff3fe9d32e2
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3, @jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 10/832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 10/89960ac087781b961ad918978975bcdf2051cd1741880469783c42de64239703eab9db5230d776d8e6a09d73bb5e4cb964e07d93ee6e2e7aea5a7d726e865c09
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: 10/83deafb8e7a5ca98993c2c6eeaa93c270f6f647a4c0dc00deb38c9cf9b2d3b7bf15e8839540155247ef034a052c0ec4466f980bf0c9e2ab63b97d16c0cedd3ff
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10/dced32160a44b49d531b80a4a2159dceab6b3ddf0c8e95a0deae4b0e894b172defa63d5ac52a19c2068e1fe7d31ea4ba931fbeec103233ecb4208953967120fc
languageName: node
linkType: hard
"@lerna/create@npm:8.1.7":
version: 8.1.7
resolution: "@lerna/create@npm:8.1.7"
dependencies:
"@npmcli/arborist": "npm:7.5.3"
"@npmcli/package-json": "npm:5.2.0"
"@npmcli/run-script": "npm:8.1.0"
"@nx/devkit": "npm:>=17.1.2 < 20"
"@octokit/plugin-enterprise-rest": "npm:6.0.1"
"@octokit/rest": "npm:19.0.11"
aproba: "npm:2.0.0"
byte-size: "npm:8.1.1"
chalk: "npm:4.1.0"
clone-deep: "npm:4.0.1"
cmd-shim: "npm:6.0.3"
color-support: "npm:1.1.3"
columnify: "npm:1.6.0"
console-control-strings: "npm:^1.1.0"
conventional-changelog-core: "npm:5.0.1"
conventional-recommended-bump: "npm:7.0.1"
cosmiconfig: "npm:^8.2.0"
dedent: "npm:1.5.3"
execa: "npm:5.0.0"
fs-extra: "npm:^11.2.0"
get-stream: "npm:6.0.0"
git-url-parse: "npm:14.0.0"
glob-parent: "npm:6.0.2"
globby: "npm:11.1.0"
graceful-fs: "npm:4.2.11"
has-unicode: "npm:2.0.1"
ini: "npm:^1.3.8"
init-package-json: "npm:6.0.3"
inquirer: "npm:^8.2.4"
is-ci: "npm:3.0.1"
is-stream: "npm:2.0.0"
js-yaml: "npm:4.1.0"
libnpmpublish: "npm:9.0.9"
load-json-file: "npm:6.2.0"
lodash: "npm:^4.17.21"
make-dir: "npm:4.0.0"
minimatch: "npm:3.0.5"
multimatch: "npm:5.0.0"
node-fetch: "npm:2.6.7"
npm-package-arg: "npm:11.0.2"
npm-packlist: "npm:8.0.2"
npm-registry-fetch: "npm:^17.1.0"
nx: "npm:>=17.1.2 < 20"
p-map: "npm:4.0.0"
p-map-series: "npm:2.1.0"
p-queue: "npm:6.6.2"
p-reduce: "npm:^2.1.0"
pacote: "npm:^18.0.6"
pify: "npm:5.0.0"
read-cmd-shim: "npm:4.0.0"
resolve-from: "npm:5.0.0"
rimraf: "npm:^4.4.1"
semver: "npm:^7.3.4"
set-blocking: "npm:^2.0.0"
signal-exit: "npm:3.0.7"
slash: "npm:^3.0.0"
ssri: "npm:^10.0.6"
string-width: "npm:^4.2.3"
strip-ansi: "npm:^6.0.1"
strong-log-transformer: "npm:2.1.0"
tar: "npm:6.2.1"
temp-dir: "npm:1.0.0"
upath: "npm:2.0.1"
uuid: "npm:^10.0.0"
validate-npm-package-license: "npm:^3.0.4"
validate-npm-package-name: "npm:5.0.1"
wide-align: "npm:1.1.5"
write-file-atomic: "npm:5.0.1"
write-pkg: "npm:4.0.0"
yargs: "npm:17.7.2"
yargs-parser: "npm:21.1.1"
checksum: 10/81e6054f395a1f14de8d6f4539403a61c59ce477360167a6b1a1946ad1676a1157b94960d139a6b7eca5715a101fd7ee8609e2959729dd75531793d8920c2f4b
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: 10/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: 10/012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
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: 10/40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.0
resolution: "@npmcli/agent@npm:2.2.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.1"
checksum: 10/822ea077553cd9cfc5cbd6d92380b0950fcb054a7027cd1b63a33bd0cbb16b0c6626ea75d95ec0e804643c8904472d3361d2da8c2444b1fb02a9b525d9c07c41
languageName: node
linkType: hard
"@npmcli/arborist@npm:7.5.3":
version: 7.5.3
resolution: "@npmcli/arborist@npm:7.5.3"
dependencies:
"@isaacs/string-locale-compare": "npm:^1.1.0"
"@npmcli/fs": "npm:^3.1.1"
"@npmcli/installed-package-contents": "npm:^2.1.0"
"@npmcli/map-workspaces": "npm:^3.0.2"
"@npmcli/metavuln-calculator": "npm:^7.1.1"
"@npmcli/name-from-folder": "npm:^2.0.0"
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/package-json": "npm:^5.1.0"
"@npmcli/query": "npm:^3.1.0"
"@npmcli/redact": "npm:^2.0.0"
"@npmcli/run-script": "npm:^8.1.0"
bin-links: "npm:^4.0.4"
cacache: "npm:^18.0.3"
common-ancestor-path: "npm:^1.0.1"
hosted-git-info: "npm:^7.0.2"
json-parse-even-better-errors: "npm:^3.0.2"
json-stringify-nice: "npm:^1.1.4"
lru-cache: "npm:^10.2.2"
minimatch: "npm:^9.0.4"
nopt: "npm:^7.2.1"
npm-install-checks: "npm:^6.2.0"
npm-package-arg: "npm:^11.0.2"
npm-pick-manifest: "npm:^9.0.1"
npm-registry-fetch: "npm:^17.0.1"
pacote: "npm:^18.0.6"
parse-conflict-json: "npm:^3.0.0"
proc-log: "npm:^4.2.0"
proggy: "npm:^2.0.0"
promise-all-reject-late: "npm:^1.0.0"
promise-call-limit: "npm:^3.0.1"
read-package-json-fast: "npm:^3.0.2"
semver: "npm:^7.3.7"
ssri: "npm:^10.0.6"
treeverse: "npm:^3.0.0"
walk-up-path: "npm:^3.0.1"
bin:
arborist: bin/index.js
checksum: 10/e149df712a2396f59e348ff32d763f62bbdf576f3976110f47b10cd912a91cce76c83f859bb0f97f4ca5273f15a270df54a702190753772f3539a3f10307b6ed
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10/f3a7ab3a31de65e42aeb6ed03ed035ef123d2de7af4deb9d4a003d27acc8618b57d9fb9d259fe6c28ca538032a028f37337264388ba27d26d37fff7dde22476e
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.1":
version: 3.1.1
resolution: "@npmcli/fs@npm:3.1.1"
dependencies:
semver: "npm:^7.3.5"
checksum: 10/1e0e04087049b24b38bc0b30d87a9388ee3ca1d3fdfc347c2f77d84fcfe6a51f250bc57ba2c1f614d7e4285c6c62bf8c769bc19aa0949ea39e5b043ee023b0bd
languageName: node
linkType: hard
"@npmcli/git@npm:^5.0.0":
version: 5.0.4
resolution: "@npmcli/git@npm:5.0.4"
dependencies:
"@npmcli/promise-spawn": "npm:^7.0.0"
lru-cache: "npm:^10.0.1"
npm-pick-manifest: "npm:^9.0.0"
proc-log: "npm:^3.0.0"
promise-inflight: "npm:^1.0.1"
promise-retry: "npm:^2.0.1"
semver: "npm:^7.3.5"
which: "npm:^4.0.0"
checksum: 10/136e71f4de73ef315285ebaf172b4681d1d22aff4c87ec526af1e57ab88ad7c864272523382009a2e3fab00f932bea204ed90cbdf187c7b7bd3d5c6e3d6c6d1a
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.0.1":
version: 2.0.2
resolution: "@npmcli/installed-package-contents@npm:2.0.2"
dependencies:
npm-bundled: "npm:^3.0.0"
npm-normalize-package-bin: "npm:^3.0.0"
bin:
installed-package-contents: lib/index.js
checksum: 10/4598a97e3d6e4c8602157d9ac47723071f09662852add0f275af62d1038d8e44d0c5ff9afa05358ba3ca7e100c860d679964be0a163add6ea028dc72d31f0af1
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.1.0":
version: 2.1.0
resolution: "@npmcli/installed-package-contents@npm:2.1.0"
dependencies:
npm-bundled: "npm:^3.0.0"
npm-normalize-package-bin: "npm:^3.0.0"
bin:
installed-package-contents: bin/index.js
checksum: 10/68ab3ea2994f5ea21c61940de94ec4f2755fe569ef0b86e22db0695d651a3c88915c5eab61d634cfa203b9c801ee307c8aa134c2c4bd2e4fe1aa8d295ce8a163
languageName: node
linkType: hard
"@npmcli/map-workspaces@npm:^3.0.2":
version: 3.0.6
resolution: "@npmcli/map-workspaces@npm:3.0.6"
dependencies:
"@npmcli/name-from-folder": "npm:^2.0.0"
glob: "npm:^10.2.2"
minimatch: "npm:^9.0.0"
read-package-json-fast: "npm:^3.0.0"
checksum: 10/b364b155991a4ff85db5ea5b9f809ab65936350fc36fe1e51d5ab8cd479bba57e69f02e17215c0e2126e383074c2987c268d8e589aacd26c9962e028f4da98f2
languageName: node
linkType: hard
"@npmcli/metavuln-calculator@npm:^7.1.1":
version: 7.1.1
resolution: "@npmcli/metavuln-calculator@npm:7.1.1"
dependencies:
cacache: "npm:^18.0.0"
json-parse-even-better-errors: "npm:^3.0.0"
pacote: "npm:^18.0.0"
proc-log: "npm:^4.1.0"
semver: "npm:^7.3.5"
checksum: 10/57163b4bde4af3f5badb0c9b0c868f9539e2a112ee73c606680b7548b148bf58e793952d74eb1e581c9cc2e630bc03bc60adc04b3f1e7960482f97af817f28d2
languageName: node
linkType: hard
"@npmcli/name-from-folder@npm:^2.0.0":
version: 2.0.0
resolution: "@npmcli/name-from-folder@npm:2.0.0"
checksum: 10/75beb40373f916cfcf7327958b3ab920ab4e32d24217197927dd1c76a325c7645695011fce9cb2a8f93616f8b74946e84eebe3830303e11ed9d400dae623a99b
languageName: node
linkType: hard
"@npmcli/node-gyp@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/node-gyp@npm:3.0.0"