-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
7894 lines (7055 loc) · 277 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: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@arktype/fs@npm:^0.0.11":
version: 0.0.11
resolution: "@arktype/fs@npm:0.0.11"
checksum: 10c0/8b23fd9e88263e395fa367944ef5273c62f9b4612a4f97480ec4ea87af4a1fb4e6fb46a5124b457cde38cb9d6c754ccdfa071d5749a12c4f84e00178c698f48b
languageName: node
linkType: hard
"@arktype/fs@npm:^0.0.8":
version: 0.0.8
resolution: "@arktype/fs@npm:0.0.8"
checksum: 10c0/15d8df9cd5adb245593e288d274c17b4f0dea798166c421c5674337ea6ee8e1e8c024c4cca6b01b029b76d3df6fc8784be5420d5989bcf7f3e412c0d8992a5fa
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 10c0/e3966f2717b7ebd9610524730e10b75ee74154f62617e5e115c97dbbbabc5351845c9aa850788012cb4d9aee85c3dc59fe6bef36690f244e8dcfca34bd35e9c9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-validator-identifier@npm:7.18.6"
checksum: 10c0/101b283b3c2feebea135ef75008aaef95d042a1e3204be64112654390d7f95f1d2898d816582a82df0feed5df16778146bbdf5c82e744dc7bf018c3c8d0919e9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10c0/dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/a6a6928d25099ef04c337fcbb829fab8059bb67d31ac37212efd611bdbe247d0e71a5096c4524272cb56399f40251fac57c025e42d3bc924db0183a6435a60ac
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
languageName: node
linkType: hard
"@colors/colors@npm:^1.6.0":
version: 1.6.0
resolution: "@colors/colors@npm:1.6.0"
checksum: 10c0/9328a0778a5b0db243af54455b79a69e3fb21122d6c15ef9e9fcc94881d8d17352d8b2b2590f9bdd46fac5c2d6c1636dcfc14358a20c70e22daf89e1a759b629
languageName: node
linkType: hard
"@commander-js/extra-typings@npm:^11.1.0":
version: 11.1.0
resolution: "@commander-js/extra-typings@npm:11.1.0"
peerDependencies:
commander: 11.1.x
checksum: 10c0/df00ebed009edcd2d79cf4b17d869cea614a509fd4605d4cc04c4b1bf7319eccfda79751ac43d6122d57ab1828074233e829a46367cd7b1b5da9ddc83261d72b
languageName: node
linkType: hard
"@commander-js/extra-typings@npm:^12.0.0":
version: 12.0.0
resolution: "@commander-js/extra-typings@npm:12.0.0"
peerDependencies:
commander: ~12.0.0
checksum: 10c0/e94579d7f3aabc32fb1421649ff21152cf70c5fa8af6ee2e47407be6a19858f4d451a9671a8617a1b1e128d642fe0df4af03e17cef7e6cc2fd979e61a2f53bf3
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/cspell-bundled-dicts@npm:8.4.1"
dependencies:
"@cspell/dict-ada": "npm:^4.0.2"
"@cspell/dict-aws": "npm:^4.0.1"
"@cspell/dict-bash": "npm:^4.1.3"
"@cspell/dict-companies": "npm:^3.0.31"
"@cspell/dict-cpp": "npm:^5.1.3"
"@cspell/dict-cryptocurrencies": "npm:^5.0.0"
"@cspell/dict-csharp": "npm:^4.0.2"
"@cspell/dict-css": "npm:^4.0.12"
"@cspell/dict-dart": "npm:^2.0.3"
"@cspell/dict-django": "npm:^4.1.0"
"@cspell/dict-docker": "npm:^1.1.7"
"@cspell/dict-dotnet": "npm:^5.0.0"
"@cspell/dict-elixir": "npm:^4.0.3"
"@cspell/dict-en-common-misspellings": "npm:^2.0.0"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.3.16"
"@cspell/dict-filetypes": "npm:^3.0.3"
"@cspell/dict-fonts": "npm:^4.0.0"
"@cspell/dict-fsharp": "npm:^1.0.1"
"@cspell/dict-fullstack": "npm:^3.1.5"
"@cspell/dict-gaming-terms": "npm:^1.0.5"
"@cspell/dict-git": "npm:^3.0.0"
"@cspell/dict-golang": "npm:^6.0.5"
"@cspell/dict-haskell": "npm:^4.0.1"
"@cspell/dict-html": "npm:^4.0.5"
"@cspell/dict-html-symbol-entities": "npm:^4.0.0"
"@cspell/dict-java": "npm:^5.0.6"
"@cspell/dict-k8s": "npm:^1.0.2"
"@cspell/dict-latex": "npm:^4.0.0"
"@cspell/dict-lorem-ipsum": "npm:^4.0.0"
"@cspell/dict-lua": "npm:^4.0.3"
"@cspell/dict-makefile": "npm:^1.0.0"
"@cspell/dict-node": "npm:^4.0.3"
"@cspell/dict-npm": "npm:^5.0.15"
"@cspell/dict-php": "npm:^4.0.6"
"@cspell/dict-powershell": "npm:^5.0.3"
"@cspell/dict-public-licenses": "npm:^2.0.5"
"@cspell/dict-python": "npm:^4.1.11"
"@cspell/dict-r": "npm:^2.0.1"
"@cspell/dict-ruby": "npm:^5.0.2"
"@cspell/dict-rust": "npm:^4.0.2"
"@cspell/dict-scala": "npm:^5.0.0"
"@cspell/dict-software-terms": "npm:^3.3.18"
"@cspell/dict-sql": "npm:^2.1.3"
"@cspell/dict-svelte": "npm:^1.0.2"
"@cspell/dict-swift": "npm:^2.0.1"
"@cspell/dict-typescript": "npm:^3.1.2"
"@cspell/dict-vue": "npm:^3.0.0"
checksum: 10c0/f1b2cf1b5da8a6e83534d0e045ec2d7e11cac6ac0224e65294d4c8e2213f71cb654c8d26c6e12948473a952848661c10ed24e31a267ff68cee6bedaa297daeab
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/cspell-json-reporter@npm:8.4.1"
dependencies:
"@cspell/cspell-types": "npm:8.4.1"
checksum: 10c0/fba73322812f46f3b12c698152602ac89ebb4a05556055c79a3c71a0128b308375532c827b2c46e235155626de90583401c24b453919d7b4a7a2b507c24c7bad
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/cspell-pipe@npm:8.4.1"
checksum: 10c0/654aee045cd3f09f83c139cafdb07b853425208fbfa9b47a205116f077ee6945a61bbafafbbeb39e200757437092301af73976b766ee335541a850650518ad7e
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/cspell-resolver@npm:8.4.1"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 10c0/04c569925dbef93f027582dd357ffa960edd9fea42aa797e096fbb002046cefcf8a7b8a745d0c0b8fc665718db5f4d23829b0d8652d3fb6c362bc3e3b02962c1
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/cspell-service-bus@npm:8.4.1"
checksum: 10c0/6f3a9436031b14a59bda064721578560e9f00cb20f42e96fbab6533f2e9945fab1348124aa79090ab621ec4a54018d683916c8daf8112f85aa941d48be3643c3
languageName: node
linkType: hard
"@cspell/cspell-types@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/cspell-types@npm:8.4.1"
checksum: 10c0/5c90d420729c8d945cc2196b5a9fc181641335acc5b5da2161d2dacdd9248b0847e3ca299e2d4928a4fb946800e63a83c29d3e38bcbc0d1b3793d517c2dead26
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-ada@npm:4.0.2"
checksum: 10c0/ef2e34ddfc635a398522a04b0193e2130051a644dffa52f31faa59e864f88d1624b50b53115ed16cc4508f36b43ba8819f504635f437f34ee7d451d3bb441a71
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-aws@npm:4.0.1"
checksum: 10c0/48bc3645f23b8290ded066d4dda4c5cc5e903229e2f8893cba795e2d2583ce45bde8ff835454340eb6593beeb41e8014d52af4c6991fd4d8de1cd6c5a415294b
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.3":
version: 4.1.3
resolution: "@cspell/dict-bash@npm:4.1.3"
checksum: 10c0/b91920a38d7db74cdf1da7677ddfa1853643175dacba90b65a9d58343cacb0280f86a3927288c673c9ccc0587b200bc8447b210fdd89e8ea2f66956207d55024
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.0.31":
version: 3.0.31
resolution: "@cspell/dict-companies@npm:3.0.31"
checksum: 10c0/1e2a2c3ca4fc80cc44a88e7a53cd060f3d8ec8f45151d2cf5f0c8bdde04331c21fcb65c76cd14715a1899f8c33316ab3233acebc691dd6ec78f659212acfc364
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^5.1.3":
version: 5.1.3
resolution: "@cspell/dict-cpp@npm:5.1.3"
checksum: 10c0/0aa2c8bdcab66b6228071ad8b22489483ecbe798e52ae67aeba97b7b47cfeeed69f4e67f344edd46f8172f805b0bdacc905b10aa256e27ee58dfe8f12987ba0b
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.0"
checksum: 10c0/d5b124eb5d037103ffa2b282779dda8a01ec6622c5498282e05b58f92ce262dae9ac8995748e47a89578e9d658ffd963aa430e85699618c8428166fbe741370d
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-csharp@npm:4.0.2"
checksum: 10c0/146b7edeb8aa1acf6b0ccb283a2a5e0e8f2612e6fc67cca9b26e0fabe954a92042d314860bb5418522d6db265bd5933b6c68004d2b8225ad89498bf795b51f89
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.12":
version: 4.0.12
resolution: "@cspell/dict-css@npm:4.0.12"
checksum: 10c0/aba5755408d3184d3fe3bc61db112caf8f9360944da4a777d7ef823198768e9b019c1338993f36af00c33f475434476d8dc2351c439a7cb898dc02dd5acd13e9
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.0.3":
version: 2.0.3
resolution: "@cspell/dict-dart@npm:2.0.3"
checksum: 10c0/640b432ced4888c4a6dbdeb2006ed778b59cab7eeb1445e85a66320c1eefe42e905da7c4c89003c42eca97f785380038d603200b8e1f3bea9bc39b81cfadabf7
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^1.0.11":
version: 1.0.11
resolution: "@cspell/dict-data-science@npm:1.0.11"
checksum: 10c0/c0d7ffc81c43d00c997ac759ef48541c758bbf4074a743f6aa88c896acb4ea7c291b59103e6b84964ba62603314b164d515ffd7f44379870f1d9614dfcc862a3
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-django@npm:4.1.0"
checksum: 10c0/85b7f58d772f169f7471f2c1bcb8a0207cdff7c32677bf470bcbcc74ce6498269623cfcc7910730eeac7f052633f8d4c63574367c1afe5f46a2917748ed397ca
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.7":
version: 1.1.7
resolution: "@cspell/dict-docker@npm:1.1.7"
checksum: 10c0/e34428f3e18d3ebb94854e4034746a8a0ef81354994f09d289254f75b9ce11fee53f64c706e1e598d5131fbe50d536401c4e5b854e44b965e6e193d454fa87b7
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-dotnet@npm:5.0.0"
checksum: 10c0/b55e2457f134aa99f9037c58a4441bb1e6b50a8ac399833b775517e14c84b84cf01e2ca8b75a93bccdc75ff9f656a4b0433c4bd82bfe830227848fc5a30ce1b4
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-elixir@npm:4.0.3"
checksum: 10c0/c24b742b0615f310c89a05ded6648a63ee8e0a9d63326fd155846ce4acba2337a1cef3f58d653b9d8f4b6636d466dfeac2bf7122f374ae39a4d539894ebc5523
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-en-common-misspellings@npm:2.0.0"
checksum: 10c0/18faa9e7636fc8dc0106eb6a47fe3a211d90dec15ab89248a33b062c88cb64a9e19363519c1bf4cbca032754dcaa4cc77fc7ce6dae7b327e6c70c1108d358d8e
languageName: node
linkType: hard
"@cspell/dict-en-gb@npm:1.1.33":
version: 1.1.33
resolution: "@cspell/dict-en-gb@npm:1.1.33"
checksum: 10c0/09563d1016f652dc8164a5f692be49beb78a847a54d5e470d406ae4db125bf8021db75d3db63f7a0c1d1b7a5dfbec4b709fb2ff3520447dcad690adb98d74130
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.3.16":
version: 4.3.17
resolution: "@cspell/dict-en_us@npm:4.3.17"
checksum: 10c0/6a1afa5e23ba01918f2775371c98cdac5994746936e58c1ba8cfddd62dd025f919091181e7361e05f601acb729112050bb286e39061d14d407cf7aa34f9997f5
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.3":
version: 3.0.3
resolution: "@cspell/dict-filetypes@npm:3.0.3"
checksum: 10c0/0a64f24fc4e5e0ec00e4a9982c3da228cf2dc5536f780785af31e3d257ea98d428464c0d35fabd5335ade751051ab0cce6fd2b1aa650a2b63515dfe8752bbd41
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-fonts@npm:4.0.0"
checksum: 10c0/d7b62691ebb34cf5538f65e18e4188716a87e3fcd56cabde090040b5c81676bc0004304bda47bc14c58417ac710b4627b3513a5bbeb99be1fae6d9b5f291bd2c
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-fsharp@npm:1.0.1"
checksum: 10c0/bc1a83f35eab65e4704889cbfa4625dbbf07219987c2535f0c469f741f047ee8d14ea2fb65d32b669fd27b63a79a119b65e587d28ec9608e064a6f49d2274ca6
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.1.5":
version: 3.1.5
resolution: "@cspell/dict-fullstack@npm:3.1.5"
checksum: 10c0/c6e02b9ac3cafee8e2fe913b725cb0fa9cb7ac35b5ec331160e1d4ec9c47237f12638a2b5637fd6b2933662ee9b6b1d1c524a9035df109e25fbacc6032ded6c4
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-gaming-terms@npm:1.0.5"
checksum: 10c0/2017d228104dcf1642fce087e1e1aae76927d0d05f229bd44d0652acfdf93c17e287079920b885f7d78bd9154434ace674d986e94425b9187e4984d54b410597
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-git@npm:3.0.0"
checksum: 10c0/baf9de7896f4da603600c735fe861c8ce3db8f8533ac6f52b0541096090ae8efcdcde33aab19b69e8bd6d72af45d664b1f2cfda6fbb157a81608bc6d0d39ce6d
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.5":
version: 6.0.5
resolution: "@cspell/dict-golang@npm:6.0.5"
checksum: 10c0/387cc678d94e0d50f9c9c24aa6cdea2990dbf56f379300ef0f6307be8bdc2941ccec6503a86c28718f4b3c110739cc4216471f644ff9d68510100b992b702431
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-haskell@npm:4.0.1"
checksum: 10c0/7693a06b74a393aec35b67304ae56dad1ce3509951bec64053d992011e0309e9c420edd13a073ab3e500c0ac53e15dd92472097d689f7602c6d9ad10a2ee0dab
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.0"
checksum: 10c0/35d3223f02f0d091ac6a93424d4c31a075ece530bee00853ee1f5827e5ed25d08407a522a3c747cbfbaa891333df3aa9cf6107a21f2a030667f74228655c9081
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-html@npm:4.0.5"
checksum: 10c0/6e1b9262bba042a951a6020dfd99efb5fb3a29a5ad8bbdc96a1dd197dc1d89384448afd3b6ff7227a48f2439a90bd3b297566b35c94dcc032f8b473ac147c16a
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.6":
version: 5.0.6
resolution: "@cspell/dict-java@npm:5.0.6"
checksum: 10c0/28cacf0fc3d72d76ee6052af07acda8b34afe5dbf564ab2e91a0f291d3bcde34e88eaf6d484044c75f34256108cdcf32dd22bc763f372bfb2e5637beba26779f
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-k8s@npm:1.0.2"
checksum: 10c0/ddcd71500a68b2b973276ca8f11f93facc6768a6661e78f6fb17908f2b8f70924d5d138e340ddba4294203588b1cb2da8cea3165671f46e71d0225450bf234ae
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-latex@npm:4.0.0"
checksum: 10c0/d96392866378e680d2fe29770bb8f38b1abad8c2b5b29e003bdbfe7aee79de1841fe699b6e357629e7b94dbaf882fd33e5e316d066be7fc02f0cea6caa8dcde4
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.0"
checksum: 10c0/9f518643664f4ccc8b3e4126abf78385d9ea4abd1d9fc4d5e89f3a140175c62e2d5f729a97845d912f899e908dd8a9ebbc3a0debd2a41f15cee7a2f15d44b04b
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-lua@npm:4.0.3"
checksum: 10c0/3c6bf9942f3194071d293c0024e3be1b203cdd953222cc4140e97572f1991697c3cc7b6be0c828788eaefb72e7013c8b41937e9b1c14188f79c38b45786fcca5
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-makefile@npm:1.0.0"
checksum: 10c0/b0618d71cfae52c8cbe023d316195ff7fc80b29504ed983e4994df6109b62ef1e3af00500cf60ad9489b9ca9ca85b33aeb8a56f6dfff4bf8e1ac08b25a38e823
languageName: node
linkType: hard
"@cspell/dict-node@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-node@npm:4.0.3"
checksum: 10c0/334ce75e5d3ad97dda48e33192ae2ce37d604b86e7f9d97dda1fe1468030735c6719257962d0e5a7413c63d194100e1348b86d05b5b724599175e75b0b3d29b2
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.0.15":
version: 5.0.15
resolution: "@cspell/dict-npm@npm:5.0.15"
checksum: 10c0/e8ed0510efbbc1724151997cb5af6446975b0f926b098176d3ad65eca8f130e6aa15601d9367e5e52a5ca832efe2bab6fb1a2bbac07ec29f56dd38a4142343ea
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-php@npm:4.0.6"
checksum: 10c0/9640d8d93196abfb249495b1c73f0c6c4d3dcbe17692ceb40fa94d89b38f7fc43be4ea343c75fda348d5e5c09dcc7206d3e7a9cf9d41ed026553d0d6e074dda9
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.3":
version: 5.0.3
resolution: "@cspell/dict-powershell@npm:5.0.3"
checksum: 10c0/46428e937f740654c70b1e2a281bccd8253952186dcf8f8cf4bf649c7767cf37a5eed5683d9136271c78505d24648e05f4af3b41caf64ae6e881858c2fbe190e
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.5":
version: 2.0.5
resolution: "@cspell/dict-public-licenses@npm:2.0.5"
checksum: 10c0/a03abe9c5d8f8088c4e9b8b9eb9a4c83331e5204bd5900987c3d3f99ee27b747fd9ff11cc5d0835e122b44a26ecdc731480680fc5c4fc8b48548c4ec0a6d5243
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.1.11":
version: 4.1.11
resolution: "@cspell/dict-python@npm:4.1.11"
dependencies:
"@cspell/dict-data-science": "npm:^1.0.11"
checksum: 10c0/a8f93e0d0d840cf2b62c8f5946aa67b2bfb07a42351228dc7b9275c68b69b0a658e4f3e8ed3fa89d8215950bbe7985cb1798856ba737412a455f6bf3f306593d
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-r@npm:2.0.1"
checksum: 10c0/c8eead19fed04ff748c8ac75c55c4cf32b0383b0b9d05a23299e7e5d2d6f0c33fe94ff4c73080fdbd5b7e2fcdeaf726373a993122ec35e3a8f2b61f202c4a837
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.0.2":
version: 5.0.2
resolution: "@cspell/dict-ruby@npm:5.0.2"
checksum: 10c0/d966f7cef9065d93671e82605bd30639ff3846b2cc3c89029a6b01898b0cc6575cf88d95e5854f9bc26fe5c02c4cefa7ff35ace4be401607cc4839ed26a116d1
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-rust@npm:4.0.2"
checksum: 10c0/628863c3fba4b4cf7a98344f36694479af56bfa6d7d2e69eb649a1683a92f4c8a2baace7b2e60b8007dce242d6d000cdfdb3af616549f80f964e8743e7803fe9
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-scala@npm:5.0.0"
checksum: 10c0/6ca476b07610b0602b8e0d4e8147418c4d6046bee2d0d7d9468fa57e84c305e93ab4a4a8eded7cbd660792bf22869c435a4f9dcfab41584ffa03f1884d27ae94
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^3.3.18":
version: 3.3.18
resolution: "@cspell/dict-software-terms@npm:3.3.18"
checksum: 10c0/24942910c6f2c9661937db82d762a13f54134d2c274ddc34b265be9786afce819789dfc4aca9a89944ccf20e1217585c1563325564c589f0de891a40031831b7
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.1.3":
version: 2.1.3
resolution: "@cspell/dict-sql@npm:2.1.3"
checksum: 10c0/2b9037e51cc471a9bd6a1a79a6cdbd109646a170b5926d5174b29bdfce0a3fd096bc2ab0b9e6d49d5114760429cfce3bf424c3a1e6a15288a361b35860797400
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-svelte@npm:1.0.2"
checksum: 10c0/bd650fd25d2ea83808a69eb2a6cb7a5b82295c3dde1c334fc54ff439287c5bf13e3293397e2c45e8b2d1b69fd133e17f4eb920b64df2571c5a399ac1e206f551
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-swift@npm:2.0.1"
checksum: 10c0/e29ffc8379d50ef9397018c25b1be05177d4ecb1e18d3b97834f9edf0306af349b5593d7d93a7f2624616c1beeb35eb1e56560d351f459b776c3dd6b2c0ac601
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.1.2":
version: 3.1.2
resolution: "@cspell/dict-typescript@npm:3.1.2"
checksum: 10c0/275838fae72d4a7fec979b1d3f95535ba21057417a3c4521b57b50d242fe0d9bb18e0db0f8e68380b9cd1753a5b7e77f202ee0a455ea0f91048652f5423df8b9
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-vue@npm:3.0.0"
checksum: 10c0/2995b912e26cf88cb6ec9728a9adc5b24a0243c001887d425b14a61ef2be22aca38fa99a84d7698d8982aef65c8db4abf583c3d916c2166b9e8d99cec80800cd
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/dynamic-import@npm:8.4.1"
dependencies:
import-meta-resolve: "npm:^4.0.0"
checksum: 10c0/c50272c35b2b767094ddcf966a560a01e99edf9dd1411e6f54875f51ae5eafbc21a3aff4f6db24529bea3e8bcd243b02fc7f8507dd01f9856982969e62c33b16
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:8.4.1":
version: 8.4.1
resolution: "@cspell/strong-weak-map@npm:8.4.1"
checksum: 10c0/54567e7d41bd54f7efc03774da63ef42de08705a74ac61914340e19d93d7c0789e88189570f381fe77ca260e1a40d7f510db5eaf5ef9af940c7f2e5f7151d61f
languageName: node
linkType: hard
"@dabh/diagnostics@npm:^2.0.2":
version: 2.0.3
resolution: "@dabh/diagnostics@npm:2.0.3"
dependencies:
colorspace: "npm:1.1.x"
enabled: "npm:2.0.x"
kuler: "npm:^2.0.0"
checksum: 10c0/a5133df8492802465ed01f2f0a5784585241a1030c362d54a602ed1839816d6c93d71dde05cf2ddb4fd0796238c19774406bd62fa2564b637907b495f52425fe
languageName: node
linkType: hard
"@discordjs/builders@npm:^1.7.0":
version: 1.7.0
resolution: "@discordjs/builders@npm:1.7.0"
dependencies:
"@discordjs/formatters": "npm:^0.3.3"
"@discordjs/util": "npm:^1.0.2"
"@sapphire/shapeshift": "npm:^3.9.3"
discord-api-types: "npm:0.37.61"
fast-deep-equal: "npm:^3.1.3"
ts-mixer: "npm:^6.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/6d2264e68fb4396daded4d33a555d0a1fb71b2e7ad8dd28e8d668391204abd889abfe90e8118b940825ebc9765164616248a551e110953a46dc4696054946f8c
languageName: node
linkType: hard
"@discordjs/collection@npm:1.5.3":
version: 1.5.3
resolution: "@discordjs/collection@npm:1.5.3"
checksum: 10c0/54338e005e9a1c6a5c91464cbcc378a5bf74410ad5b8bba1961b80d0ec8f1eb1b768ea737ad03bcb62430ea84aa5561523318b739538b334115ed775630ca42c
languageName: node
linkType: hard
"@discordjs/collection@npm:^2.0.0":
version: 2.0.0
resolution: "@discordjs/collection@npm:2.0.0"
checksum: 10c0/5cc29341935af3705e909f71f30f1514ef491c2afb4411f5972ccffa9584f10d6d1dc3463354b2af00e7c0bdf874032a7b81740bb5affe0f2eedf7eef65080cd
languageName: node
linkType: hard
"@discordjs/formatters@npm:^0.3.3":
version: 0.3.3
resolution: "@discordjs/formatters@npm:0.3.3"
dependencies:
discord-api-types: "npm:0.37.61"
checksum: 10c0/1833c2e20b87aa6ae03202502a64d5ae235ee6a25feb41786bb86b7414fac7c59e518f99f2a60b15ad713165c91e16f17b3e8024898d6a3cd3df9f3e94488cd1
languageName: node
linkType: hard
"@discordjs/rest@npm:^2.1.0":
version: 2.2.0
resolution: "@discordjs/rest@npm:2.2.0"
dependencies:
"@discordjs/collection": "npm:^2.0.0"
"@discordjs/util": "npm:^1.0.2"
"@sapphire/async-queue": "npm:^1.5.0"
"@sapphire/snowflake": "npm:^3.5.1"
"@vladfrangu/async_event_emitter": "npm:^2.2.2"
discord-api-types: "npm:0.37.61"
magic-bytes.js: "npm:^1.5.0"
tslib: "npm:^2.6.2"
undici: "npm:5.27.2"
checksum: 10c0/ceaa9f6912a88c644ab177bc3f90944b7f168bbd905253a8654125f5290f81281e355ddccfc986d060d002112a5db3039c19a42c9900636afb184975fa033cf7
languageName: node
linkType: hard
"@discordjs/util@npm:^1.0.2":
version: 1.0.2
resolution: "@discordjs/util@npm:1.0.2"
checksum: 10c0/2fbf790dc2ac9e65f53dafe814714630c094a6fad2ee7e12ebd6160aa2a3c17e0d5600454e857801adfd04db7aee3133f85aadc6eb7daa8d9bf783d5d8b551aa
languageName: node
linkType: hard
"@discordjs/ws@npm:^1.0.2":
version: 1.0.2
resolution: "@discordjs/ws@npm:1.0.2"
dependencies:
"@discordjs/collection": "npm:^2.0.0"
"@discordjs/rest": "npm:^2.1.0"
"@discordjs/util": "npm:^1.0.2"
"@sapphire/async-queue": "npm:^1.5.0"
"@types/ws": "npm:^8.5.9"
"@vladfrangu/async_event_emitter": "npm:^2.2.2"
discord-api-types: "npm:0.37.61"
tslib: "npm:^2.6.2"
ws: "npm:^8.14.2"
checksum: 10c0/84b6d5678c82048bbaa3c6dd8abe5be6ef8a2ce6c4e31b086e06f4855c627267114895ef20b9bfba9bde71ca0b6a879f2079bf566e5f1bd725fd63c83732f843
languageName: node
linkType: hard
"@ericcornelissen/bash-parser@npm:0.5.2":
version: 0.5.2
resolution: "@ericcornelissen/bash-parser@npm:0.5.2"
dependencies:
array-last: "npm:^1.1.1"
babylon: "npm:^6.9.1"
compose-function: "npm:^3.0.3"
deep-freeze: "npm:0.0.1"
filter-iterator: "npm:0.0.1"
filter-obj: "npm:^1.1.0"
has-own-property: "npm:^0.1.0"
identity-function: "npm:^1.0.0"
is-iterable: "npm:^1.1.0"
iterable-lookahead: "npm:^1.0.0"
lodash.curry: "npm:^4.1.1"
magic-string: "npm:^0.16.0"
map-obj: "npm:^2.0.0"
object-pairs: "npm:^0.1.0"
object-values: "npm:^1.0.0"
reverse-arguments: "npm:^1.0.0"
shell-quote-word: "npm:^1.0.1"
to-pascal-case: "npm:^1.0.0"
unescape-js: "npm:^1.0.5"
checksum: 10c0/0640a9203c903561ed15da4e1760d05cbb6b3c5be33864ac8596bfccddf5c974ffdd85851feff0a6bbfb475c6f17705f308ffa8a94c02c6664be22cfeaac781c
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.42.0":
version: 0.42.0
resolution: "@es-joy/jsdoccomment@npm:0.42.0"
dependencies:
comment-parser: "npm:1.4.1"
esquery: "npm:^1.5.0"
jsdoc-type-pratt-parser: "npm:~4.0.0"
checksum: 10c0/a8122762d2df3c6501a9c459e2822315a23c0078c4aeb0b40fb3c84b99e21a78e85e67f962d6b5dde5eb751792a1c67c6a170b619573db7151098a19950abe35
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/aix-ppc64@npm:0.19.12"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm64@npm:0.19.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm@npm:0.19.12"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-x64@npm:0.19.12"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-arm64@npm:0.19.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-x64@npm:0.19.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-arm64@npm:0.19.12"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-x64@npm:0.19.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-arm64@npm:0.19.12"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-arm@npm:0.19.12"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-ia32@npm:0.19.12"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-loong64@npm:0.19.12"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-mips64el@npm:0.19.12"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-ppc64@npm:0.19.12"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-riscv64@npm:0.19.12"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-s390x@npm:0.19.12"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-x64@npm:0.19.12"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/netbsd-x64@npm:0.19.12"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/openbsd-x64@npm:0.19.12"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/sunos-x64@npm:0.19.12"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/win32-arm64@npm:0.19.12"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/win32-ia32@npm:0.19.12"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/win32-x64@npm:0.19.12"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.1.2, @eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.6.2
resolution: "@eslint-community/regexpp@npm:4.6.2"
checksum: 10c0/da800788298f8419f4c4e04eaa4e3c97e7f57537e822e7b150de662e420e3d437816b863e490807bd0b00e715b0989f9d8864bf54357cbcfa84e4255b910789d
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.56.0":
version: 8.56.0
resolution: "@eslint/js@npm:8.56.0"
checksum: 10c0/60b3a1cf240e2479cec9742424224465dc50e46d781da1b7f5ef240501b2d1202c225bd456207faac4b34a64f4765833345bc4ddffd00395e1db40fa8c426f5a
languageName: node
linkType: hard
"@fastify/busboy@npm:^2.0.0":
version: 2.1.0
resolution: "@fastify/busboy@npm:2.1.0"
checksum: 10c0/7bb641080aac7cf01d88749ad331af10ba9ec3713ec07cabbe833908c75df21bd56249bb6173bdec07f5a41896b21e3689316f86684c06635da45f91ff4565a2
languageName: node
linkType: hard
"@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: 10c0/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: 10c0/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: 10c0/9dba24e59fdb4041829d92b693aacb778add3b6f612aaa9c0774f3b650c11a378cc64f042a59da85c11dae33df456580a3c36837b953541aed6ff94294f97fac
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
"@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.scandir@npm:3.0.0":
version: 3.0.0
resolution: "@nodelib/fs.scandir@npm:3.0.0"
dependencies:
"@nodelib/fs.stat": "npm:3.0.0"
run-parallel: "npm:^1.2.0"
checksum: 10c0/ff557a1d4dc779e41dd1108f92690a03bc3f0debd26a2c4d890fa3fe606646c2e6d958a9ccb3e59f2fd4751eed405151b7f1ab18947b5909ad67b64e155bc760
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.stat@npm:3.0.0":
version: 3.0.0
resolution: "@nodelib/fs.stat@npm:3.0.0"
checksum: 10c0/c798b6b07a3d93e29a98699dbda3380d28fe05194b2396b2d02670249691fe2758e0a7a32f1f760dabcbde05f3e0b2822c4b94e40c6c27b2db914c806e162687
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:2.0.0":
version: 2.0.0
resolution: "@nodelib/fs.walk@npm:2.0.0"
dependencies:
"@nodelib/fs.scandir": "npm:3.0.0"
fastq: "npm:^1.15.0"
checksum: 10c0/e490143c4596c89797f7c375104aeb0409a68492cd92c9344fcf2408a5a876580b56282b3d960d7f7d1346a41fd29cbb588707ac8dcc0b8d048ab38e1d2709cf
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/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e
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"