-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathyarn.lock
More file actions
4723 lines (4258 loc) · 170 KB
/
yarn.lock
File metadata and controls
4723 lines (4258 loc) · 170 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.980.0":
version: 3.980.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.980.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.5"
"@aws-sdk/credential-provider-node": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.5"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.980.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.3"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.12"
"@smithy/middleware-retry": "npm:^4.4.29"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.28"
"@smithy/util-defaults-mode-node": "npm:^4.2.31"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/37c92459a27dfe60725511fdf78f0542e024f4f7fc3a5de9a2dbdab64a675fd9b30ae8067b2d3207445808e043a2435a17466f285707371bbb3d65cb78ef8e25
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/2cfb5034ecd56b4ce277a7e697ad0466a4843859460d836578d2ca9fc965b8c786a72667c52a2680042a4ba1b3c8e83b1f7f7247d55ea60882b5233768150a68
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.990.0":
version: 3.990.0
resolution: "@aws-sdk/client-sso@npm:3.990.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.990.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/d7a2188ea9050376aec1d8b4fb8346c62861c21a7f900196bc81d2a35a8a01e3824b6d38e8577d9affb9cef14a7e38166d03c4feb25d18af1740b719c2329499
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.10, @aws-sdk/core@npm:^3.973.5":
version: 3.973.10
resolution: "@aws-sdk/core@npm:3.973.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/xml-builder": "npm:^3.972.4"
"@smithy/core": "npm:^3.23.0"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/813becbf1c23654880272ec94fb9624ba846008c01aeb3b8008858fc280aa5549fd1c1df5f3674477e783c2d54b138857b2c9ea4c5609e8d83c74312f6436aa9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.3"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.980.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/fb9c183ff2d961cb2b24b6129ba593bec19218973a6d284a7a43bb724b71708eb0105d6b1aa88a1562e2fcede25eb92ae73ec1e566b319fee6d2b8487a980e41
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/credential-provider-env@npm:3.972.8"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/409b6fe99df59a0cc060f9b2bf0ada40989d530932305da147bbf4431e5aecefd963e47d7fdd0694ef06366bb1949a7f8e6581f9ca5dc4409b641dd913926754
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/credential-provider-http@npm:3.972.10"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-stream": "npm:^4.5.12"
tslib: "npm:^2.6.2"
checksum: 10/eb6532f969ada9e4a47c4f12e430c5e49b2388868e2090aeb7e2ca15027ed2632f1872f08f290d07c96a9eb233e9eddd44263c45197378ad5b8eeb5b5d573972
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.8"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-env": "npm:^3.972.8"
"@aws-sdk/credential-provider-http": "npm:^3.972.10"
"@aws-sdk/credential-provider-login": "npm:^3.972.8"
"@aws-sdk/credential-provider-process": "npm:^3.972.8"
"@aws-sdk/credential-provider-sso": "npm:^3.972.8"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.8"
"@aws-sdk/nested-clients": "npm:3.990.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/4027615d030e6e908180068af310dd5ed2d77ce0d6e2110748d19e98c7772b5c27b9440eff2ec2808c0a7a68245d2f0399f9c7a733c322f7533dc70ce68879e3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/credential-provider-login@npm:3.972.8"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/nested-clients": "npm:3.990.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/50a2d7d805db9cb9a473f88a24b59648db890d27b26a8789fe099f72e35eb967da6bd51aa35df7916d4cb32255ee4b7b0e9b716b7929d30695ddae763c44dca5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.4, @aws-sdk/credential-provider-node@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/credential-provider-node@npm:3.972.9"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.8"
"@aws-sdk/credential-provider-http": "npm:^3.972.10"
"@aws-sdk/credential-provider-ini": "npm:^3.972.8"
"@aws-sdk/credential-provider-process": "npm:^3.972.8"
"@aws-sdk/credential-provider-sso": "npm:^3.972.8"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.8"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/c47a07303fd237daa52ba184fa1528388910b805e29302c399f8dedd37ee29367e698e571c6d56adbcaa55eb5560f082b70bbc0a9d751fdfad0af829d8add881
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/credential-provider-process@npm:3.972.8"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/e1598f9b27fc4a5984bf56ff91a4e0fe0b27a69ae601c9dc29c43a70f5330df24811649333572ad5a2df674975d786125c6753b21b118d3a4a442c8e409db831
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.8"
dependencies:
"@aws-sdk/client-sso": "npm:3.990.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/token-providers": "npm:3.990.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/3b31a23e2577b874d29e773c643e0a475b13b00df6ba8a1a462d07dd732c4fd64f3d1f33510bc9e15b8df0649603ff60131acb0d3d97caeefa218eb46b27ee06
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.8"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/nested-clients": "npm:3.990.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/df5bc8d8e0aabb274fab9da7e0f46ce4416436fa4fa93cd6f8519d345b1a8ae49f33bac5315b17e62b053e8ad5bfaf8166fe3ceec30ccab1f68cef469f49e053
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.186.0":
version: 3.992.0
resolution: "@aws-sdk/credential-providers@npm:3.992.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.992.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.3"
"@aws-sdk/credential-provider-env": "npm:^3.972.8"
"@aws-sdk/credential-provider-http": "npm:^3.972.10"
"@aws-sdk/credential-provider-ini": "npm:^3.972.8"
"@aws-sdk/credential-provider-login": "npm:^3.972.8"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/credential-provider-process": "npm:^3.972.8"
"@aws-sdk/credential-provider-sso": "npm:^3.972.8"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.8"
"@aws-sdk/nested-clients": "npm:3.992.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/ae6aee7c8a36266d4e7d847a7471d0d12c37d7198f6f00745211fddb8f1b0c1767ea4b38594d3b5dd5a77597443cdd281ba30aedbb5deb0cf42d9c56eb110cd4
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-host-header@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/14b6e32f32f1c8b0e66a396b092785d3d597b27df696ed2daf8310d2a463416bcc89480043b6a5083698403fc85904caf5ebbcb0fbd12f89f05dbf10878d2cc7
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-logger@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/abda3a05b73a2056fbe0d2aa139ee5ad590733d7ef96a18c2ca92b314795ba3fe83216668bd731b8a40f7951b1147eb1ed3566c1b33ee9b8ae9994089596e3b8
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/8308e8eb1344669bca86613f160768dd39640ca3ed37730b579a6f71be14f6deed7acdb4f3d195a7f8c5a130afb82411dc18c8a361f7dc1f769c9dc240aaa16f
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.10, @aws-sdk/middleware-user-agent@npm:^3.972.5":
version: 3.972.10
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.10"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.990.0"
"@smithy/core": "npm:^3.23.0"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/8aa79c0287c3e5d4e2c3acb1d15d219b2f568b1e58ef0630f1434311b0df1a75da508241c10820ee45bbe9398872909f9f84ba8b9e040bf3ed4fd99a8650fb81
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.990.0":
version: 3.990.0
resolution: "@aws-sdk/nested-clients@npm:3.990.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.990.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/fd365ea0fef12136633bdb3de9c674ad94b820b95771013f0ed903d6bef7d77fbeec2ac28b8d83ef58428bb653a190e68a102f81f55587a7506ec3068113b61c
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/nested-clients@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/1f3a45015d595a60952d0b5057cd2dba624407a02e0f367bffe0146dd48a56ac91729fca11182d9d75fe65eb25b7fbb674fea754638bc95b15b78afe4fbbb005
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/region-config-resolver@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/8512a573492a990b028d9f0058d6034d54fb186af20d1da9529ac3d5f8d435c43fa16ef7d3dc0b3ffa679bb90529b55b0d00619160a3549839a136cc698fefb8
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.990.0":
version: 3.990.0
resolution: "@aws-sdk/token-providers@npm:3.990.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/nested-clients": "npm:3.990.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/b3d74d7ad4a88baf5752fa5938695d7edfb67777d7b920df093827a790fb801384f949d0f9c6098427212eef4f577e2a46165046fd518ad34a81b415e5db16c8
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.1":
version: 3.973.1
resolution: "@aws-sdk/types@npm:3.973.1"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/9cdcb457d6110a88a547fe26922d43450bf7685b26034e935c72c1717de90a22541f298ce4e76fde564d3af11908928b1584b856085dcb175f9bb08853d1a575
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.980.0":
version: 3.980.0
resolution: "@aws-sdk/util-endpoints@npm:3.980.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10/a61ec475660cc736960663f756970e07246a7684b762830e8b17ec0873dc5a4f9135fa6104219a2c790d22f30d36369ee19ade124b396d6f09a1139a878e656e
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.990.0":
version: 3.990.0
resolution: "@aws-sdk/util-endpoints@npm:3.990.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10/8ee421d885161b420dcafa7625ab77aa46fd96234b5fbde538fbcfcaec7268fb4772377b647aeed4ac97efff55618ad51dd1589eb710b1e0e7c03757975f4354
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/util-endpoints@npm:3.992.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10/78266cf95171dc1e0214e791979d1ed1118e883e0c903050c02746b1426174385f754e028ab0d99568aeb0c4f9ff8979b42bc570b1bbd594bc501db13a96d0e0
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.4
resolution: "@aws-sdk/util-locate-window@npm:3.965.4"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/5b41a026b8600549805a368143f2c4fb79deb60fb8a82064c76a0286bda5ef629c2ea0e5eb6b4d038f90bf2a5cf46cb098232e84c9dc342c15c7206543fbb8b1
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/fb51d6ae56ba2a69a1239fc1f83a739c468c78ff678cf336b923273237e861b8ff4bfb296b7a250f5980dc2ef6741492a802432243313daf9a03a5332199f7aa
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.972.3, @aws-sdk/util-user-agent-node@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/util-user-agent-node@npm:3.972.8"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/dd814827b029c2aa1a78087d4ab1e75d6b0b9ba0daf72fddf96997aa9140d5f00d16bcb8587bbee8f4171211ccac82cb291f4a537b7140e19f695dbbbc43feab
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.4":
version: 3.972.4
resolution: "@aws-sdk/xml-builder@npm:3.972.4"
dependencies:
"@smithy/types": "npm:^4.12.0"
fast-xml-parser: "npm:5.3.4"
tslib: "npm:^2.6.2"
checksum: 10/f0a1a9b3344a33a619d76a3597d23b28efe41c61e4858b7f65e1d5e40f0290ddc1f45961b3e2fa7ed41a71a29e1f7d91a9f64c0274280f5f1004cb1be9a03e11
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.3
resolution: "@aws/lambda-invoke-store@npm:0.2.3"
checksum: 10/d0efa8ca73b2d8dc0bf634525eefa1b72cda85f5d47366264849343a6f2860cfa5c52b7f766a16b78da8406bbd3ee975da3abb1dbe38183f8af95413eafeb256
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10/d243f0b1e475f5953ae452f70c0b4bd47a106df59733631b9ae36fb9ad1ae068c3a11d936ed22117084ec7439e843a4b75700922b507aac723ad84a257ae94f9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10/8e5d9b0133702cfacc7f368bf792f0f8ac0483794877c6dca5fcb73810ee138e27527701826fb58a40a004f3a5ec0a2f3c3dd5e326d262530b119918f3132ba7
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.25.9
resolution: "@babel/highlight@npm:7.25.9"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/0d165283dd4eb312292cea8fec3ae0d376874b1885f476014f0136784ed5b564b2c2ba2d270587ed546ee92505056dab56493f7960c01c4e6394d71d1b2e7db6
languageName: node
linkType: hard
"@devraelfreeze/discordjs-pagination@npm:^2.7.4":
version: 2.7.6
resolution: "@devraelfreeze/discordjs-pagination@npm:2.7.6"
dependencies:
discord.js: "npm:^14.9.0"
checksum: 10/0279f7f46aab89348e9fbd3dd570ab8f62fd7e3143eceffa89604572c7c324b39a8bd8043cb8b76aefdc4507a4c8be230b2656df9c2bca4ab2fab9270ce323d8
languageName: node
linkType: hard
"@discordjs/builders@npm:^1.13.0":
version: 1.13.1
resolution: "@discordjs/builders@npm:1.13.1"
dependencies:
"@discordjs/formatters": "npm:^0.6.2"
"@discordjs/util": "npm:^1.2.0"
"@sapphire/shapeshift": "npm:^4.0.0"
discord-api-types: "npm:^0.38.33"
fast-deep-equal: "npm:^3.1.3"
ts-mixer: "npm:^6.0.4"
tslib: "npm:^2.6.3"
checksum: 10/3898d089810e4e4fd2d559c32072bb4963efcdc73d22a8e5cc8b24a61bf21511ced52e7aaab5e2fe21256f6c3f974fcffd996b7e74abcdc2b38de02aaf05adb3
languageName: node
linkType: hard
"@discordjs/collection@npm:1.5.3":
version: 1.5.3
resolution: "@discordjs/collection@npm:1.5.3"
checksum: 10/770d0576612555c848858ead2a6c6242252f51ae3a7a6fdcc4986ceeb330ed8cffb81bcd1819e1ef11cce946cb9e707791926e757985cc2e081e984012c08dad
languageName: node
linkType: hard
"@discordjs/collection@npm:^2.1.0, @discordjs/collection@npm:^2.1.1":
version: 2.1.1
resolution: "@discordjs/collection@npm:2.1.1"
checksum: 10/2bf815120929e20bdcc94a7d0a9c0e567ef859b8cc502f5ecddaeae31ba3457711df708ab200ac6e86ffccab31f796192860f8ad609a9ddc2cdd7ffe5825a266
languageName: node
linkType: hard
"@discordjs/formatters@npm:^0.6.2":
version: 0.6.2
resolution: "@discordjs/formatters@npm:0.6.2"
dependencies:
discord-api-types: "npm:^0.38.33"
checksum: 10/66ffaef2da02780b285ffbf9a609138c121aba6f8e55263a0347cb5d2e6103c9fe9d759f4375b2a9b0c34a7a4370fd03e84daf2d9f362d0f53281abf007caa93
languageName: node
linkType: hard
"@discordjs/rest@npm:^2.5.1, @discordjs/rest@npm:^2.6.0":
version: 2.6.0
resolution: "@discordjs/rest@npm:2.6.0"
dependencies:
"@discordjs/collection": "npm:^2.1.1"
"@discordjs/util": "npm:^1.1.1"
"@sapphire/async-queue": "npm:^1.5.3"
"@sapphire/snowflake": "npm:^3.5.3"
"@vladfrangu/async_event_emitter": "npm:^2.4.6"
discord-api-types: "npm:^0.38.16"
magic-bytes.js: "npm:^1.10.0"
tslib: "npm:^2.6.3"
undici: "npm:6.21.3"
checksum: 10/dccfb8d086e3cd32249492e480775d8a9badb1b84ca7eecf0ca853ffbb7b167b3438e16ebed1be676ca953537d672fcef5c3ea4f49c837c4be836a3c6f39984c
languageName: node
linkType: hard
"@discordjs/util@npm:^1.1.0, @discordjs/util@npm:^1.1.1, @discordjs/util@npm:^1.2.0":
version: 1.2.0
resolution: "@discordjs/util@npm:1.2.0"
dependencies:
discord-api-types: "npm:^0.38.33"
checksum: 10/d8a6a24991d1294c0b832b72de42ba936a1c73ca0eba885725f96d331a6a9f65204bc8567e8b5eb910bca064d5ee969dc0c37824c354f775992463a2b67e0fe7
languageName: node
linkType: hard
"@discordjs/ws@npm:^1.2.3":
version: 1.2.3
resolution: "@discordjs/ws@npm:1.2.3"
dependencies:
"@discordjs/collection": "npm:^2.1.0"
"@discordjs/rest": "npm:^2.5.1"
"@discordjs/util": "npm:^1.1.0"
"@sapphire/async-queue": "npm:^1.5.2"
"@types/ws": "npm:^8.5.10"
"@vladfrangu/async_event_emitter": "npm:^2.2.4"
discord-api-types: "npm:^0.38.1"
tslib: "npm:^2.6.2"
ws: "npm:^8.17.0"
checksum: 10/35e322c398ea95127a47440810c1def0e55e90ab86e2dc59cedb5402df1485d59d86ae55e29514346c4437b1619c904265d187f93375c6743cd12a3558e7abda
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.4.0":
version: 4.9.1
resolution: "@eslint-community/eslint-utils@npm:4.9.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/863b5467868551c9ae34d03eefe634633d08f623fc7b19d860f8f26eb6f303c1a5934253124163bee96181e45ed22bf27473dccc295937c3078493a4a8c9eddd
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1":
version: 4.12.2
resolution: "@eslint-community/regexpp@npm:4.12.2"
checksum: 10/049b280fddf71dd325514e0a520024969431dc3a8b02fa77476e6820e9122f28ab4c9168c11821f91a27982d2453bcd7a66193356ea84e84fb7c8d793be1ba0c
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^0.4.3":
version: 0.4.3
resolution: "@eslint/eslintrc@npm:0.4.3"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.1.1"
espree: "npm:^7.3.0"
globals: "npm:^13.9.0"
ignore: "npm:^4.0.6"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^3.13.1"
minimatch: "npm:^3.0.4"
strip-json-comments: "npm:^3.1.1"
checksum: 10/d41857d255e75870a523b9d88a0367e576cd51acb87732dc5f1ec1857efa56ef82f1c46873fab1fc6944aafaf0a6902ce3eb47c8a55abf8de135558f6f5405f5
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.5.0":
version: 0.5.0
resolution: "@humanwhocodes/config-array@npm:0.5.0"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.0"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.4"
checksum: 10/478ad89d87e6a4aa7ea5626024f24efe0ec695e8d0393e22e5c495e1070fd562220ab74b5cd7a428882eec751126ec4e4e5883c2b1ec1740eb1af2bf4f3329f0
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: 10/b48a8f87fcd5fdc4ac60a31a8bf710d19cc64556050575e6a35a4a48a8543cf8cde1598a65640ff2cdfbfd165b38f9db4fa3782bea7848eb585cc3db824002e6
languageName: node
linkType: hard
"@isaacs/cliui@npm:^9.0.0":
version: 9.0.0
resolution: "@isaacs/cliui@npm:9.0.0"
checksum: 10/8ea3d1009fd29071419209bb91ede20cf27e6e2a1630c5e0702d8b3f47f9e1a3f1c5a587fa2cb96d22d18219790327df49db1bcced573346bbaf4577cf46b643
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10/4412e9e6713c89c1e66d80bb0bb5a2a93192f10477623a27d08f228ba0316bb880affabc5bfe7f838f58a34d26c2c190da726e576cdfc18c49a72e89adabdcf5
languageName: node
linkType: hard
"@mongodb-js/saslprep@npm:^1.1.0":
version: 1.4.6
resolution: "@mongodb-js/saslprep@npm:1.4.6"
dependencies:
sparse-bitfield: "npm:^3.0.3"
checksum: 10/c648c94fc7584082dba24eaa410b06526a1b0d356b5de6c9e733e5446608b32dfb4980cd431d313935be1fce427c922ab0cd30e6929b2f260fbd5769f1281f69
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10/6ab2a9b8a1d67b067922c36f259e3b3dfd6b97b219c540877a4944549a4d49ea5ceba5663905ab5289682f1f3c15ff441d02f0447f620a42e1cb5e1937174d4b
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10/012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10/40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0
languageName: node
linkType: hard
"@npmcli/agent@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/agent@npm:4.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^11.2.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10/1a81573becc60515031accc696e6405e9b894e65c12b98ef4aeee03b5617c41948633159dbf6caf5dde5b47367eeb749bdc7b7dfb21960930a9060a935c6f636
languageName: node
linkType: hard
"@npmcli/fs@npm:^5.0.0":
version: 5.0.0
resolution: "@npmcli/fs@npm:5.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10/4935c7719d17830d0f9fa46c50be17b2a3c945cec61760f6d0909bce47677c42e1810ca673305890f9e84f008ec4d8e841182f371e42100a8159d15f22249208
languageName: node
linkType: hard
"@sapphire/async-queue@npm:^1.5.2, @sapphire/async-queue@npm:^1.5.3":
version: 1.5.5
resolution: "@sapphire/async-queue@npm:1.5.5"
checksum: 10/26e6136de6dde4053e69afe7103fc8d71e9b780100a2b00de7d74eb009263cb6b1d06cf92b75a699c4c05804b7c7bc72190814c3709a60cde291ce29be0e0c36
languageName: node
linkType: hard
"@sapphire/shapeshift@npm:^4.0.0":
version: 4.0.0
resolution: "@sapphire/shapeshift@npm:4.0.0"
dependencies:
fast-deep-equal: "npm:^3.1.3"
lodash: "npm:^4.17.21"
checksum: 10/71437388066ca19a521f94f3066633010a5b3e24d9da1c07664389b9b02635af502b81236af92f24bb4c0f312a93b0f4ac544391afd464c2e98e6f93e2a4ded0
languageName: node
linkType: hard
"@sapphire/snowflake@npm:3.5.3":
version: 3.5.3
resolution: "@sapphire/snowflake@npm:3.5.3"
checksum: 10/f306626f76a6e9bdc7de9130c1baf7ddcd8681d7d03b2ab6f2404081f71c94085d4001e8a62ae2c2372b3b54d2d52ec21d43695f2c73fb101caabc2d3bf524aa
languageName: node
linkType: hard
"@sapphire/snowflake@npm:^3.5.3":
version: 3.5.5
resolution: "@sapphire/snowflake@npm:3.5.5"
checksum: 10/ccffcf71ebcad6762fd663ec7b6e176c7c3cc3ea03cae5b2eed8cc2a9a3645112b68f8f6da141341e2868dfd8ef833bfe93cdad91ab29b9d68e37ee87e5b1c4c
languageName: node
linkType: hard
"@smithy/abort-controller@npm:^4.2.8":
version: 4.2.8
resolution: "@smithy/abort-controller@npm:4.2.8"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10/17d5beb1c86227ced459e6abbb03d6a3f205bd6f535a4bca2a10e9b4838292c533be78dbf39cdbf1f8f4af0c2fc3fec2f3081b3d4a1bf4e12a2a2aa52e298173
languageName: node
linkType: hard
"@smithy/config-resolver@npm:^4.4.6":
version: 4.4.6
resolution: "@smithy/config-resolver@npm:4.4.6"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10/6440612a9e9a29b74f3420244f3e416d2c2ff0ed4956af323cd39eb4b8efe22a01e791e8cf465c5b0230a778a825290d6b935e3c6d4ca5a92336b48a2b2b4dbd
languageName: node
linkType: hard
"@smithy/core@npm:^3.22.0, @smithy/core@npm:^3.23.0, @smithy/core@npm:^3.23.2":
version: 3.23.2
resolution: "@smithy/core@npm:3.23.2"
dependencies:
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-stream": "npm:^4.5.12"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10/1fde51d7f2bb9ed13a9b711ffc3739172e7543e45ff826f306141322ee2db2c5beb0be4abe648c4cdbd1aaec59d726d2965de9a85032750f46e33e7c4663e753
languageName: node
linkType: hard
"@smithy/credential-provider-imds@npm:^4.2.8":
version: 4.2.8
resolution: "@smithy/credential-provider-imds@npm:4.2.8"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10/f0d7abbe28a8244cacf65a453f132e38902e8e912b284b8371165b94ce6ae183acedc430d84ab466ef2d6930867f44d6aeaa4bb877e53a06a8f2dbd42c145d69
languageName: node
linkType: hard
"@smithy/fetch-http-handler@npm:^5.3.9":
version: 5.3.9
resolution: "@smithy/fetch-http-handler@npm:5.3.9"