-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathyarn.lock
8204 lines (7357 loc) · 284 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
"@babel/code-frame@npm:^7.0.0":
version: 7.8.3
resolution: "@babel/code-frame@npm:7.8.3"
dependencies:
"@babel/highlight": "npm:^7.8.3"
checksum: 10c0/96b72d8d2079117702dc49450e8c04421e9362a6cd02b3b3ab91436ca6263f243079c39843b0d506286f21ae90cb4c079173ac2b3713d5e67721d463af546596
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.9.0":
version: 7.9.5
resolution: "@babel/helper-validator-identifier@npm:7.9.5"
checksum: 10c0/92309c61bd2e655817ed372acd831fe6a9b51d8336f8fa13cfb461a701c2449396c29cb43d42ead0b92cdeb89ed2f82c1cd40719765b041be4a5335070dfe685
languageName: node
linkType: hard
"@babel/highlight@npm:^7.8.3":
version: 7.9.0
resolution: "@babel/highlight@npm:7.9.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.9.0"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/01288ca7b6645fd7ab699e3e3b8d35f315922dd4a35a294481dc110439e6c0f650d4f2ce41114888916a3d1adc45eff9d67f663478eb5918fb689267db3779de
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: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@emnapi/core@npm:^1.1.0":
version: 1.3.1
resolution: "@emnapi/core@npm:1.3.1"
dependencies:
"@emnapi/wasi-threads": "npm:1.0.1"
tslib: "npm:^2.4.0"
checksum: 10c0/d3be1044ad704e2c486641bc18908523490f28c7d38bd12d9c1d4ce37d39dae6c4aecd2f2eaf44c6e3bd90eaf04e0591acc440b1b038cdf43cce078a355a0ea0
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.0":
version: 1.3.1
resolution: "@emnapi/runtime@npm:1.3.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.0.1":
version: 1.0.1
resolution: "@emnapi/wasi-threads@npm:1.0.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/1e0c8036b8d53e9b07cc9acf021705ef6c86ab6b13e1acda7fffaf541a2d3565072afb92597419173ced9ea14f6bf32fce149106e669b5902b825e8b499e5c6c
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.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: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.6.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6
languageName: node
linkType: hard
"@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: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.3"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.3":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c
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: 10c0/d9197757ecad2df18d29d3e1d1fe0716d458fd88b849c71cbec9e78239f911074c97e8d764dfd8ed890431c1137e52dd7a337207fd65be20ce0784f7860ae4d1
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/checkbox@npm:4.0.6"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/figures": "npm:^1.0.9"
"@inquirer/type": "npm:^3.0.2"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/919e3c5d652f1ccd9d5e8e9678e63981a968ba4a0dffe9d9409d94a1951b398218f7dfb05e57aefcb3c3c1d61ac2333160e370b0ff4632ada7a92ebe07a2ca72
languageName: node
linkType: hard
"@inquirer/confirm@npm:^5.1.3":
version: 5.1.3
resolution: "@inquirer/confirm@npm:5.1.3"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/type": "npm:^3.0.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/ddbca429ebb3a8bf1d10928f4ab0c8eedbf3f74f85ed64c6b26a830f0fbbab5fa964b9ef2eb2c57a10b9afc9ca3921a12e4659f5a83069078cd1a7ce3d0d126d
languageName: node
linkType: hard
"@inquirer/core@npm:^10.1.4":
version: 10.1.4
resolution: "@inquirer/core@npm:10.1.4"
dependencies:
"@inquirer/figures": "npm:^1.0.9"
"@inquirer/type": "npm:^3.0.2"
ansi-escapes: "npm:^4.3.2"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^2.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"
checksum: 10c0/4e6c51713c79a0b22381a08a2d11c37f2d696597d01bdecd7b3482889e53e4ac279c55d663a365798ad52becc37052b571bc3ec85ee8a10054c681d9248b88d3
languageName: node
linkType: hard
"@inquirer/editor@npm:^4.2.3":
version: 4.2.3
resolution: "@inquirer/editor@npm:4.2.3"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/type": "npm:^3.0.2"
external-editor: "npm:^3.1.0"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/0194a660b33e38781c35a6ab531f76beca998e5e30ebc90bb94e2140fd943e0dfcff4f9c650f4f79f74df7dac04c82db254ff8c2d9ef0b55c491523f859a8c2b
languageName: node
linkType: hard
"@inquirer/expand@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/expand@npm:4.0.6"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/type": "npm:^3.0.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/2a4990744edf17528c5cf894b9a7a04f202740fb9e2123fb8ced1e623f5bf9716976b037e1b23e88cfce826a85b6052d49784ac2294644e353767b51a0a2f877
languageName: node
linkType: hard
"@inquirer/figures@npm:^1.0.9":
version: 1.0.9
resolution: "@inquirer/figures@npm:1.0.9"
checksum: 10c0/21e1a7c902b2b77f126617b501e0fe0d703fae680a9df472afdae18a3e079756aee85690cef595a14e91d18630118f4a3893aab6832b9232fefc6ab31c804a68
languageName: node
linkType: hard
"@inquirer/input@npm:^4.1.3":
version: 4.1.3
resolution: "@inquirer/input@npm:4.1.3"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/type": "npm:^3.0.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/251468b9596fcbff286d0817da7408f2a78230c1f84de23361e6362a8a91e5bf4c42c04f4971a8fe751eb0afc4ab1cef0d3766742fd4e693b4b0cbcc72aa8d97
languageName: node
linkType: hard
"@inquirer/number@npm:^3.0.6":
version: 3.0.6
resolution: "@inquirer/number@npm:3.0.6"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/type": "npm:^3.0.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/26c030735bdc94053dfca50db1e75c7e325b8dcc009f3f9e6f572d89b67d7b23cfb3920ed2fa6fa34c312b5ebb6b86ba5b4e77c277ce463720eba45052c0d253
languageName: node
linkType: hard
"@inquirer/password@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/password@npm:4.0.6"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/type": "npm:^3.0.2"
ansi-escapes: "npm:^4.3.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/c36f675d350c38156efe255d9b3a052271faff2bfcebf626f5f02092e9110ef8f87a6985e96dd0c2351fa79723d0847bacaa86ae10c1d24526434de96af5503e
languageName: node
linkType: hard
"@inquirer/prompts@npm:^7.2.3":
version: 7.2.3
resolution: "@inquirer/prompts@npm:7.2.3"
dependencies:
"@inquirer/checkbox": "npm:^4.0.6"
"@inquirer/confirm": "npm:^5.1.3"
"@inquirer/editor": "npm:^4.2.3"
"@inquirer/expand": "npm:^4.0.6"
"@inquirer/input": "npm:^4.1.3"
"@inquirer/number": "npm:^3.0.6"
"@inquirer/password": "npm:^4.0.6"
"@inquirer/rawlist": "npm:^4.0.6"
"@inquirer/search": "npm:^3.0.6"
"@inquirer/select": "npm:^4.0.6"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/52c2e1fd8a4e98bc5fd6a79acf9c7d7e1ecc534013d7c018412a6ed34d15be69a2d10791b539740fed8e538485e359e1cacbec98ca3d04e24c5e9fa9480d7bc6
languageName: node
linkType: hard
"@inquirer/rawlist@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/rawlist@npm:4.0.6"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/type": "npm:^3.0.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/c79f0ddd5cf7eae8db27a7080e277c32809d7bd58619f470d8b1598d1aff36f6aac276535ef35801a1dae97bb3763fd248e1067800e6eccd49276206d6cdb945
languageName: node
linkType: hard
"@inquirer/search@npm:^3.0.6":
version: 3.0.6
resolution: "@inquirer/search@npm:3.0.6"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/figures": "npm:^1.0.9"
"@inquirer/type": "npm:^3.0.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/27afe9105b9fd26b5985847f75c82f59156158b6366e35896764cd08ee7bb76e3d9c7110c6ed50ab4d7e13466ea3f0e60492a644e0eb6a0d8c30701b07221ad9
languageName: node
linkType: hard
"@inquirer/select@npm:^4.0.6":
version: 4.0.6
resolution: "@inquirer/select@npm:4.0.6"
dependencies:
"@inquirer/core": "npm:^10.1.4"
"@inquirer/figures": "npm:^1.0.9"
"@inquirer/type": "npm:^3.0.2"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/5346007a5f62ff88f36c219b625d6031ba12fea6849b38aab1d3ed1219387004bf1c3a44aeec47a3988c9aeb1934a8a06509fe9e00f39135fa22113a01e1cc37
languageName: node
linkType: hard
"@inquirer/type@npm:^3.0.2":
version: 3.0.2
resolution: "@inquirer/type@npm:3.0.2"
peerDependencies:
"@types/node": ">=18"
checksum: 10c0/fe348db2977fff92cad0ade05b36ec40714326fccd4a174be31663f8923729b4276f1736d892a449627d7fb03235ff44e8aac5aa72b09036d993593b813ef313
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 10c0/d67226ff7ac544a495c77df38187e69e0e3a0783724777f86caadafb306e2155dc3b5787d5927916ddd7fb4a53561ac8f705448ac3235d18ea60da5854829fdf
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: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 10c0/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: 10c0/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: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
languageName: node
linkType: hard
"@lerna/create@npm:8.1.9":
version: 8.1.9
resolution: "@lerna/create@npm:8.1.9"
dependencies:
"@npmcli/arborist": "npm:7.5.4"
"@npmcli/package-json": "npm:5.2.0"
"@npmcli/run-script": "npm:8.1.0"
"@nx/devkit": "npm:>=17.1.2 < 21"
"@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:9.0.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 < 21"
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: 10c0/f050e79c0bd982c6fdf9b7347275a94cc80f7a6599094f1cf114c10d5373c21afac9bd1a5c0b2ca400e6aaf18da883c384dfd6e5c84a186a2c09c912bf9b2238
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:0.2.4":
version: 0.2.4
resolution: "@napi-rs/wasm-runtime@npm:0.2.4"
dependencies:
"@emnapi/core": "npm:^1.1.0"
"@emnapi/runtime": "npm:^1.1.0"
"@tybys/wasm-util": "npm:^0.9.0"
checksum: 10c0/1040de49b2ef509db207e2517465dbf7fb3474f20e8ec32897672a962ff4f59872385666dac61dc9dbeae3cae5dad265d8dc3865da756adeb07d1634c67b03a1
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @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: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.2
resolution: "@npmcli/agent@npm:2.2.2"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae
languageName: node
linkType: hard
"@npmcli/arborist@npm:7.5.4":
version: 7.5.4
resolution: "@npmcli/arborist@npm:7.5.4"
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: 10c0/22417b804872e68b6486187bb769eabef7245c5d3fa055d5473f84a7088580543235f34af3047a0e9b357e70fccd768e8ef5c6c8664ed6909f659d07607ad955
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0, @npmcli/fs@npm:^3.1.1":
version: 3.1.1
resolution: "@npmcli/fs@npm:3.1.1"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99
languageName: node
linkType: hard
"@npmcli/git@npm:^5.0.0":
version: 5.0.8
resolution: "@npmcli/git@npm:5.0.8"
dependencies:
"@npmcli/promise-spawn": "npm:^7.0.0"
ini: "npm:^4.1.3"
lru-cache: "npm:^10.0.1"
npm-pick-manifest: "npm:^9.0.0"
proc-log: "npm:^4.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: 10c0/892441c968404950809c7b515a93b78167ea1db2252f259f390feae22a2c5477f3e1629e105e19a084c05afc56e585bf3f13c2f13b54a06bfd6786f0c8429532
languageName: node
linkType: hard
"@npmcli/installed-package-contents@npm:^2.0.1, @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: 10c0/f5ecba0d45fc762f3e0d5def29fbfabd5d55e8147b01ae0a101769245c2e0038bc82a167836513a98aaed0a15c3d81fcdb232056bb8a962972a432533e518fce
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: 10c0/6bfcf8ca05ab9ddc2bd19c0fd91e9982f03cc6e67b0c03f04ba4d2f29b7d83f96e759c0f8f1f4b6dbe3182272483643a0d1269788352edd0c883d6fbfa2f3f14
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: 10c0/27402cab124bb1fca56af7549f730c38c0ab40de60cbef6264a4193c26c2d28cefb2adac29ed27f368031795704f9f8fe0c547c4c8cb0c0fa94d72330d56ac80
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: 10c0/1aa551771d98ab366d4cb06b33efd3bb62b609942f6d9c3bb667c10e5bb39a223d3e330022bc980a44402133e702ae67603862099ac8254dad11f90e77409827
languageName: node
linkType: hard
"@npmcli/node-gyp@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/node-gyp@npm:3.0.0"
checksum: 10c0/5d0ac17dacf2dd6e45312af2c1ae2749bb0730fcc82da101c37d3a4fd963a5e1c5d39781e5e1e5e5828df4ab1ad4e3fdbab1d69b7cd0abebad9983efb87df985
languageName: node
linkType: hard
"@npmcli/package-json@npm:5.2.0":
version: 5.2.0
resolution: "@npmcli/package-json@npm:5.2.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:^4.0.0"
semver: "npm:^7.5.3"
checksum: 10c0/bdce8c7eed0dee1d272bf8ba500c4bce6d8ed2b4dd2ce43075d3ba02ffd3bb70c46dbcf8b3a35e19d9492d039b720dc3a4b30d1a2ddc30b7918e1d5232faa1f7
languageName: node
linkType: hard
"@npmcli/package-json@npm:^5.0.0, @npmcli/package-json@npm:^5.1.0":
version: 5.2.1
resolution: "@npmcli/package-json@npm:5.2.1"
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:^4.0.0"
semver: "npm:^7.5.3"
checksum: 10c0/b852e31e3121a0afe5fa20bbf4faa701a59dbc9d9dd7141f7fd57b8e919ce22c1285dcdfea490851fe410fa0f7bc9c397cafba0d268aaa53420a12d7c561dde1
languageName: node
linkType: hard
"@npmcli/promise-spawn@npm:^7.0.0":
version: 7.0.2
resolution: "@npmcli/promise-spawn@npm:7.0.2"
dependencies:
which: "npm:^4.0.0"
checksum: 10c0/8f2af5bc2c1b1ccfb9bcd91da8873ab4723616d8bd5af877c0daa40b1e2cbfa4afb79e052611284179cae918c945a1b99ae1c565d78a355bec1a461011e89f71
languageName: node
linkType: hard
"@npmcli/query@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/query@npm:3.1.0"
dependencies:
postcss-selector-parser: "npm:^6.0.10"
checksum: 10c0/9a099677dd188a2d9eb7a49e32c69d315b09faea59e851b7c2013b5bda915a38434efa7295565c40a1098916c06ebfa1840f68d831180e36842f48c24f4c5186
languageName: node
linkType: hard
"@npmcli/redact@npm:^2.0.0":
version: 2.0.1
resolution: "@npmcli/redact@npm:2.0.1"
checksum: 10c0/5f346f7ef224b44c90009939f93c446a865a3d9e5a7ebe0246cdb0ebd03219de3962ee6c6e9197298d8c6127ea33535e8c44814276e4941394dc1cdf1f30f6bc
languageName: node
linkType: hard
"@npmcli/run-script@npm:8.1.0, @npmcli/run-script@npm:^8.0.0, @npmcli/run-script@npm:^8.1.0":
version: 8.1.0
resolution: "@npmcli/run-script@npm:8.1.0"
dependencies:
"@npmcli/node-gyp": "npm:^3.0.0"
"@npmcli/package-json": "npm:^5.0.0"
"@npmcli/promise-spawn": "npm:^7.0.0"
node-gyp: "npm:^10.0.0"
proc-log: "npm:^4.0.0"
which: "npm:^4.0.0"
checksum: 10c0/f9f40ecff0406a9ce1b77c9f714fc7c71b561289361efc6e2e0e48ca2d630aa98d277cbbf269750f9467a40eaaac79e78766d67c458046aa9507c8c354650fee
languageName: node
linkType: hard
"@nx/devkit@npm:>=17.1.2 < 21":
version: 20.1.0
resolution: "@nx/devkit@npm:20.1.0"
dependencies:
ejs: "npm:^3.1.7"
enquirer: "npm:~2.3.6"
ignore: "npm:^5.0.4"
minimatch: "npm:9.0.3"
semver: "npm:^7.5.3"
tmp: "npm:~0.2.1"
tslib: "npm:^2.3.0"
yargs-parser: "npm:21.1.1"
peerDependencies:
nx: ">= 19 <= 21"
checksum: 10c0/395a34b47ab4f446e3b10693a368441c3502bcc4961727491746b0683cf297ad27954293d29d10c003978c65d32073951877df480bccd44a9e297a811e43d6a1
languageName: node
linkType: hard
"@nx/nx-darwin-arm64@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-darwin-arm64@npm:20.1.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@nx/nx-darwin-x64@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-darwin-x64@npm:20.1.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@nx/nx-freebsd-x64@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-freebsd-x64@npm:20.1.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@nx/nx-linux-arm-gnueabihf@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-linux-arm-gnueabihf@npm:20.1.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@nx/nx-linux-arm64-gnu@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-linux-arm64-gnu@npm:20.1.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@nx/nx-linux-arm64-musl@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-linux-arm64-musl@npm:20.1.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@nx/nx-linux-x64-gnu@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-linux-x64-gnu@npm:20.1.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@nx/nx-linux-x64-musl@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-linux-x64-musl@npm:20.1.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@nx/nx-win32-arm64-msvc@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-win32-arm64-msvc@npm:20.1.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@nx/nx-win32-x64-msvc@npm:20.1.0":
version: 20.1.0
resolution: "@nx/nx-win32-x64-msvc@npm:20.1.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@octokit/auth-token@npm:^3.0.0":
version: 3.0.4
resolution: "@octokit/auth-token@npm:3.0.4"
checksum: 10c0/abdf5e2da36344de9727c70ba782d58004f5ae1da0f65fa9bc9216af596ef23c0e4675f386df2f6886806612558091d603564051b693b0ad1986aa6160b7a231
languageName: node
linkType: hard
"@octokit/core@npm:^4.2.1":
version: 4.2.4
resolution: "@octokit/core@npm:4.2.4"
dependencies:
"@octokit/auth-token": "npm:^3.0.0"
"@octokit/graphql": "npm:^5.0.0"
"@octokit/request": "npm:^6.0.0"
"@octokit/request-error": "npm:^3.0.0"
"@octokit/types": "npm:^9.0.0"
before-after-hook: "npm:^2.2.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/e54081a56884e628d1804837fddcd48c10d516117bb891551c8dc9d8e3dad449aeb9b4677ca71e8f0e76268c2b7656c953099506679aaa4666765228474a3ce6
languageName: node
linkType: hard
"@octokit/endpoint@npm:^7.0.0":
version: 7.0.6
resolution: "@octokit/endpoint@npm:7.0.6"
dependencies:
"@octokit/types": "npm:^9.0.0"
is-plain-object: "npm:^5.0.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/fd147a55010b54af7567bf90791359f7096a1c9916a2b7c72f8afd0c53141338b3d78da3a4ab3e3bdfeb26218a1b73735432d8987ccc04996b1019219299f115
languageName: node
linkType: hard
"@octokit/graphql@npm:^5.0.0":
version: 5.0.6
resolution: "@octokit/graphql@npm:5.0.6"
dependencies:
"@octokit/request": "npm:^6.0.0"
"@octokit/types": "npm:^9.0.0"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/de1d839d97fe6d96179925f6714bf96e7af6f77929892596bb4211adab14add3291fc5872b269a3d0e91a4dcf248d16096c82606c4a43538cf241b815c2e2a36
languageName: node
linkType: hard
"@octokit/openapi-types@npm:^18.0.0":
version: 18.1.1
resolution: "@octokit/openapi-types@npm:18.1.1"
checksum: 10c0/856d3bb9f8c666e837dd5e8b8c216ee4342b9ed63ff8da922ca4ce5883ed1dfbec73390eb13d69fbcb4703a4c8b8b6a586df3b0e675ff93bf3d46b5b4fe0968e
languageName: node
linkType: hard
"@octokit/plugin-enterprise-rest@npm:6.0.1":
version: 6.0.1
resolution: "@octokit/plugin-enterprise-rest@npm:6.0.1"
checksum: 10c0/26bd0a30582954efcd29b41e16698db79e9d20e3f88c4069b43b183223cee69862621f18b6a7a1c9257b1cd07c24477e403b75c74688660ecf31d467b9d8fd9e
languageName: node
linkType: hard
"@octokit/plugin-paginate-rest@npm:^6.1.2":
version: 6.1.2
resolution: "@octokit/plugin-paginate-rest@npm:6.1.2"
dependencies:
"@octokit/tsconfig": "npm:^1.0.2"
"@octokit/types": "npm:^9.2.3"
peerDependencies:
"@octokit/core": ">=4"
checksum: 10c0/def241c4f00b864822ab6414eaadd8679a6d332004c7e77467cfc1e6d5bdcc453c76bd185710ee942e4df201f9dd2170d960f46af5b14ef6f261a0068f656364
languageName: node
linkType: hard
"@octokit/plugin-request-log@npm:^1.0.4":
version: 1.0.4
resolution: "@octokit/plugin-request-log@npm:1.0.4"
peerDependencies:
"@octokit/core": ">=3"
checksum: 10c0/7238585445555db553912e0cdef82801c89c6e5cbc62c23ae086761c23cc4a403d6c3fddd20348bbd42fb7508e2c2fce370eb18fdbe3fbae2c0d2c8be974f4cc
languageName: node
linkType: hard
"@octokit/plugin-rest-endpoint-methods@npm:^7.1.2":
version: 7.2.3
resolution: "@octokit/plugin-rest-endpoint-methods@npm:7.2.3"
dependencies:
"@octokit/types": "npm:^10.0.0"
peerDependencies:
"@octokit/core": ">=3"
checksum: 10c0/8bffbc5852695dd08d65cc64b6ab7d2871ed9df1e791608f48b488a3908b5b655e3686b5dd72fc37c824e82bdd4dfc9d24e2e50205bbc324667def1d705bc9da
languageName: node
linkType: hard
"@octokit/request-error@npm:^3.0.0":
version: 3.0.3
resolution: "@octokit/request-error@npm:3.0.3"
dependencies:
"@octokit/types": "npm:^9.0.0"
deprecation: "npm:^2.0.0"
once: "npm:^1.4.0"
checksum: 10c0/1e252ac193c8af23b709909911aa327ed5372cbafcba09e4aff41e0f640a7c152579ab0a60311a92e37b4e7936392d59ee4c2feae5cdc387ee8587a33d8afa60
languageName: node
linkType: hard
"@octokit/request@npm:^6.0.0":
version: 6.2.8
resolution: "@octokit/request@npm:6.2.8"
dependencies:
"@octokit/endpoint": "npm:^7.0.0"
"@octokit/request-error": "npm:^3.0.0"
"@octokit/types": "npm:^9.0.0"
is-plain-object: "npm:^5.0.0"
node-fetch: "npm:^2.6.7"
universal-user-agent: "npm:^6.0.0"
checksum: 10c0/6b6079ed45bac44c4579b40990bfd1905b03d4bc4e5255f3d5a10cf5182171578ebe19abeab32ebb11a806f1131947f2a06b7a077bd7e77ade7b15fe2882174b
languageName: node
linkType: hard
"@octokit/rest@npm:19.0.11":
version: 19.0.11
resolution: "@octokit/rest@npm:19.0.11"
dependencies:
"@octokit/core": "npm:^4.2.1"
"@octokit/plugin-paginate-rest": "npm:^6.1.2"
"@octokit/plugin-request-log": "npm:^1.0.4"
"@octokit/plugin-rest-endpoint-methods": "npm:^7.1.2"
checksum: 10c0/a14ae31fc5e70e76d2492aae63d3453cbb71f44e7492400f885ab5ac6b2612bcb244bafa29e45a59461f3e5d99807ff9c88d48af8317ffa4f8ad3f8f11fdd035
languageName: node
linkType: hard
"@octokit/tsconfig@npm:^1.0.2":
version: 1.0.2
resolution: "@octokit/tsconfig@npm:1.0.2"
checksum: 10c0/84db70b495beeed69259dd4def14cdfb600edeb65ef32811558c99413ee2b414ed10bff9c4dcc7a43451d0fd36b4925ada9ef7d4272b5eae38cb005cc2f459ac
languageName: node
linkType: hard
"@octokit/types@npm:^10.0.0":
version: 10.0.0
resolution: "@octokit/types@npm:10.0.0"
dependencies:
"@octokit/openapi-types": "npm:^18.0.0"
checksum: 10c0/9bbbec1e452c271752e5ba735c161a558933f2e35f3004bb0b6e8d6ba574af48b68bab2f293112a8e68c595435a2fbcc76f3e7333f45ba1888bb5193777a943e
languageName: node
linkType: hard
"@octokit/types@npm:^9.0.0, @octokit/types@npm:^9.2.3":
version: 9.3.2
resolution: "@octokit/types@npm:9.3.2"
dependencies:
"@octokit/openapi-types": "npm:^18.0.0"
checksum: 10c0/2925479aa378a4491762b4fcf381bdc7daca39b4e0b2dd7062bce5d74a32ed7d79d20d3c65ceaca6d105cf4b1f7417fea634219bf90f79a57d03e2dac629ec45
languageName: node
linkType: hard
"@patternfly/class-name-updater@workspace:packages/class-name-updater":
version: 0.0.0-use.local
resolution: "@patternfly/class-name-updater@workspace:packages/class-name-updater"
dependencies:
"@patternfly/shared-codemod-helpers": "workspace:^"
"@types/diff": "npm:^5.0.9"
colors: "npm:^1.4.0"
commander: "npm:^5.1.0"
diff: "npm:^5.1.0"
glob: "npm:^10.2.6"
typescript: "npm:^5.4.2"
bin:
class-name-updater: ./dist/cli.js
languageName: unknown
linkType: soft
"@patternfly/css-vars-updater@workspace:packages/css-vars-updater":
version: 0.0.0-use.local
resolution: "@patternfly/css-vars-updater@workspace:packages/css-vars-updater"
dependencies:
"@patternfly/shared-codemod-helpers": "workspace:^"
"@types/diff": "npm:^5.0.9"
"@types/node": "npm:^22.10.6"
colors: "npm:^1.4.0"
commander: "npm:^5.1.0"
diff: "npm:^5.1.0"
glob: "npm:^10.2.6"
inquirer: "npm:^12.3.2"
typescript: "npm:^5.4.2"
bin:
css-vars-updater: ./dist/cli.js
languageName: unknown
linkType: soft
"@patternfly/eslint-plugin-pf-codemods@npm:^1.140.0, @patternfly/eslint-plugin-pf-codemods@workspace:packages/eslint-plugin-pf-codemods":
version: 0.0.0-use.local
resolution: "@patternfly/eslint-plugin-pf-codemods@workspace:packages/eslint-plugin-pf-codemods"
dependencies:
"@patternfly/shared-codemod-helpers": "workspace:^"
"@types/eslint": "npm:^8.56.0"
"@types/estree-jsx": "npm:^1.0.4"
"@typescript-eslint/utils": "npm:^8.12.2"
typescript: "npm:^5.4.2"
peerDependencies: