-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathyarn.lock
More file actions
11071 lines (9999 loc) · 387 KB
/
yarn.lock
File metadata and controls
11071 lines (9999 loc) · 387 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
"@adobe/css-tools@npm:^4.4.0":
version: 4.4.1
resolution: "@adobe/css-tools@npm:4.4.1"
checksum: 10/a0ea05517308593a52728936a833b1075c4cf1a6b68baaea817063f34e75faa1dba1209dd285003c4f8072804227dfa563e7e903f72ae2d39cb520aaee3f4bcc
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@asamuzakjp/css-color@npm:^3.2.0":
version: 3.2.0
resolution: "@asamuzakjp/css-color@npm:3.2.0"
dependencies:
"@csstools/css-calc": "npm:^2.1.3"
"@csstools/css-color-parser": "npm:^3.0.9"
"@csstools/css-parser-algorithms": "npm:^3.0.4"
"@csstools/css-tokenizer": "npm:^3.0.3"
lru-cache: "npm:^10.4.3"
checksum: 10/870f661460173174fef8bfebea0799ba26566f3aa7b307e5adabb7aae84fed2da68e40080104ed0c83b43c5be632ee409e65396af13bfe948a3ef4c2c729ecd9
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@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/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@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/08bd1db17d7c772fa6e34b38a360ce77ad041164743113eefa8343c2af917a419697daf090c5854129ef19f3a9673ed1fd8446e03eb32c8ed52d2cc409b0dee7
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@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/239f4c59cce9abd33c01117b10553fbef868a063e74faf17edb798c250d759a2578841efa2837e5e51854f52ef57dbc40780b073cae20f89ebed6a8cc7fa06f1
languageName: node
linkType: hard
"@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, @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.1004.0":
version: 3.1004.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.1004.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/credential-provider-node": "npm:^3.972.18"
"@aws-sdk/middleware-host-header": "npm:^3.972.7"
"@aws-sdk/middleware-logger": "npm:^3.972.7"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.19"
"@aws-sdk/region-config-resolver": "npm:^3.972.7"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.7"
"@aws-sdk/util-user-agent-node": "npm:^3.973.4"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/hash-node": "npm:^4.2.11"
"@smithy/invalid-dependency": "npm:^4.2.11"
"@smithy/middleware-content-length": "npm:^4.2.11"
"@smithy/middleware-endpoint": "npm:^4.4.22"
"@smithy/middleware-retry": "npm:^4.4.39"
"@smithy/middleware-serde": "npm:^4.2.12"
"@smithy/middleware-stack": "npm:^4.2.11"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.38"
"@smithy/util-defaults-mode-node": "npm:^4.2.41"
"@smithy/util-endpoints": "npm:^3.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-retry": "npm:^4.2.11"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/8e5a2d232515f82d8e7f4333758c2c90d5b31622a2adfe1f29c34a481d416b1b6a949c4ea1e2de94894cd1e4c8e3e18dfd0a6c700b0eeea830028c0445b62cdb
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:^3.1004.0":
version: 3.1004.0
resolution: "@aws-sdk/client-dynamodb@npm:3.1004.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/credential-provider-node": "npm:^3.972.18"
"@aws-sdk/dynamodb-codec": "npm:^3.972.19"
"@aws-sdk/middleware-endpoint-discovery": "npm:^3.972.7"
"@aws-sdk/middleware-host-header": "npm:^3.972.7"
"@aws-sdk/middleware-logger": "npm:^3.972.7"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.19"
"@aws-sdk/region-config-resolver": "npm:^3.972.7"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.7"
"@aws-sdk/util-user-agent-node": "npm:^3.973.4"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/hash-node": "npm:^4.2.11"
"@smithy/invalid-dependency": "npm:^4.2.11"
"@smithy/middleware-content-length": "npm:^4.2.11"
"@smithy/middleware-endpoint": "npm:^4.4.22"
"@smithy/middleware-retry": "npm:^4.4.39"
"@smithy/middleware-serde": "npm:^4.2.12"
"@smithy/middleware-stack": "npm:^4.2.11"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.38"
"@smithy/util-defaults-mode-node": "npm:^4.2.41"
"@smithy/util-endpoints": "npm:^3.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-retry": "npm:^4.2.11"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.11"
tslib: "npm:^2.6.2"
checksum: 10/d2e7d354584644e511c3ed227b61fff76bcd6f18b1f4ce7d726df7772522041bf447b6e5e45a64cf6369a41ed3f2cc6a83a7691019fe09f9c3612e1c0f9e2e1b
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.1004.0":
version: 3.1004.0
resolution: "@aws-sdk/client-s3@npm:3.1004.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/credential-provider-node": "npm:^3.972.18"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.7"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.7"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.973.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.7"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.7"
"@aws-sdk/middleware-logger": "npm:^3.972.7"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.7"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.18"
"@aws-sdk/middleware-ssec": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.19"
"@aws-sdk/region-config-resolver": "npm:^3.972.7"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.6"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.7"
"@aws-sdk/util-user-agent-node": "npm:^3.973.4"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/eventstream-serde-browser": "npm:^4.2.11"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.11"
"@smithy/eventstream-serde-node": "npm:^4.2.11"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/hash-blob-browser": "npm:^4.2.12"
"@smithy/hash-node": "npm:^4.2.11"
"@smithy/hash-stream-node": "npm:^4.2.11"
"@smithy/invalid-dependency": "npm:^4.2.11"
"@smithy/md5-js": "npm:^4.2.11"
"@smithy/middleware-content-length": "npm:^4.2.11"
"@smithy/middleware-endpoint": "npm:^4.4.22"
"@smithy/middleware-retry": "npm:^4.4.39"
"@smithy/middleware-serde": "npm:^4.2.12"
"@smithy/middleware-stack": "npm:^4.2.11"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.38"
"@smithy/util-defaults-mode-node": "npm:^4.2.41"
"@smithy/util-endpoints": "npm:^3.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-retry": "npm:^4.2.11"
"@smithy/util-stream": "npm:^4.5.17"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.11"
tslib: "npm:^2.6.2"
checksum: 10/8c715837ab09193276f08bbacfe1f971727a2023c48e10f5b3f2feecdd0de3daecdff03b6dcb2a9eb5e2ce0a33b589ca502915a1952eaab56ce9b148f4f85d41
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:^3.1004.0":
version: 3.1004.0
resolution: "@aws-sdk/client-sts@npm:3.1004.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/credential-provider-node": "npm:^3.972.18"
"@aws-sdk/middleware-host-header": "npm:^3.972.7"
"@aws-sdk/middleware-logger": "npm:^3.972.7"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.19"
"@aws-sdk/region-config-resolver": "npm:^3.972.7"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.7"
"@aws-sdk/util-user-agent-node": "npm:^3.973.4"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/hash-node": "npm:^4.2.11"
"@smithy/invalid-dependency": "npm:^4.2.11"
"@smithy/middleware-content-length": "npm:^4.2.11"
"@smithy/middleware-endpoint": "npm:^4.4.22"
"@smithy/middleware-retry": "npm:^4.4.39"
"@smithy/middleware-serde": "npm:^4.2.12"
"@smithy/middleware-stack": "npm:^4.2.11"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.38"
"@smithy/util-defaults-mode-node": "npm:^4.2.41"
"@smithy/util-endpoints": "npm:^3.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-retry": "npm:^4.2.11"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/7c86598c2a74e2f6a540dbc1c80dece06a36c5c93b1e82c92663b2ddb0669b25b335cbddff0ebea985dcd3efc2848fa70797bd8c59d61bb1d95d96550581b49c
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.18":
version: 3.973.18
resolution: "@aws-sdk/core@npm:3.973.18"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/xml-builder": "npm:^3.972.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/signature-v4": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/5388213061c700bf7c43875e70ec5c985b3c004a528e18fd164f4c7f156ca94054ec8b55039ea5931bd576b3bff027830de7dbec0fa3e0de49d0f7c6a1f42080
languageName: node
linkType: hard
"@aws-sdk/crc64-nvme@npm:^3.972.4":
version: 3.972.4
resolution: "@aws-sdk/crc64-nvme@npm:3.972.4"
dependencies:
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/2f383f4ee7437f2709bfbf6fbf2e0b4bf72c89e093294302645051a080a58e8907034c487fd80705769813615740930bfb16e723a8c2b85c20b80366c7125dd1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.10"
dependencies:
"@aws-sdk/nested-clients": "npm:^3.996.7"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/3f8c6c7ece36492fd791c6453ac9a0e7aaba8f046e47aca6f38502da5fd24ef6e960531efee1123f111b4ca20d93b19d2e33ca58f27237036831ace0f27318ac
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-env@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/700e3dba761f9d26efd3f2843ab85b27b0eaa36c136d852d0c6af09bcfc0969a5187a849a159667ea4d42ac2e1c13cbdc89b72020b3ef5c2c945658690c06d32
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.18":
version: 3.972.18
resolution: "@aws-sdk/credential-provider-http@npm:3.972.18"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-stream": "npm:^4.5.17"
tslib: "npm:^2.6.2"
checksum: 10/7d869b42b33fc838406681535d8bf36716e476ea6a6d1c478a047fe68d4badae0452b7d031cb6f9c2db68c72b249959eb13f24aac7a37b7ce2d3591af77b1c75
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.17":
version: 3.972.17
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.17"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/credential-provider-env": "npm:^3.972.16"
"@aws-sdk/credential-provider-http": "npm:^3.972.18"
"@aws-sdk/credential-provider-login": "npm:^3.972.17"
"@aws-sdk/credential-provider-process": "npm:^3.972.16"
"@aws-sdk/credential-provider-sso": "npm:^3.972.17"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.17"
"@aws-sdk/nested-clients": "npm:^3.996.7"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/credential-provider-imds": "npm:^4.2.11"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/4a3f105964bca5097fc330bc199b3d52da9ee97c4f8c9d50c90811df2af1765a53120a8ca0b064da1157d3b6ee9f9756658cb704e69a885d792ad95f6812902b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.17":
version: 3.972.17
resolution: "@aws-sdk/credential-provider-login@npm:3.972.17"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.7"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/7c912381bdfab92ca7f8e85d5c951f5fc65c4ec4597ba10ea75de28904c2f16b1cd5a75631eebb3695f6d9512c83f1304f10d86fb592969fa9c5f35b12280797
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.18":
version: 3.972.18
resolution: "@aws-sdk/credential-provider-node@npm:3.972.18"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.16"
"@aws-sdk/credential-provider-http": "npm:^3.972.18"
"@aws-sdk/credential-provider-ini": "npm:^3.972.17"
"@aws-sdk/credential-provider-process": "npm:^3.972.16"
"@aws-sdk/credential-provider-sso": "npm:^3.972.17"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.17"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/credential-provider-imds": "npm:^4.2.11"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/78d23847049b84e7c6f5124f965677a127b1554dbbbbf0ddb5f4769847500360005b9f5abef97793688a305fa1081bd54b68c24891bd91d386c427a73025d93b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.16":
version: 3.972.16
resolution: "@aws-sdk/credential-provider-process@npm:3.972.16"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/c844f5bc38878e0927be969ef28ca7514a3fd5a3c69f1d907cf040655d8db66a5444370c27fc70a11ba563e08c6620710d010d01eac9d12191d2fc491920b120
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.17":
version: 3.972.17
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.17"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.7"
"@aws-sdk/token-providers": "npm:3.1004.0"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/c8e7b9bb82d6fdd1a1d042c1d9427183ee6556659b8eaad926d4cabb46204d8e4d7cc097448e9c6097294942de99c8fc75a4abae6f6bc4f8a621ff0d9786f3db
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.17":
version: 3.972.17
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.17"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.7"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/1eba45e322aa21646d496de736569a2a97306019e51da550602c0b58de0bb75c4ebfe4e5bcac9a34e0c6d879d13d79b653433bd8923b8b785f12e8e52e432fe4
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.1004.0":
version: 3.1004.0
resolution: "@aws-sdk/credential-providers@npm:3.1004.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.1004.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.10"
"@aws-sdk/credential-provider-env": "npm:^3.972.16"
"@aws-sdk/credential-provider-http": "npm:^3.972.18"
"@aws-sdk/credential-provider-ini": "npm:^3.972.17"
"@aws-sdk/credential-provider-login": "npm:^3.972.17"
"@aws-sdk/credential-provider-node": "npm:^3.972.18"
"@aws-sdk/credential-provider-process": "npm:^3.972.16"
"@aws-sdk/credential-provider-sso": "npm:^3.972.17"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.17"
"@aws-sdk/nested-clients": "npm:^3.996.7"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/credential-provider-imds": "npm:^4.2.11"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/03afb96df9e50a6bd51c623662a2ccb336be77f73ce89198554b2351d64bccdf91bc86ab84be3a82f0f22c946f12f5cfd2ef4b9360f0fb3b820bfe548012e3b5
languageName: node
linkType: hard
"@aws-sdk/dynamodb-codec@npm:^3.972.19":
version: 3.972.19
resolution: "@aws-sdk/dynamodb-codec@npm:3.972.19"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@smithy/core": "npm:^3.23.8"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-base64": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10/0869174ea98d904a8a448c2974f86e955ace4d790dcce86a6fe7a8ea427385a247e6c3495f1b208b72cd34761697eee941cb04cae8394b0d2cf0d50806d3b20c
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:^3.972.4":
version: 3.972.4
resolution: "@aws-sdk/endpoint-cache@npm:3.972.4"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10/71441cf82bb8a9d3f3b65f0a22c9d1390c62b07dcde4e53f5a892a2e364a96529050c44aebb35ed9f28d86a0b8bf2324a9c00619555c8d1130b684ef4274050f
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-config-provider": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/79b40fb636f6a6274d9017f543cbbbb6fb62c5a407a7af2045faefa9879fb6c3e26a72fd4528f92dc3327c944b6ba06d63a2192b4d3899b088d14f252cb5e6b8
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.972.7"
dependencies:
"@aws-sdk/endpoint-cache": "npm:^3.972.4"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/7cde05e19fa9fe4a222d0aff6cf6fcbb078f8ca8b6bad302c6839d7274e27a4e90612bb0e7d17d9293a1fbb918b97977d3f01a763adefc7be36c5199299343b4
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/dec41ef34d0c14165a11a41fa42975f6a6e9361821491b021821e5021d966326ec4a57e2023207d011ca3a5e4e1e997780e6ded7a0e78dd6f798d6c9a9b819c1
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:^3.973.4":
version: 3.973.4
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.973.4"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/crc64-nvme": "npm:^3.972.4"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/is-array-buffer": "npm:^4.2.2"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-stream": "npm:^4.5.17"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/786bcbe1cd7413fbf37a98b258b4086e64350a0944fd87f8e5eea09f4a292149318389d28e24c077ecebcc04b4af7785835f5166854c0f11314e680795ecef7b
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-host-header@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/0689828a16afe242d3ad37e058a3e8d0ea0e15762f1db04521cefdc497e10b7a0851662043f0f74039fdf8f0de0853fad97a30ff7b1f35f66d66f8bc1b37a900
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/9ddc3a5c5764aad54cdc25e0f7b95234f4ac25273fecd41ebc05d91eebcf35773905bd00ec0329517a197479b61b5401aab70dfffe46fe10a1f3ae81faf83d71
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-logger@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/16408b89fedd4e984d8f4becd765450895f564979b3c11be10b7dc567ac95a4dd5c3d2de2bee2752c0a40aaaa0391360021206402daaa201adf518fe71a609f2
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/8afaa4bebc73403ba36c8ddff621de60a2afe62fffc41d19e3e801ed4aea6b4daad9ee76e5d6dd99a2f2184a6c6568ce0edaf32f11f490ca8c8e749db5e0c6ee
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:^3.972.18":
version: 3.972.18
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.18"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/core": "npm:^3.23.8"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/signature-v4": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-config-provider": "npm:^4.2.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-stream": "npm:^4.5.17"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/0e5540306a950924408e19d2960db8611745831e00382d80ede0c298ef86bcaa00234a99e70b65786d223db078db66b074d6c983244b569f315ef271498ce8cc
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/middleware-ssec@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/132d841a4cab1432bd3b6b9fc1212cdb95e5329f07c4ba8307a2a376d0649dbed01bfd61a2648cfd8142bf59c405e6af7b3637fa63358eec498894e6280b94ae
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.19":
version: 3.972.19
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.19"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@smithy/core": "npm:^3.23.8"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-retry": "npm:^4.2.11"
tslib: "npm:^2.6.2"
checksum: 10/cb7b075df00bdc59c84bbe66c0dd6f738544b8997a1e280164e364997e599256b8e5c0e5721a22ae17a14f871fc3ca4e04bc8c61565280f2d435cdf36377fd04
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.996.7":
version: 3.996.7
resolution: "@aws-sdk/nested-clients@npm:3.996.7"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/middleware-host-header": "npm:^3.972.7"
"@aws-sdk/middleware-logger": "npm:^3.972.7"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.19"
"@aws-sdk/region-config-resolver": "npm:^3.972.7"
"@aws-sdk/types": "npm:^3.973.5"
"@aws-sdk/util-endpoints": "npm:^3.996.4"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.7"
"@aws-sdk/util-user-agent-node": "npm:^3.973.4"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/core": "npm:^3.23.8"
"@smithy/fetch-http-handler": "npm:^5.3.13"
"@smithy/hash-node": "npm:^4.2.11"
"@smithy/invalid-dependency": "npm:^4.2.11"
"@smithy/middleware-content-length": "npm:^4.2.11"
"@smithy/middleware-endpoint": "npm:^4.4.22"
"@smithy/middleware-retry": "npm:^4.4.39"
"@smithy/middleware-serde": "npm:^4.2.12"
"@smithy/middleware-stack": "npm:^4.2.11"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/node-http-handler": "npm:^4.4.14"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/smithy-client": "npm:^4.12.2"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.38"
"@smithy/util-defaults-mode-node": "npm:^4.2.41"
"@smithy/util-endpoints": "npm:^3.3.2"
"@smithy/util-middleware": "npm:^4.2.11"
"@smithy/util-retry": "npm:^4.2.11"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/92fdb87ddb5004d9c2edb42beccf4b0eb2d8ed943a4de0d4d72debf510b54dc60d693c2b24efe64180da22150c327f835411e174b2bb0f69834ae5c0e63b6b00
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/region-config-resolver@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/config-resolver": "npm:^4.4.10"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/2ae6097459c793691c8a95836c681de2f01940792722a73e103b8432fd69cb387f28ad6cf6b7bd334018bf5189b956cffe162ad6a803a2db4cf4224a25c7d2e0
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:^3.996.6":
version: 3.996.6
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.6"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.18"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/protocol-http": "npm:^5.3.11"
"@smithy/signature-v4": "npm:^5.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/452211cbb965470445ee0fb728e67c859f25265dfdb2df5716d23cbdc3b662c2e02970e828b32f4e5827d368e8363a5ed993c308142780c1d6548dc2317a567f
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.1004.0":
version: 3.1004.0
resolution: "@aws-sdk/token-providers@npm:3.1004.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.18"
"@aws-sdk/nested-clients": "npm:^3.996.7"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/property-provider": "npm:^4.2.11"
"@smithy/shared-ini-file-loader": "npm:^4.4.6"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/7e61e8a8556203ed523bd443ee481d927ef95cc250cbe31e02f1b52065892b4ba9c6186424286fe2647961d296b442b9ecd2a18c7b4f9df131d5a0382845d276
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.468.0
resolution: "@aws-sdk/types@npm:3.468.0"
dependencies:
"@smithy/types": "npm:^2.7.0"
tslib: "npm:^2.5.0"
checksum: 10/d2599c6e73e932925ecebdb4f71bfa25895423ddf6ea981ea815dcf7a307c989d5e53bc9d2a95fed14fd0f6223bcf561dcff64113cf5a77b3d5b263664323b03
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.973.5":
version: 3.973.5
resolution: "@aws-sdk/types@npm:3.973.5"
dependencies:
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10/915c16f7fbb2ecdaa3850f719235b41c122e53406f9dc976b224fff34c7711cd9f92e4367e8a64854e4fa0451be7924ab042f7a4175bd5272a1301d9578610bd
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/util-arn-parser@npm:3.972.3"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/140a30615c914bcb37a5bb6ff825e8b6d2bedea757c2b03a4f5abb986003683ceadc322c0ee9f9a3ba4d5925357515ed7be01ef13c56c3b0126d4e1bd7292a33
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.4":
version: 3.996.4
resolution: "@aws-sdk/util-endpoints@npm:3.996.4"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.11"
"@smithy/util-endpoints": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10/4c6b60b3a6765f0079cf1707ce190b14d50043327b9e0fa3a1d9d1a8813a327686bf05f0ea620365aca8dcabb7f23019f4593602a018d8af921bf517010c2ec8
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.465.0
resolution: "@aws-sdk/util-locate-window@npm:3.465.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10/a8caa2a0052a7cac4038cb04e9e33d63e3524802e8d0a5865a22b8031f391537873a839e1bc7e1bb75f36f7b7fa590aed5b1bfcb02017177d0ba5a4088f584b1
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.7"
dependencies:
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/types": "npm:^4.13.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/adc99dd096fb7199939600c2481a10b9f447c95c55b746b0767a41255aa4c922b3c47ac6dcd271ce79839c9a2d13f6febe19bd1348ccd36cc01bbaedae663809
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.973.4":
version: 3.973.4
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.4"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.19"
"@aws-sdk/types": "npm:^3.973.5"
"@smithy/node-config-provider": "npm:^4.3.11"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/65b7b24baf4909a08ae9e7b2f0b981b203c0c88724bb8a400f352de3b00867ae7697165a5d4ba8993bc3902db97dca4cf8f41d44568254194b48c178cb4e680d
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/xml-builder@npm:3.972.10"
dependencies:
"@smithy/types": "npm:^4.13.0"
fast-xml-parser: "npm:5.4.1"
tslib: "npm:^2.6.2"
checksum: 10/5f7771ee638ce65fa8f598ee3453eac391658ee6da1b23893b42829f1d07bcacc4e9376347f4d9f0752c27ed38ecbe8bf8c029f8e43ace8040f3b9dd6efc3242
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.2
resolution: "@aws/lambda-invoke-store@npm:0.2.2"
checksum: 10/18cd0cec90d9d865c9089218ef2220b0a7302a860c9a3f808b101386f569abc5ee11eb98a36947bed280a63308dd5df23c39e7b07fe9ac4f4ffcd0c4dce537c4
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.10.1
resolution: "@babel/code-frame@npm:7.10.1"
dependencies:
"@babel/highlight": "npm:^7.10.1"
checksum: 10/2fb50e53acb25375fd772dc1ac77b3740390a99c80fa39f9ab59381a4f6863686b529a99566f494cfe281657dfd0275c43f1d9f13457dfdfcad2a6316a1f358c
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10/4ef9c679515be9cb8eab519fcded953f86226155a599cf7ea209e40e088bb9a51bb5893d3307eae510b07bb3e359d64f2620957a00c27825dbe26ac62aca81f5
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0, @babel/code-frame@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/db2c2122af79d31ca916755331bb4bac96feb2b334cdaca5097a6b467fdd41963b89b14b6836a14f083de7ff887fc78fa1b3c10b14e743d33e12dbfe5ee3d223
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.27.1"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10/721b8a6e360a1fa0f1c9fe7351ae6c874828e119183688b533c477aa378f1010f37cc9afbfc4722c686d1f5cdd00da02eab4ba7278a0c504fa0d7a321dcd4fdf
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.9":
version: 7.26.3
resolution: "@babel/compat-data@npm:7.26.3"
checksum: 10/0bf4e491680722aa0eac26f770f2fae059f92e2ac083900b241c90a2c10f0fc80e448b1feccc2b332687fab4c3e33e9f83dee9ef56badca1fb9f3f71266d9ebf
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.27.2":
version: 7.28.5
resolution: "@babel/compat-data@npm:7.28.5"
checksum: 10/5a5ff00b187049e847f04bd02e21fbd8094544e5016195c2b45e56fa2e311eeb925b158f52a85624c9e6bacc1ce0323e26c303513723d918a8034e347e22610d
languageName: node
linkType: hard
"@babel/core@npm:^7.23.9":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.26.0"
"@babel/generator": "npm:^7.26.0"
"@babel/helper-compilation-targets": "npm:^7.25.9"
"@babel/helper-module-transforms": "npm:^7.26.0"
"@babel/helpers": "npm:^7.26.0"
"@babel/parser": "npm:^7.26.0"
"@babel/template": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/65767bfdb1f02e80d3af4f138066670ef8fdd12293de85ef151758a901c191c797e86d2e99b11c4cdfca33c72385ecaf38bbd7fa692791ec44c77763496b9b93
languageName: node
linkType: hard
"@babel/core@npm:^7.27.4":
version: 7.28.5
resolution: "@babel/core@npm:7.28.5"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.28.5"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-module-transforms": "npm:^7.28.3"
"@babel/helpers": "npm:^7.28.4"
"@babel/parser": "npm:^7.28.5"
"@babel/template": "npm:^7.27.2"
"@babel/traverse": "npm:^7.28.5"
"@babel/types": "npm:^7.28.5"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/2f1e224125179f423f4300d605a0c5a3ef315003281a63b1744405b2605ee2a2ffc5b1a8349aa4f262c72eca31c7e1802377ee04ad2b852a2c88f8ace6cac324
languageName: node