-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
9931 lines (8948 loc) · 342 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: fbff9fcb2f5539289c3c097d130e852afd10d89a3a08ac0b5ebebbc055cc84a4bcc3dcfed463d488cde12dd0902ef1858279e31d7349b2e8cee43913744bda33
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
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: 05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm64@npm:0.18.20"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm@npm:0.18.20"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-x64@npm:0.18.20"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-arm64@npm:0.18.20"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-x64@npm:0.18.20"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-arm64@npm:0.18.20"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-x64@npm:0.18.20"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm64@npm:0.18.20"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm@npm:0.18.20"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ia32@npm:0.18.20"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-loong64@npm:0.18.20"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-mips64el@npm:0.18.20"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ppc64@npm:0.18.20"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-riscv64@npm:0.18.20"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-s390x@npm:0.18.20"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-x64@npm:0.18.20"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/netbsd-x64@npm:0.18.20"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/openbsd-x64@npm:0.18.20"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/sunos-x64@npm:0.18.20"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-arm64@npm:0.18.20"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-ia32@npm:0.18.20"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-x64@npm:0.18.20"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@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: 7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0, @eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2, @eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.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: 32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.50.0":
version: 8.50.0
resolution: "@eslint/js@npm:8.50.0"
checksum: 92cb0a823869e85f287bd172f14a6a20d7d65c3f4db886a0356a9efebfe8fe519e9ead84a5687bd18f45eca417bdcce96e3b83fe3feae8baf0f8f44d14073bae
languageName: node
linkType: hard
"@eslint/js@npm:8.55.0":
version: 8.55.0
resolution: "@eslint/js@npm:8.55.0"
checksum: 88ab9fc57a651becd2b32ec40a3958db27fae133b1ae77bebd733aa5bbd00a92f325bb02f20ad680d31c731fa49b22f060a4777dd52eb3e27da013d940bd978d
languageName: node
linkType: hard
"@gar/promisify@npm:^1.0.1, @gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 0b3c9958d3cd17f4add3574975e3115ae05dc7f1298a60810414b16f6f558c137b5fb3cd3905df380bacfd955ec13f67c1e6710cbb5c246a7e8d65a8289b2bff
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.11, @humanwhocodes/config-array@npm:^0.11.13":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: d76ca802d853366094d0e98ff0d0994117fc8eff96649cd357b15e469e428228f597cd2e929d54ab089051684949955f16ee905bb19f7b2f0446fb377157be7a
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.1":
version: 2.0.1
resolution: "@humanwhocodes/object-schema@npm:2.0.1"
checksum: 9dba24e59fdb4041829d92b693aacb778add3b6f612aaa9c0774f3b650c11a378cc64f042a59da85c11dae33df456580a3c36837b953541aed6ff94294f97fac
languageName: node
linkType: hard
"@inquirer/core@npm:^5.1.1":
version: 5.1.1
resolution: "@inquirer/core@npm:5.1.1"
dependencies:
"@inquirer/type": "npm:^1.1.5"
"@types/mute-stream": "npm:^0.0.4"
"@types/node": "npm:^20.9.0"
"@types/wrap-ansi": "npm:^3.0.0"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
cli-spinners: "npm:^2.9.1"
cli-width: "npm:^4.1.0"
figures: "npm:^3.2.0"
mute-stream: "npm:^1.0.0"
run-async: "npm:^3.0.0"
signal-exit: "npm:^4.1.0"
strip-ansi: "npm:^6.0.1"
wrap-ansi: "npm:^6.2.0"
checksum: 84c4cee604b004a61b88993c341510af1da922613f5c9da6360a9a6d0bfdfc45f5f2a5d61c5e62f1e4c1430775574cc3e67c773edf8b14933a7f0b0af1302bfb
languageName: node
linkType: hard
"@inquirer/select@npm:^1.3.1":
version: 1.3.1
resolution: "@inquirer/select@npm:1.3.1"
dependencies:
"@inquirer/core": "npm:^5.1.1"
"@inquirer/type": "npm:^1.1.5"
ansi-escapes: "npm:^4.3.2"
chalk: "npm:^4.1.2"
figures: "npm:^3.2.0"
checksum: 54c68daa54bcc6d1f712fd536e50194622db78a4457b2d04d1819bb043460207198c61ad943449e4cc1a248731cd2758a042d2b0232013e6e89e62ec70168825
languageName: node
linkType: hard
"@inquirer/type@npm:^1.1.5":
version: 1.1.5
resolution: "@inquirer/type@npm:1.1.5"
checksum: eb65296f8fab1f8d823f512809801eaa177f9ebf3e58789af31653b723d5d597c4c5d2110b3b7c74008e06ba725113ae5aec02821a81ab2164beff0009bbf919
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
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: d67226ff7ac544a495c77df38187e69e0e3a0783724777f86caadafb306e2155dc3b5787d5927916ddd7fb4a53561ac8f705448ac3235d18ea60da5854829fdf
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 0dbc9e29bc640bbbdc5b9876d2859c69042bfcf1423c1e6421bcca53e826660bff4e41c7d4bcb8dbea696404231a6f902f76ba41835d049e20f2dd6cffb713bf
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
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: fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
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: 732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
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: db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
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: 7b89590598476dda88e79c473766b67c682aae6e0ab0213491daa6083dcc0c171f86b3868f5506f22c09aa5ea69ad7dfb78f4bf39a8dca375d89a42f408645b3
languageName: node
linkType: hard
"@npmcli/arborist@npm:^4.0.4":
version: 4.3.1
resolution: "@npmcli/arborist@npm:4.3.1"
dependencies:
"@isaacs/string-locale-compare": "npm:^1.1.0"
"@npmcli/installed-package-contents": "npm:^1.0.7"
"@npmcli/map-workspaces": "npm:^2.0.0"
"@npmcli/metavuln-calculator": "npm:^2.0.0"
"@npmcli/move-file": "npm:^1.1.0"
"@npmcli/name-from-folder": "npm:^1.0.1"
"@npmcli/node-gyp": "npm:^1.0.3"
"@npmcli/package-json": "npm:^1.0.1"
"@npmcli/run-script": "npm:^2.0.0"
bin-links: "npm:^3.0.0"
cacache: "npm:^15.0.3"
common-ancestor-path: "npm:^1.0.1"
json-parse-even-better-errors: "npm:^2.3.1"
json-stringify-nice: "npm:^1.1.4"
mkdirp: "npm:^1.0.4"
mkdirp-infer-owner: "npm:^2.0.0"
npm-install-checks: "npm:^4.0.0"
npm-package-arg: "npm:^8.1.5"
npm-pick-manifest: "npm:^6.1.0"
npm-registry-fetch: "npm:^12.0.1"
pacote: "npm:^12.0.2"
parse-conflict-json: "npm:^2.0.1"
proc-log: "npm:^1.0.0"
promise-all-reject-late: "npm:^1.0.0"
promise-call-limit: "npm:^1.0.1"
read-package-json-fast: "npm:^2.0.2"
readdir-scoped-modules: "npm:^1.1.0"
rimraf: "npm:^3.0.2"
semver: "npm:^7.3.5"
ssri: "npm:^8.0.1"
treeverse: "npm:^1.0.4"
walk-up-path: "npm:^1.0.0"
bin:
arborist: bin/index.js
checksum: 9e3e42589ad9211c23bc377af2742547536c127976bf69effbf300b2771a6b45adb8be690e08ba2f44b30a38b238f1d5a2a30be391483c913594df6cd2338c33
languageName: node
linkType: hard
"@npmcli/arborist@npm:^7.2.1":
version: 7.2.2
resolution: "@npmcli/arborist@npm:7.2.2"
dependencies:
"@isaacs/string-locale-compare": "npm:^1.1.0"
"@npmcli/fs": "npm:^3.1.0"
"@npmcli/installed-package-contents": "npm:^2.0.2"
"@npmcli/map-workspaces": "npm:^3.0.2"
"@npmcli/metavuln-calculator": "npm:^7.0.0"
"@npmcli/name-from-folder": "npm:^2.0.0"
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/package-json": "npm:^5.0.0"
"@npmcli/query": "npm:^3.0.1"
"@npmcli/run-script": "npm:^7.0.2"
bin-links: "npm:^4.0.1"
cacache: "npm:^18.0.0"
common-ancestor-path: "npm:^1.0.1"
hosted-git-info: "npm:^7.0.1"
json-parse-even-better-errors: "npm:^3.0.0"
json-stringify-nice: "npm:^1.1.4"
minimatch: "npm:^9.0.0"
nopt: "npm:^7.0.0"
npm-install-checks: "npm:^6.2.0"
npm-package-arg: "npm:^11.0.1"
npm-pick-manifest: "npm:^9.0.0"
npm-registry-fetch: "npm:^16.0.0"
npmlog: "npm:^7.0.1"
pacote: "npm:^17.0.4"
parse-conflict-json: "npm:^3.0.0"
proc-log: "npm:^3.0.0"
promise-all-reject-late: "npm:^1.0.0"
promise-call-limit: "npm:^1.0.2"
read-package-json-fast: "npm:^3.0.2"
semver: "npm:^7.3.7"
ssri: "npm:^10.0.5"
treeverse: "npm:^3.0.0"
walk-up-path: "npm:^3.0.1"
bin:
arborist: bin/index.js
checksum: 075f9da60c835067af9e0b2b01955feef822cc6a14cc8fd40ef16ca99e2ea557f19002f7540876521eccf1196b81b03c4644c96df3d0025f3265f679f4025fd3
languageName: node
linkType: hard
"@npmcli/config@npm:^8.0.1":
version: 8.0.3
resolution: "@npmcli/config@npm:8.0.3"
dependencies:
"@npmcli/map-workspaces": "npm:^3.0.2"
ci-info: "npm:^4.0.0"
ini: "npm:^4.1.0"
nopt: "npm:^7.0.0"
proc-log: "npm:^3.0.0"
read-package-json-fast: "npm:^3.0.2"
semver: "npm:^7.3.5"
walk-up-path: "npm:^3.0.1"
checksum: aa2d8a561533664b1613c878d1f5f65ecf58a210b2a2c6a1dbaa88d667679f53da4bdd015c7c92e7aba859079971ccb6a350ff341414d8f9ce2ccf71eecba43b
languageName: node
linkType: hard
"@npmcli/disparity-colors@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/disparity-colors@npm:3.0.0"
dependencies:
ansi-styles: "npm:^4.3.0"
checksum: b14d95c01ceb037d3b18c96d4a168242c7c8d20720e8d7b81cea1d05e39ff22ae5a5083256aba7729a06384c555838b330d6ee66a76cc6a5cef32d65116eebda
languageName: node
linkType: hard
"@npmcli/fs@npm:^1.0.0":
version: 1.1.1
resolution: "@npmcli/fs@npm:1.1.1"
dependencies:
"@gar/promisify": "npm:^1.0.1"
semver: "npm:^7.3.5"
checksum: 4143c317a7542af9054018b71601e3c3392e6704e884561229695f099a71336cbd580df9a9ffb965d0024bf0ed593189ab58900fd1714baef1c9ee59c738c3e2
languageName: node
linkType: hard
"@npmcli/fs@npm:^2.1.0":
version: 2.1.2
resolution: "@npmcli/fs@npm:2.1.2"
dependencies:
"@gar/promisify": "npm:^1.1.3"
semver: "npm:^7.3.5"
checksum: c50d087733d0d8df23be24f700f104b19922a28677aa66fdbe06ff6af6431cc4a5bb1e27683cbc661a5dafa9bafdc603e6a0378121506dfcd394b2b6dd76a187
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: 162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
languageName: node
linkType: hard
"@npmcli/git@npm:^2.1.0":
version: 2.1.0
resolution: "@npmcli/git@npm:2.1.0"
dependencies:
"@npmcli/promise-spawn": "npm:^1.3.2"
lru-cache: "npm:^6.0.0"
mkdirp: "npm:^1.0.4"
npm-pick-manifest: "npm:^6.1.1"
promise-inflight: "npm:^1.0.1"
promise-retry: "npm:^2.0.1"
semver: "npm:^7.3.5"
which: "npm:^2.0.2"
checksum: c35d8cb479daa53a2c5b3f3733407f36f3481275e43bd71d3997dea203a721cd9b77a47e178d1d85467e0c0780962a94e7f2bb663c94292ffc2c38f651060d87
languageName: node
linkType: hard
"@npmcli/git@npm:^4.0.0":
version: 4.1.0
resolution: "@npmcli/git@npm:4.1.0"
dependencies:
"@npmcli/promise-spawn": "npm:^6.0.0"
lru-cache: "npm:^7.4.4"
npm-pick-manifest: "npm:^8.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:^3.0.0"
checksum: 78591ba8f03de3954a5b5b83533455696635a8f8140c74038685fec4ee28674783a5b34a3d43840b2c5f9aa37fd0dce57eaf4ef136b52a8ec2ee183af2e40724
languageName: node
linkType: hard
"@npmcli/git@npm:^5.0.0, @npmcli/git@npm:^5.0.3":
version: 5.0.3
resolution: "@npmcli/git@npm:5.0.3"
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: dab301d06f037cf92b66547c4a702901c4efd42be470ab72457cc2f9617f47aca0bb59a44566cf65c1170d6489bd58be96b87269f83782b63323272059a9e4e2
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^1.0.6, @npmcli/installed-package-contents@npm:^1.0.7":
version: 1.0.7
resolution: "@npmcli/installed-package-contents@npm:1.0.7"
dependencies:
npm-bundled: "npm:^1.1.1"
npm-normalize-package-bin: "npm:^1.0.1"
bin:
installed-package-contents: index.js
checksum: 69c23b489ebfc90a28f6ee5293256bf6dae656292c8e13d52cd770fee2db2c9ecbeb7586387cd9006bc1968439edd5c75aeeb7d39ba0c8eb58905c3073bee067
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.0.1, @npmcli/installed-package-contents@npm:^2.0.2":
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: 03efadb365997e3b54d1d1ea30ef3555729a68939ab2b7b7800a4a2750afb53da222f52be36bd7c44950434c3e26cbe7be28dac093efdf7b1bbe9e025ab62a07
languageName: node
linkType: hard
"@npmcli/map-workspaces@npm:^2.0.0":
version: 2.0.4
resolution: "@npmcli/map-workspaces@npm:2.0.4"
dependencies:
"@npmcli/name-from-folder": "npm:^1.0.1"
glob: "npm:^8.0.1"
minimatch: "npm:^5.0.1"
read-package-json-fast: "npm:^2.0.3"
checksum: 11ab7b357dbe7a06067405619b5c2f50e6176b1d392e97d715ebbb4e51357c7b3683fb59be273e3e689893d158362c050a4c358405af91d2243de6b0cf6129d6
languageName: node
linkType: hard
"@npmcli/map-workspaces@npm:^3.0.2, @npmcli/map-workspaces@npm:^3.0.4":
version: 3.0.4
resolution: "@npmcli/map-workspaces@npm:3.0.4"
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: caeb5f911d9b7ae0be01436442e6ec6b25aef750fe923de7a653eb62999d35b9f8be67c3f856790350ac86d9cea4a52532859b621eea81738f576302ecdd7475
languageName: node
linkType: hard
"@npmcli/metavuln-calculator@npm:^2.0.0":
version: 2.0.0
resolution: "@npmcli/metavuln-calculator@npm:2.0.0"
dependencies:
cacache: "npm:^15.0.5"
json-parse-even-better-errors: "npm:^2.3.1"
pacote: "npm:^12.0.0"
semver: "npm:^7.3.2"
checksum: e20bf17faa41d326a8a18e8a19b4f0195034e3c29ae24d56b9ba09df0bd3410eefaebdcd13288fb97f6bdaabe30439d2b1c51c01fda4c8ebdc1e0f9984baff43
languageName: node
linkType: hard
"@npmcli/metavuln-calculator@npm:^7.0.0":
version: 7.0.0
resolution: "@npmcli/metavuln-calculator@npm:7.0.0"
dependencies:
cacache: "npm:^18.0.0"
json-parse-even-better-errors: "npm:^3.0.0"
pacote: "npm:^17.0.0"
semver: "npm:^7.3.5"
checksum: ae9084c333a678f3c1f2e30fefbd4cae25b5b5d0b1c27c3c3f92919cf1da85da24c2b3f3112bd53a184f711b2c165c4d709cd6283f5662cefb80903265ca7c81
languageName: node
linkType: hard
"@npmcli/move-file@npm:^1.0.1, @npmcli/move-file@npm:^1.1.0":
version: 1.1.2
resolution: "@npmcli/move-file@npm:1.1.2"
dependencies:
mkdirp: "npm:^1.0.4"
rimraf: "npm:^3.0.2"
checksum: 02e946f3dafcc6743132fe2e0e2b585a96ca7265653a38df5a3e53fcf26c7c7a57fc0f861d7c689a23fdb6d6836c7eea5050c8086abf3c994feb2208d1514ff0
languageName: node
linkType: hard
"@npmcli/move-file@npm:^2.0.0":
version: 2.0.1
resolution: "@npmcli/move-file@npm:2.0.1"
dependencies:
mkdirp: "npm:^1.0.4"
rimraf: "npm:^3.0.2"
checksum: 11b2151e6d1de6f6eb23128de5aa8a429fd9097d839a5190cb77aa47a6b627022c42d50fa7c47a00f1c9f8f0c1560092b09b061855d293fa0741a2a94cfb174d
languageName: node
linkType: hard
"@npmcli/name-from-folder@npm:^1.0.1":
version: 1.0.1
resolution: "@npmcli/name-from-folder@npm:1.0.1"
checksum: 6dbedf7c678ed1034e9905d75d3493459771bb4c4eeda147e1ab0f6a5c56d5ccc597ca9230741f2884e3f0e5fbf94e66ba6e7776d713d2a109427056bd10ae02
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: 1aa551771d98ab366d4cb06b33efd3bb62b609942f6d9c3bb667c10e5bb39a223d3e330022bc980a44402133e702ae67603862099ac8254dad11f90e77409827
languageName: node
linkType: hard
"@npmcli/node-gyp@npm:^1.0.2, @npmcli/node-gyp@npm:^1.0.3":
version: 1.0.3
resolution: "@npmcli/node-gyp@npm:1.0.3"
checksum: 25441497f0919c9a7c147649e0017920b8e8d14ae417602f9968f9e6d7e3e9eff44d5c6101d8070929657fff438f2e34d66919f3aead24d396ff7cf24187d55a
languageName: node
linkType: hard
"@npmcli/node-gyp@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/node-gyp@npm:3.0.0"
checksum: 5d0ac17dacf2dd6e45312af2c1ae2749bb0730fcc82da101c37d3a4fd963a5e1c5d39781e5e1e5e5828df4ab1ad4e3fdbab1d69b7cd0abebad9983efb87df985
languageName: node
linkType: hard
"@npmcli/package-json@npm:^1.0.1":
version: 1.0.1
resolution: "@npmcli/package-json@npm:1.0.1"
dependencies:
json-parse-even-better-errors: "npm:^2.3.1"
checksum: a787e79ae1fda82542b597637b16e39bf47fab2307904a11fa2552abbac07b821c64c37488f4bfdcf2bc91b97c23f1a22be8313c4135d7f33f19b0784da78a15
languageName: node
linkType: hard
"@npmcli/package-json@npm:^5.0.0":
version: 5.0.0
resolution: "@npmcli/package-json@npm:5.0.0"
dependencies:
"@npmcli/git": "npm:^5.0.0"
glob: "npm:^10.2.2"
hosted-git-info: "npm:^7.0.0"
json-parse-even-better-errors: "npm:^3.0.0"
normalize-package-data: "npm:^6.0.0"
proc-log: "npm:^3.0.0"
semver: "npm:^7.5.3"
checksum: 489b0e42d05c1c3c43ba94b6435c062ae28bee3e8ebf3b8e0977fe4ab8eb37fe6ab019203b38f39b54a592d85df2a602c0d700fc23adc630f4e7bfb0207a8a9e
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^1.2.0, @npmcli/promise-spawn@npm:^1.3.2":
version: 1.3.2
resolution: "@npmcli/promise-spawn@npm:1.3.2"
dependencies:
infer-owner: "npm:^1.0.4"
checksum: 2ef7231c978c237e5475a51390d2416e30c0362cf1b0a75fe56dbca07c693d6eac80b4be7b668c001a79ceeafed7896617463b88f20ded47f3201ce1528d85ee
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^6.0.0, @npmcli/promise-spawn@npm:^6.0.1":
version: 6.0.2
resolution: "@npmcli/promise-spawn@npm:6.0.2"
dependencies:
which: "npm:^3.0.0"
checksum: d0696b8d9f7e16562cd1e520e4919000164be042b5c9998a45b4e87d41d9619fcecf2a343621c6fa85ed2671cbe87ab07e381a7faea4e5132c371dbb05893f31
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^7.0.0":
version: 7.0.0
resolution: "@npmcli/promise-spawn@npm:7.0.0"
dependencies:
which: "npm:^4.0.0"
checksum: a8d310d4f0f033ea8be19e956db35dd11d1f80774e85ba97eafb3b41f7f92813ef3ae29215a14028dacf6b4d3b2357ae5935a0899c33546dd24bb629a6d5c1e8
languageName: node
linkType: hard
"@npmcli/query@npm:^3.0.1":
version: 3.0.1
resolution: "@npmcli/query@npm:3.0.1"
dependencies:
postcss-selector-parser: "npm:^6.0.10"
checksum: 497f03887121df13dbbc7a008772708746ecb9d8b9dbb1d8a8cdc5eb03ff6dbce0e78cbc48102e7cd3d2f3abc2faf22fd5348bb3c33efd13e2077faf8d71efde
languageName: node
linkType: hard
"@npmcli/run-script@npm:^2.0.0":
version: 2.0.0
resolution: "@npmcli/run-script@npm:2.0.0"
dependencies:
"@npmcli/node-gyp": "npm:^1.0.2"
"@npmcli/promise-spawn": "npm:^1.3.2"
node-gyp: "npm:^8.2.0"
read-package-json-fast: "npm:^2.0.1"
checksum: 9a69397620b9fb50684fa8a237b97c88c0e81aebe3aa84ab62b6f41d3a606325ccbd683708b13feae46cb90d1704de11ea9d49e7a7ceecd60a97e43be7c982ed
languageName: node
linkType: hard
"@npmcli/run-script@npm:^6.0.0":
version: 6.0.2
resolution: "@npmcli/run-script@npm:6.0.2"
dependencies:
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/promise-spawn": "npm:^6.0.0"
node-gyp: "npm:^9.0.0"
read-package-json-fast: "npm:^3.0.0"
which: "npm:^3.0.0"
checksum: 8c6ab2895eb6a2f24b1cd85dc934edae2d1c02af3acfc383655857f3893ed133d393876add800600d2e1702f8b62133d7cf8da00d81a1c885cc6029ef9e8e691
languageName: node
linkType: hard
"@npmcli/run-script@npm:^7.0.0, @npmcli/run-script@npm:^7.0.2":
version: 7.0.2
resolution: "@npmcli/run-script@npm:7.0.2"
dependencies:
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/promise-spawn": "npm:^7.0.0"
node-gyp: "npm:^10.0.0"
read-package-json-fast: "npm:^3.0.0"
which: "npm:^4.0.0"
checksum: 5b2b92d9dcedf9f0263861288f9ab9dbb54474bb326578e5fed635994ccdc31d56084c2768475652761cb88f88273bc04db79d2d5a3a35b91389c6fb9d272880
languageName: node
linkType: hard
"@oclif/core@npm:^2.15.0":
version: 2.15.0
resolution: "@oclif/core@npm:2.15.0"
dependencies:
"@types/cli-progress": "npm:^3.11.0"
ansi-escapes: "npm:^4.3.2"
ansi-styles: "npm:^4.3.0"
cardinal: "npm:^2.1.1"
chalk: "npm:^4.1.2"
clean-stack: "npm:^3.0.1"
cli-progress: "npm:^3.12.0"
debug: "npm:^4.3.4"
ejs: "npm:^3.1.8"
get-package-type: "npm:^0.1.0"
globby: "npm:^11.1.0"
hyperlinker: "npm:^1.0.0"
indent-string: "npm:^4.0.0"
is-wsl: "npm:^2.2.0"
js-yaml: "npm:^3.14.1"
natural-orderby: "npm:^2.0.3"
object-treeify: "npm:^1.1.33"
password-prompt: "npm:^1.1.2"
slice-ansi: "npm:^4.0.0"
string-width: "npm:^4.2.3"
strip-ansi: "npm:^6.0.1"
supports-color: "npm:^8.1.1"
supports-hyperlinks: "npm:^2.2.0"
ts-node: "npm:^10.9.1"
tslib: "npm:^2.5.0"
widest-line: "npm:^3.1.0"
wordwrap: "npm:^1.0.0"
wrap-ansi: "npm:^7.0.0"
checksum: 8a2913468b5b784d125ac5fe42c463f0be2c0d41d645deaf8dbc32294b1bccb8667e021592a2e3c3386783b7f458d6e0d94087125bb2331b5d745a24e53a88d7
languageName: node
linkType: hard
"@oclif/core@npm:^3, @oclif/core@npm:^3.0.4, @oclif/core@npm:^3.10.2, @oclif/core@npm:^3.12.0, @oclif/core@npm:^3.13.1":
version: 3.14.1
resolution: "@oclif/core@npm:3.14.1"
dependencies:
ansi-escapes: "npm:^4.3.2"
ansi-styles: "npm:^4.3.0"
cardinal: "npm:^2.1.1"
chalk: "npm:^4.1.2"
clean-stack: "npm:^3.0.1"
cli-progress: "npm:^3.12.0"
color: "npm:^4.2.3"
debug: "npm:^4.3.4"
ejs: "npm:^3.1.9"
get-package-type: "npm:^0.1.0"
globby: "npm:^11.1.0"
hyperlinker: "npm:^1.0.0"
indent-string: "npm:^4.0.0"
is-wsl: "npm:^2.2.0"
js-yaml: "npm:^3.14.1"
natural-orderby: "npm:^2.0.3"
object-treeify: "npm:^1.1.33"
password-prompt: "npm:^1.1.2"
slice-ansi: "npm:^4.0.0"
string-width: "npm:^4.2.3"
strip-ansi: "npm:^6.0.1"
supports-color: "npm:^8.1.1"
supports-hyperlinks: "npm:^2.2.0"
tsconfck: "npm:^3.0.0"
widest-line: "npm:^3.1.0"
wordwrap: "npm:^1.0.0"
wrap-ansi: "npm:^7.0.0"
checksum: 084d75ea430ab675e540b675fc1867481fa37ac0a85bac764bca8ae5fdb2548a31ccacd9a07b6d4f388f7cb353a879812ee0dc49ad503f1f645c0177478a2ef2
languageName: node
linkType: hard
"@oclif/plugin-help@npm:^5, @oclif/plugin-help@npm:^5.2.14":
version: 5.2.20
resolution: "@oclif/plugin-help@npm:5.2.20"
dependencies:
"@oclif/core": "npm:^2.15.0"
checksum: 22dc748d1103f1d3f8ee543b9600a744cd9555020868c0fc766f3c33faedd03fada642df42378bbbce883b0a0014b3cb91b4b755439ad4149e2167ceb3507f04
languageName: node
linkType: hard
"@oclif/plugin-not-found@npm:^2.3.32":
version: 2.4.3
resolution: "@oclif/plugin-not-found@npm:2.4.3"
dependencies:
"@oclif/core": "npm:^2.15.0"
chalk: "npm:^4"
fast-levenshtein: "npm:^3.0.0"
checksum: 47171c920d6acba5e105915a10d1d68eef242cf7f8434bdc18b33610bbd4d4f0957b0cb693ab52f19d172ad140c4619879dce091b02c823a4aa5671b37a1c452
languageName: node
linkType: hard
"@oclif/plugin-plugins@npm:^4":
version: 4.1.10
resolution: "@oclif/plugin-plugins@npm:4.1.10"
dependencies:
"@oclif/core": "npm:^3.10.2"
chalk: "npm:^5.3.0"
debug: "npm:^4.3.4"
npm: "npm:10.2.3"
npm-run-path: "npm:^4.0.1"
semver: "npm:^7.5.4"
shelljs: "npm:^0.8.5"
validate-npm-package-name: "npm:^5.0.0"
yarn: "npm:^1.22.21"
checksum: a33f0218fd447ace247e7a997d9330ce79cb95587f79dcf85607ac8d092757838ca83d7ed0b41e3fef801c02eab2785f5c6bb85b25e79cf01172a8ca68ab22da
languageName: node
linkType: hard
"@oclif/plugin-warn-if-update-available@npm:^3.0.0":
version: 3.0.5
resolution: "@oclif/plugin-warn-if-update-available@npm:3.0.5"
dependencies:
"@oclif/core": "npm:^3.13.1"
chalk: "npm:^5.3.0"
debug: "npm:^4.1.0"
http-call: "npm:^5.2.2"
lodash.template: "npm:^4.5.0"
checksum: 9e857a8081f4aa8e78fa95dfc0522359e49dd1174b38b2a65ed64090feee4b506417da5dab19a9549e5ed2b3d5e56e59254fbcb2a1c734e257caef12d48ca7f3
languageName: node
linkType: hard
"@oclif/prettier-config@npm:^0.2.1":
version: 0.2.1
resolution: "@oclif/prettier-config@npm:0.2.1"
checksum: 1835c5ba68ef0203234c4e2a0d8f9be1616e515f5765a2350ee1b73f2dfcfed18314c6dd1d22cf29625edb563d3ca2ca4938c1f3219b82aaa6639ff83c6b8858
languageName: node
linkType: hard
"@oclif/test@npm:^3":
version: 3.1.3
resolution: "@oclif/test@npm:3.1.3"
dependencies:
"@oclif/core": "npm:^3.12.0"
chai: "npm:^4.3.10"
fancy-test: "npm:^3.0.1"
checksum: 3c713d2b3d04fe74f5b9f92484edfb84962883636ce4bec53793764b6af6a5bbec517d5f5dfe997fec8ed7f3bd2d7fc8f71c554cdd447d995cfd023cf036e935
languageName: node
linkType: hard
"@octokit/auth-token@npm:^2.4.4":
version: 2.5.0
resolution: "@octokit/auth-token@npm:2.5.0"
dependencies:
"@octokit/types": "npm:^6.0.3"
checksum: e9f757b6acdee91885dab97069527c86829da0dc60476c38cdff3a739ff47fd026262715965f91e84ec9d01bc43d02678bc8ed472a85395679af621b3ddbe045
languageName: node
linkType: hard
"@octokit/core@npm:^3.5.1":
version: 3.6.0
resolution: "@octokit/core@npm:3.6.0"
dependencies:
"@octokit/auth-token": "npm:^2.4.4"
"@octokit/graphql": "npm:^4.5.8"
"@octokit/request": "npm:^5.6.3"
"@octokit/request-error": "npm:^2.0.5"
"@octokit/types": "npm:^6.0.3"
before-after-hook: "npm:^2.2.0"
universal-user-agent: "npm:^6.0.0"
checksum: 78d9799a57fe9cf155cce485ba8b7ec32f05024350bf5dd8ab5e0da8995cc22168c39dbbbcfc29bc6c562dd482c1c4a3064f466f49e2e9ce4efad57cf28a7360
languageName: node
linkType: hard
"@octokit/endpoint@npm:^6.0.1":
version: 6.0.12
resolution: "@octokit/endpoint@npm:6.0.12"
dependencies:
"@octokit/types": "npm:^6.0.3"
is-plain-object: "npm:^5.0.0"
universal-user-agent: "npm:^6.0.0"
checksum: b2d9c91f00ab7c997338d08a06bfd12a67d86060bc40471f921ba424e4de4e5a0a1117631f2a8a8787107d89d631172dd157cb5e2633674b1ae3a0e2b0dcfa3e
languageName: node
linkType: hard
"@octokit/graphql@npm:^4.5.8":