-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
6139 lines (5508 loc) · 213 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: 10c2
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.22.13":
version: 7.24.2
resolution: "@babel/code-frame@npm:7.24.2"
dependencies:
"@babel/highlight": "npm:^7.24.2"
picocolors: "npm:^1.0.0"
checksum: 10c2/d7b09748e49cd4a2dfd58fa84aa0733ed83f4dc07db9b1f58c3f1c16b35aa7496109ff0232f50bf3b8ddd484b2a6314f36edb12525c60541bba124548b191920
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.5":
version: 7.24.5
resolution: "@babel/helper-validator-identifier@npm:7.24.5"
checksum: 10c2/998f2a8f6b0e4344a15f9a414ac048606025cf84cffcda91bb7fd49151522039950d49b1c64aa8f6fea393ef91a74f1164173f73ef4d8f573baa30ac4c94d83d
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.2":
version: 7.24.5
resolution: "@babel/highlight@npm:7.24.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c2/db2b26c9cc27a1cb4256eb55d772a6cffdb569e0de29cb2f40e75457dbaa06549c572a98933731737e26b37f1e388950c685f7d0e55a0bb2e429c125fa050872
languageName: node
linkType: hard
"@chyzwar/eslint-config@npm:^0.2.34":
version: 0.2.34
resolution: "@chyzwar/eslint-config@npm:0.2.34"
dependencies:
"@chyzwar/tsconfig": "npm:^0.3.2"
"@eslint/js": "npm:^9.19.0"
"@stylistic/eslint-plugin": "npm:^3.0.1"
eslint-plugin-jest: "npm:^28.11.0"
globals: "npm:^15.14.0"
typescript-eslint: "npm:^8.23.0"
peerDependencies:
eslint: ^9.2.0
checksum: 10c2/d359a96803456c6ccbc95dcaa1714b1726626dfa05dfa210ed02d4fa1a2c9f92ce36b6b03da2e45c523778f3b6f6f29d4601309cd62a49d47af6b3f7c1437f34
languageName: node
linkType: hard
"@chyzwar/tsconfig@npm:^0.3.2":
version: 0.3.2
resolution: "@chyzwar/tsconfig@npm:0.3.2"
checksum: 10c2/30c4e49e1c066cfed9946a6e41c9590f3dec127305561cb5acd56d48ec0790ef0726855899c972c32451c8317711b672485cd67155a7f9888017b97539890690
languageName: node
linkType: hard
"@commitlint/cli@npm:^19.7.1":
version: 19.7.1
resolution: "@commitlint/cli@npm:19.7.1"
dependencies:
"@commitlint/format": "npm:^19.5.0"
"@commitlint/lint": "npm:^19.7.1"
"@commitlint/load": "npm:^19.6.1"
"@commitlint/read": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
tinyexec: "npm:^0.3.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 10c2/0d9231abfcc9e7d6f67ee3a352931385091cfd65e59c54eeeb79932e13a9ed1cec030bc2f58be54dad02f267b7f54cfe83a7d0ab9e7f56ab589840121344b6e0
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^19.7.1":
version: 19.7.1
resolution: "@commitlint/config-conventional@npm:19.7.1"
dependencies:
"@commitlint/types": "npm:^19.5.0"
conventional-changelog-conventionalcommits: "npm:^7.0.2"
checksum: 10c2/d7936f53aca727abbd0340ee6d0aa8ce1ebce9572404d709367ec21fdac5d9f62ccabfb46609ba28fed2559a2bd5834a425157124bbdf1afb00cfa9f4799232e
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/config-validator@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
ajv: "npm:^8.11.0"
checksum: 10c2/bfffaddbcd1985b4631999c2837c93b87f84501b1e5f72c54168604ebf826f2330624cece94e0f9455ff30acf177ed90c5fe520d2970175aeb2873f6513b5cf4
languageName: node
linkType: hard
"@commitlint/ensure@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/ensure@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
lodash.camelcase: "npm:^4.3.0"
lodash.kebabcase: "npm:^4.1.1"
lodash.snakecase: "npm:^4.1.1"
lodash.startcase: "npm:^4.4.0"
lodash.upperfirst: "npm:^4.3.1"
checksum: 10c2/c56cb30988c24b837bea9b5d49696dfa63e39b49c6efcfdf0669908786a0fe1ef896524b45000e8fd440e1231357f65e54f920ba7cbaab90930e9a42c7b281c0
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/execute-rule@npm:19.5.0"
checksum: 10c2/6ec6573588254891fbd352747aa4f4aa7681123d46f3f6bd3203b89a6de7ef8e58ffaec742411f677c131b25e716c01caf1a2dfbc432a2f5ade65cdddbf46e69
languageName: node
linkType: hard
"@commitlint/format@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/format@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
checksum: 10c2/69da496a614fe96fe83f35e42fc10e3d2fa9828662f11bf6bdcdd29c6706c059dcc3c9038a0df1d8faf784240ec7c31349ef996635a9f549b7c98eb435040def
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^19.7.1":
version: 19.7.1
resolution: "@commitlint/is-ignored@npm:19.7.1"
dependencies:
"@commitlint/types": "npm:^19.5.0"
semver: "npm:^7.6.0"
checksum: 10c2/99eb4c403441d329a6ca8bfd6337293f1ca993b4274ffba830a523e4b542f2b12ffadb0551bb6eef9b165bf46309791a0ad4a7ce487ee2aaa1dfa4160f5ed346
languageName: node
linkType: hard
"@commitlint/lint@npm:^19.7.1":
version: 19.7.1
resolution: "@commitlint/lint@npm:19.7.1"
dependencies:
"@commitlint/is-ignored": "npm:^19.7.1"
"@commitlint/parse": "npm:^19.5.0"
"@commitlint/rules": "npm:^19.6.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10c2/eea13c6dda5edf8ad533e59cba92388583380474f27ba618485ed2ad40395fcacbeeecae62b8e654c07d6d29038d0ff8c7bf9d8585f387367304439785164015
languageName: node
linkType: hard
"@commitlint/load@npm:^19.6.1":
version: 19.6.1
resolution: "@commitlint/load@npm:19.6.1"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/execute-rule": "npm:^19.5.0"
"@commitlint/resolve-extends": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
cosmiconfig: "npm:^9.0.0"
cosmiconfig-typescript-loader: "npm:^6.1.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
checksum: 10c2/de759c6553db96bc1d77efe3bd65a065afdfa8276cbf8bfbb67fdebeba8cc2212d5523533b3d86f8a6302daff30be50d9e2bb884d32665e9d8ef27e4955a6ae4
languageName: node
linkType: hard
"@commitlint/message@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/message@npm:19.5.0"
checksum: 10c2/780a0f54f80709e46a6229c2622a78c45a7efadd63aa764831fedb6d2572387468a831e1ba72222f69ee8b50d8056610e7c4f51e04b748ee34566dd3adb8d19e
languageName: node
linkType: hard
"@commitlint/parse@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/parse@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: 10c2/6d4bc646444cba0e38405b3679e3f77fbf72e77d4bee5dadcf0168d79ae7aa74a977154854c0dadb8c82a2d1e64fefacdc49d0998ef0ef073c432209c0f77682
languageName: node
linkType: hard
"@commitlint/read@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/read@npm:19.5.0"
dependencies:
"@commitlint/top-level": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
tinyexec: "npm:^0.3.0"
checksum: 10c2/1f3d11a443b1cb2692ab206d50c617e33c8753f848272f1e0935df0e5b953cf434493918f63c508a530f048602490f864b981a4aef4764b55c7d34214544118c
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/resolve-extends@npm:19.5.0"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
global-directory: "npm:^4.0.1"
import-meta-resolve: "npm:^4.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
checksum: 10c2/145fb922e333670687d8f43f65cd11b5b4619ca52b166445e18df5a5711747b7dc84cce6e490bb317f49359b0eff8a88057062320e65e53786ad55e3667ee772
languageName: node
linkType: hard
"@commitlint/rules@npm:^19.6.0":
version: 19.6.0
resolution: "@commitlint/rules@npm:19.6.0"
dependencies:
"@commitlint/ensure": "npm:^19.5.0"
"@commitlint/message": "npm:^19.5.0"
"@commitlint/to-lines": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10c2/7beb52abf7fe2c2dbb463f30fac89e960edbf140074117efc73a87acdd5f0c6c4df0d5d6416818f6bf08ac0b8059523526fc82167a323e9758d50ca88df56970
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/to-lines@npm:19.5.0"
checksum: 10c2/d8bfe35ca269272f26b81f3eb22cb3506d17c38d17fee1ac856ded5ce9fa942632b13190025694bbf04ea3a570ac4945231d1d8a44d07567566ef3b3c1b835db
languageName: node
linkType: hard
"@commitlint/top-level@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/top-level@npm:19.5.0"
dependencies:
find-up: "npm:^7.0.0"
checksum: 10c2/b4d6e7879307d4454aab455e2964a2fd6ed939986e824c07f95272f3f2067622f3c5cfc5dc2f61f9adbf7024c1bfde53d9fe6ed734ea9a9d42f50922d843d1b5
languageName: node
linkType: hard
"@commitlint/types@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/types@npm:19.5.0"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10c2/07924bdd7f0ee97e5915b423b0fbb8f6712446396fbb7b65b608e5196a24eb5b2d2311bfb7ad745e776dd13f8bd3221f39ad9502bc658eea8e9914aef487f883
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: 10c2/8dd46682e4d6fe901b1d1e8e14d25f23575feb599bd4dccb71488d811c66d3cbb186d3bf2a18469b00ffda918f24918900aebb7ff9674357b29fd201bde42734
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/aix-ppc64@npm:0.24.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm64@npm:0.24.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm@npm:0.24.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-x64@npm:0.24.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-arm64@npm:0.24.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-x64@npm:0.24.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-arm64@npm:0.24.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-x64@npm:0.24.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm64@npm:0.24.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm@npm:0.24.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ia32@npm:0.24.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-loong64@npm:0.24.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-mips64el@npm:0.24.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ppc64@npm:0.24.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-riscv64@npm:0.24.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-s390x@npm:0.24.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-x64@npm:0.24.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-arm64@npm:0.24.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-x64@npm:0.24.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-arm64@npm:0.24.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-x64@npm:0.24.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/sunos-x64@npm:0.24.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-arm64@npm:0.24.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-ia32@npm:0.24.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-x64@npm:0.24.2"
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: 10c2/11d6ad44f14371396e107e66efcc0cf09765fe0c7305a24bc1e948fc314820801d3976b30d766131b78eeff0460de18b823af48d32f8838a4a8d5b0c4b5b5899
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10c2/d3c6fa63b9a0ff9a2a478de13d17d4e408027e9ece704b0d6b996b3580d4862a934047281f0b18092f06fa9e177b61fe8e407f6e55fbffd3d812ba530bf96f00
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.19.0":
version: 0.19.2
resolution: "@eslint/config-array@npm:0.19.2"
dependencies:
"@eslint/object-schema": "npm:^2.1.6"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10c2/71647ed8cdbfb136a9e3990f18c5609c6fe8760fa05d6399cc968ceb1c96142c9a7b1ff0d4fbaa33c25e37d74ad5e3433ccfc682c12bd612e1baa93a56aa934d
languageName: node
linkType: hard
"@eslint/core@npm:^0.10.0":
version: 0.10.0
resolution: "@eslint/core@npm:0.10.0"
dependencies:
"@types/json-schema": "npm:^7.0.15"
checksum: 10c2/a2484facd74497a184cfa740984edabb766f0e6dfb3a370ebbcf685b643444daf41429514c42c7706aa7407a7dee43b4b233c530cfa51a440640321fb4165803
languageName: node
linkType: hard
"@eslint/core@npm:^0.11.0":
version: 0.11.0
resolution: "@eslint/core@npm:0.11.0"
dependencies:
"@types/json-schema": "npm:^7.0.15"
checksum: 10c2/65227201da123c3d7257869aaeb93ec66d69b49e5b751d724a9c418f016f2d7c00deed1933b1c571c44ea075a9b2410051f4a733e519083bf713f7f49043bd24
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.2.0":
version: 3.2.0
resolution: "@eslint/eslintrc@npm:3.2.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: 10c2/4fb30c4c1adcc92f536787bbd7c342a3f2019153b443d28d3c97d13dc68da2fd4f9e16e78cfb2f38425c0fd13ab3118c4c90d0c02ad09d7c8b3efdfc8b047da7
languageName: node
linkType: hard
"@eslint/js@npm:9.20.0, @eslint/js@npm:^9.19.0":
version: 9.20.0
resolution: "@eslint/js@npm:9.20.0"
checksum: 10c2/c3ce09c8f578b79295c513a07fc2332e8069d716cd7281c4c78da905a8b199962d32c7bddcd919b612e302b7f308e23a1c53cf3256c8fe3676d08ea14b0e0522
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.6":
version: 2.1.6
resolution: "@eslint/object-schema@npm:2.1.6"
checksum: 10c2/99b384e73b36ba78d960c57bb8c2082effd55ceb9b5e8913c035e09471c8f187cb47937fef0b86adf7c71f2789fe315e32270b03460a7d4c504c33258342024d
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.2.5":
version: 0.2.5
resolution: "@eslint/plugin-kit@npm:0.2.5"
dependencies:
"@eslint/core": "npm:^0.10.0"
levn: "npm:^0.4.1"
checksum: 10c2/8bc75ed25631bddef89173f6a1c1b972634707635dfbff28cb1583b63f5e7168a94365cdbd6060f72d961d9881f6bf3e2b6a9e8cd9cca06565fb1c986a0d986e
languageName: node
linkType: hard
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: 10c2/dc2f5b2760a8a8c0d70f3ac7dc5470ec57be3354ac930b01dbb7d8cc09b0a335884246e0227cc142c03bd50a619cda42f9645145c1472a210d9824434acd4ba8
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.6
resolution: "@humanfs/node@npm:0.16.6"
dependencies:
"@humanfs/core": "npm:^0.19.1"
"@humanwhocodes/retry": "npm:^0.3.0"
checksum: 10c2/60a2a37482c07af028cd7f3170662ce3cedce80a7391484b883d9aa8a5747bbf77f3e6d777f9e62657c74af10c1d8fe15383dedf715335180717df28136e4444
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c2/a2309d1442dd110c516eb310b5298d47a6734813ab2291559da71f040f033451455a772f62f08e17f6bfac87749a31a90020f81864edb0b0d95969dce2d96576
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.0
resolution: "@humanwhocodes/retry@npm:0.3.0"
checksum: 10c2/783288a12b780f13e480b71c3f0772df42820282370ec4e55b9cbbc4ba867521192660b1bf9dc76d082745853c5fb81a5c8135a614435ec7351fda2d1cfd9dc9
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.4.1":
version: 0.4.1
resolution: "@humanwhocodes/retry@npm:0.4.1"
checksum: 10c2/08a79413457e3620aa62796e89267609bf35fa51bce032bc8a38d3bdbdf0bf4d68243df4ef02849f8cb0f7a9a193c9b8901571026f9b62c371313c0f2ebf9307
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^5.0.0":
version: 5.0.0
resolution: "@hutson/parse-repository-url@npm:5.0.0"
checksum: 10c2/9f127cc6149a3020008611a225ae8ea64b8d9a922b5fcf3bdb025fd79b599b00c6da29515d6c9bfecc474d70a6f627acd8272fdc02900c9a0af21fa224668fcb
languageName: node
linkType: hard
"@inquirer/core@npm:^10.1.7":
version: 10.1.7
resolution: "@inquirer/core@npm:10.1.7"
dependencies:
"@inquirer/figures": "npm:^1.0.10"
"@inquirer/type": "npm:^3.0.4"
ansi-escapes: "npm:^4.3.2"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^2.0.0"
signal-exit: "npm:^4.1.0"
wrap-ansi: "npm:^6.2.0"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c2/6b9b2a93f30ee2212c7e65722d03cf48d32cdd8253421e4519ce0f5353d22a86c1fa149cdc94e8a445dca76f6033059d9456c8522e5809c22f404b75c738dde5
languageName: node
linkType: hard
"@inquirer/expand@npm:^4.0.7":
version: 4.0.9
resolution: "@inquirer/expand@npm:4.0.9"
dependencies:
"@inquirer/core": "npm:^10.1.7"
"@inquirer/type": "npm:^3.0.4"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c2/4b14d3fc09151e6f303628b9fde8837d7a75ca3996a1647bc0bb9286cdd3c774f22149f4e9a698acf8efe23e67b786ada930cda5556d4075284d6b75d45ee360
languageName: node
linkType: hard
"@inquirer/figures@npm:^1.0.10":
version: 1.0.10
resolution: "@inquirer/figures@npm:1.0.10"
checksum: 10c2/a975097c7db81e156a44132dd1f12a2e0befd4f663ec45d2a7d0b06ffba3a7916d08ea4ba599d65e2d941bfbd2549f8b3e8c681bdbb88f6979b95a4555e8523b
languageName: node
linkType: hard
"@inquirer/input@npm:^4.1.4":
version: 4.1.6
resolution: "@inquirer/input@npm:4.1.6"
dependencies:
"@inquirer/core": "npm:^10.1.7"
"@inquirer/type": "npm:^3.0.4"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c2/458b4168e4abb9d2d7d6be3af94821c189a0512256afb9558d9b1c83557ad3ac3197dd50b89fdfe082b5b541c76d98fb9c75d0254430511c9f1243e1d2eaf596
languageName: node
linkType: hard
"@inquirer/select@npm:^4.0.7":
version: 4.0.9
resolution: "@inquirer/select@npm:4.0.9"
dependencies:
"@inquirer/core": "npm:^10.1.7"
"@inquirer/figures": "npm:^1.0.10"
"@inquirer/type": "npm:^3.0.4"
ansi-escapes: "npm:^4.3.2"
yoctocolors-cjs: "npm:^2.1.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c2/e6524cb5536725e61871a74a2767518f78fc55278427eda0326958f61b435a76081f5c4e5d03b612f5bb4cef300fe5ea7f217bb58042d0edf880d9ddf5da94d0
languageName: node
linkType: hard
"@inquirer/type@npm:^3.0.4":
version: 3.0.4
resolution: "@inquirer/type@npm:3.0.4"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c2/2efc0dcef89bbefdd03b71abdd4298d1a8cd654cea43d2e58d909bf77043598b24ec2d5b0401594f0d143c8e6f91dd2f0a804617b31d38e5b32eba51eb78ce25
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: 10c2/0b84087acd2416947b4094fe1db55b4c08cf48e63c904f9b1460d470c32ddfaccaf0bfe6be56fcec82477806df1203ce6b93ac0f791fb266bbbe2b260d5e1dbd
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: 10c2/71b51ea15d04e5d713b5d326d3fafe38eaffcf6a1a0ac75e3d2d8ed71792c91fbe4cb58e7888cbe8779a9afdf31c52a32e899de5b951bfe1c22c67fa0ce1e4d5
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c2/16570b6146f519ff771fcf05d52e0800d2da3e3fbb1e8754e2fc14dde69600a85175c55f49987221df3441f3ae0d91c9c52fbffe609e2fe8a2c98ce14cc2c5e9
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c2/4e9d25cacc212a6901b3c284fdbb78d0b5c7273a5b8d9e8434654420fd0e6bc0801b18188423843652238e5116b1da0d1ca8a0d3818caf8d4b5f7a4d951d3524
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: 10c2/565e8b12b5cbb8d28831a3997a4d870447c61fcdbd2a392712d4585180c9b0f5e13ac528e1d04be7e1d313c413f5bdef1132d3760494520b20162b49316212aa
languageName: node
linkType: hard
"@lerna-lite/cli@npm:3.12.0, @lerna-lite/cli@npm:^3.12.0":
version: 3.12.0
resolution: "@lerna-lite/cli@npm:3.12.0"
dependencies:
"@lerna-lite/core": "npm:3.12.0"
"@lerna-lite/init": "npm:3.12.0"
"@lerna-lite/npmlog": "npm:3.12.0"
dedent: "npm:^1.5.3"
dotenv: "npm:^16.4.7"
import-local: "npm:^3.2.0"
load-json-file: "npm:^7.0.1"
yargs: "npm:^17.7.2"
peerDependenciesMeta:
"@lerna-lite/exec":
optional: true
"@lerna-lite/list":
optional: true
"@lerna-lite/publish":
optional: true
"@lerna-lite/run":
optional: true
"@lerna-lite/version":
optional: true
"@lerna-lite/watch":
optional: true
bin:
lerna: dist/cli.js
checksum: 10c2/cff478a79722b9ed7ef3cd090862598a0d5045c8d04460caa6b423b9752d4fb212a66ffd21bbf9c822a03bce208a083f9b91ffad6b8340014daca6404bb92880
languageName: node
linkType: hard
"@lerna-lite/core@npm:3.12.0":
version: 3.12.0
resolution: "@lerna-lite/core@npm:3.12.0"
dependencies:
"@inquirer/expand": "npm:^4.0.7"
"@inquirer/input": "npm:^4.1.4"
"@inquirer/select": "npm:^4.0.7"
"@lerna-lite/npmlog": "npm:3.12.0"
"@npmcli/run-script": "npm:^8.1.0"
clone-deep: "npm:^4.0.1"
config-chain: "npm:^1.1.13"
cosmiconfig: "npm:^9.0.0"
dedent: "npm:^1.5.3"
execa: "npm:^8.0.1"
fs-extra: "npm:^11.3.0"
glob-parent: "npm:^6.0.2"
is-ci: "npm:^4.1.0"
json5: "npm:^2.2.3"
load-json-file: "npm:^7.0.1"
minimatch: "npm:^9.0.5"
multimatch: "npm:^7.0.0"
npm-package-arg: "npm:^11.0.3"
p-map: "npm:^7.0.3"
p-queue: "npm:^8.1.0"
resolve-from: "npm:^5.0.0"
semver: "npm:^7.7.0"
slash: "npm:^5.1.0"
strong-log-transformer: "npm:^2.1.0"
tinyglobby: "npm:^0.2.10"
tinyrainbow: "npm:^2.0.0"
write-file-atomic: "npm:^5.0.1"
write-json-file: "npm:^6.0.0"
write-package: "npm:^7.1.0"
yaml: "npm:2.7.0"
checksum: 10c2/d59fe45c10f03f0ec10974daeccbd244ba8b19a5561bd04cda9bd2ed54c530b1e1f21ad1dbbe3c9107abd116c1bb417ef2a9b61e22c7ac4b2684853c78affb6e
languageName: node
linkType: hard
"@lerna-lite/init@npm:3.12.0":
version: 3.12.0
resolution: "@lerna-lite/init@npm:3.12.0"
dependencies:
"@lerna-lite/core": "npm:3.12.0"
fs-extra: "npm:^11.3.0"
p-map: "npm:^7.0.3"
write-json-file: "npm:^6.0.0"
checksum: 10c2/ac9d3996913b6c0a22252714bb40061dbf4ab1b6c6d1b35cc31559aced7e7c6ae8db966d44f76860899105042ba67b8533cf957ba1909d9c5b6e0a1deda2e8e2
languageName: node
linkType: hard
"@lerna-lite/npmlog@npm:3.12.0":
version: 3.12.0
resolution: "@lerna-lite/npmlog@npm:3.12.0"
dependencies:
aproba: "npm:^2.0.0"
color-support: "npm:^1.1.3"
console-control-strings: "npm:^1.1.0"
has-unicode: "npm:^2.0.1"
set-blocking: "npm:^2.0.0"
signal-exit: "npm:^4.1.0"
string-width: "npm:^7.2.0"
wide-align: "npm:^1.1.5"
checksum: 10c2/8dd0beb69230cef5ee43f0ea3465add2e36dcc18a2692d0d3acea4518ae7dd186bd5051170aef4a4543845de24ac69c9e82c2d46e5517e9d7ac500b9e1dc35d5
languageName: node
linkType: hard
"@lerna-lite/publish@npm:^3.12.0":
version: 3.12.0
resolution: "@lerna-lite/publish@npm:3.12.0"
dependencies:
"@lerna-lite/cli": "npm:3.12.0"
"@lerna-lite/core": "npm:3.12.0"
"@lerna-lite/npmlog": "npm:3.12.0"
"@lerna-lite/version": "npm:3.12.0"
"@npmcli/arborist": "npm:^7.5.4"
"@npmcli/package-json": "npm:^5.2.1"
byte-size: "npm:^9.0.1"
columnify: "npm:^1.6.0"
fs-extra: "npm:^11.3.0"
has-unicode: "npm:^2.0.1"
libnpmaccess: "npm:^8.0.6"
libnpmpublish: "npm:^9.0.9"
normalize-path: "npm:^3.0.0"
npm-package-arg: "npm:^11.0.3"
npm-packlist: "npm:^8.0.2"
npm-registry-fetch: "npm:^17.1.0"
p-map: "npm:^7.0.3"
p-pipe: "npm:^4.0.0"
pacote: "npm:^18.0.6"
semver: "npm:^7.7.0"
ssri: "npm:^11.0.0"
tar: "npm:^6.2.1"
temp-dir: "npm:^3.0.0"
tinyglobby: "npm:^0.2.10"
tinyrainbow: "npm:^2.0.0"
checksum: 10c2/aa4bb1d7189ef312a9c0f1234dce3115db72f452fb52879f873d1e1bb471113189d9a2f59d21571fa34c0b008a0b7f4dd6412c23ed1573470302cdaf5aa0914d
languageName: node
linkType: hard
"@lerna-lite/version@npm:3.12.0, @lerna-lite/version@npm:^3.12.0":
version: 3.12.0
resolution: "@lerna-lite/version@npm:3.12.0"
dependencies:
"@lerna-lite/cli": "npm:3.12.0"
"@lerna-lite/core": "npm:3.12.0"
"@lerna-lite/npmlog": "npm:3.12.0"
"@octokit/plugin-enterprise-rest": "npm:^6.0.1"
"@octokit/rest": "npm:^21.1.0"
conventional-changelog-angular: "npm:^7.0.0"
conventional-changelog-core: "npm:^7.0.0"
conventional-changelog-writer: "npm:^7.0.1"
conventional-commits-parser: "npm:^5.0.0"
conventional-recommended-bump: "npm:^9.0.0"
dedent: "npm:^1.5.3"
fs-extra: "npm:^11.3.0"
get-stream: "npm:^9.0.1"
git-url-parse: "npm:^16.0.0"
graceful-fs: "npm:^4.2.11"
is-stream: "npm:^4.0.1"
load-json-file: "npm:^7.0.1"
make-dir: "npm:^5.0.0"
minimatch: "npm:^9.0.5"
new-github-release-url: "npm:^2.0.0"
node-fetch: "npm:^3.3.2"
npm-package-arg: "npm:^11.0.3"
p-limit: "npm:^6.2.0"
p-map: "npm:^7.0.3"
p-pipe: "npm:^4.0.0"
p-reduce: "npm:^3.0.0"
pify: "npm:^6.1.0"
semver: "npm:^7.7.0"
slash: "npm:^5.1.0"
temp-dir: "npm:^3.0.0"
tinyrainbow: "npm:^2.0.0"
uuid: "npm:^11.0.5"
write-json-file: "npm:^6.0.0"
checksum: 10c2/a0cff8c34333d81e3ffd2504745158642ebac407a9d0e53846227f0289d3593a89de5f3900c201c4f3fd7d0b9261f25d46c0bf39a0d273e84f82dca3c7280895
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: 10c2/27dfbc8be6a8aecbc1bcf961f16b8588e296a83741d0d8d804795cdc8065b6650e9c3df6f791ed07d0efa2de1ed54227815460be7fe4c9c1a1a6009264ff3229
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: 10c2/135352837ab06353a573a0e9da7908ef6eec60f738c3b590bbb360793a054aca83d5587b9c280b7a71a714a005fbe9c4da3919056cf27a88a0c4562febca4205
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c2/50b1a0ade654f270c6d98fb2e55b171d66ac5ed4bb8ac837f8ed5f071ad068fa43fd6c890bfa6d1d5846f9d5f35552cd7d648a7736548df1a0af6e54a47f0fce
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: 10c2/b60b5582cbb94d46e877a04b3e12e4b05e160d001088a75801b7324741097a97c8a4902ea95fd5068e40321844f430fa069affed78abb93daa5c6240e0914dd3
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: 10c2/b0aacf950145c2d3e20191e731fb3a2ff125620883f949694896d53d59104601a86f51a5edab648792d645c051c9eb3ce3151b960d21bc691aa82c374c156c46
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: 10c2/b56cd921613acb9b8b06a3c5f10b555e4b861e378f09827c61f2a1b01903aa58396426c5c7d688062b885d49723d0e152d5e0b11cae30a6ace61c2a1fb8b28e0
languageName: node
linkType: hard
"@npmcli/git@npm:^5.0.0":
version: 5.0.7
resolution: "@npmcli/git@npm:5.0.7"
dependencies:
"@npmcli/promise-spawn": "npm:^7.0.0"
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: 10c2/8a288e8c135e3a9f2cddba71ea3bfb1e2228df9ce47604377c41a9a4638947bcb0535372bc2afaf25ad9092a53188da831c071f674f2b2a3e172ab475847bd81
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: 10c2/3456728c5312b4ef38ca74d4e731e9988f0323726489e0c63f559feea915aa96afa3eeee3437d480e5c9f521c16646447c714ce4aa7858106ddea4360aec04b6
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"