-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathyarn.lock
More file actions
17329 lines (15692 loc) · 600 KB
/
yarn.lock
File metadata and controls
17329 lines (15692 loc) · 600 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
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10/bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
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
"@ast-grep/napi-darwin-arm64@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-darwin-arm64@npm:0.35.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@ast-grep/napi-darwin-x64@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-darwin-x64@npm:0.35.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@ast-grep/napi-linux-arm64-gnu@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-linux-arm64-gnu@npm:0.35.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@ast-grep/napi-linux-arm64-musl@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-linux-arm64-musl@npm:0.35.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@ast-grep/napi-linux-x64-gnu@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-linux-x64-gnu@npm:0.35.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@ast-grep/napi-linux-x64-musl@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-linux-x64-musl@npm:0.35.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@ast-grep/napi-win32-arm64-msvc@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-win32-arm64-msvc@npm:0.35.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@ast-grep/napi-win32-ia32-msvc@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-win32-ia32-msvc@npm:0.35.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@ast-grep/napi-win32-x64-msvc@npm:0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi-win32-x64-msvc@npm:0.35.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@ast-grep/napi@npm:^0.35.0":
version: 0.35.0
resolution: "@ast-grep/napi@npm:0.35.0"
dependencies:
"@ast-grep/napi-darwin-arm64": "npm:0.35.0"
"@ast-grep/napi-darwin-x64": "npm:0.35.0"
"@ast-grep/napi-linux-arm64-gnu": "npm:0.35.0"
"@ast-grep/napi-linux-arm64-musl": "npm:0.35.0"
"@ast-grep/napi-linux-x64-gnu": "npm:0.35.0"
"@ast-grep/napi-linux-x64-musl": "npm:0.35.0"
"@ast-grep/napi-win32-arm64-msvc": "npm:0.35.0"
"@ast-grep/napi-win32-ia32-msvc": "npm:0.35.0"
"@ast-grep/napi-win32-x64-msvc": "npm:0.35.0"
dependenciesMeta:
"@ast-grep/napi-darwin-arm64":
optional: true
"@ast-grep/napi-darwin-x64":
optional: true
"@ast-grep/napi-linux-arm64-gnu":
optional: true
"@ast-grep/napi-linux-arm64-musl":
optional: true
"@ast-grep/napi-linux-x64-gnu":
optional: true
"@ast-grep/napi-linux-x64-musl":
optional: true
"@ast-grep/napi-win32-arm64-msvc":
optional: true
"@ast-grep/napi-win32-ia32-msvc":
optional: true
"@ast-grep/napi-win32-x64-msvc":
optional: true
checksum: 10/444113abfcb927efd127b1059f6a95c9fc3d75f8fca7d87a5c752d8491b97861c58fce076b1cd1e47934bd8433a20b07487e320fdcb136bf5b1cead74d29a406
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/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/f5aee4a11a113ab9640474e75d398c99538aa30775f484cd519f0de0096ae0d4a6b68d2f0c685f24bd6f2425067c565bc20592c36c0dc1f4d28c1b4751a40734
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:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/4e075906c48a46bbb8babb60db3e6b280db405a88c68b77c1496c26218292d5ea509beae3ccc19366ca6bc944c6d37fe347d0917909900dbac86f054a19c71c7
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:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/f9fc2d51631950434d0f91f51c2ce17845d4e8e75971806e21604987e3186ee1e54de8a89e5349585b91cb36e56d5f058d6a45004e1bfbce1351dbb40f479152
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:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/8a48788d2866e391354f256aa79b577b2ba1474b50184cbe690467de7e64a79928afece95007ab69a1556f99da97ea129487db091d94489847e14decdc7c9a6f
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-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
languageName: node
linkType: hard
"@aws-sdk/client-cloudfront@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-cloudfront@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.398.0"
"@aws-sdk/credential-provider-node": "npm:3.398.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-signing": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@aws-sdk/xml-builder": "npm:3.310.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-stream": "npm:^2.0.5"
"@smithy/util-utf8": "npm:^2.0.0"
"@smithy/util-waiter": "npm:^2.0.5"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10/088806cb59e8e7f3d95471cd2afe46e6b6b4a8edf155e0d6919eb5432b9dd6dd143d8a76752747a9e11e903101241da92583d88e338854cc8f1f4e9af60f2eec
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:^3.398.0":
version: 3.788.0
resolution: "@aws-sdk/client-dynamodb@npm:3.788.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.787.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.787.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.787.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.787.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/61022014c5066a17a8f045a9323a71c90e88412e146b3cd8a248589166d9df9189b983db6ccb069786ae3db54915199c0d3366996cacbfcd6c89bf708f45d4e5
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:^3.398.0":
version: 3.787.0
resolution: "@aws-sdk/client-lambda@npm:3.787.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.787.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.787.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.787.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.787.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 10/7dc74996a6267bca39972317d1d3cca52c723b8b16d00ac7daf4c963c40a3981ff302d8b42ea559a0c5eb773987ee3fa84d13bed657b0b2b61d11806a37d6d08
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.398.0":
version: 3.787.0
resolution: "@aws-sdk/client-s3@npm:3.787.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.775.0"
"@aws-sdk/credential-provider-node": "npm:3.787.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.775.0"
"@aws-sdk/middleware-expect-continue": "npm:3.775.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.787.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-location-constraint": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.775.0"
"@aws-sdk/middleware-ssec": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.787.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.787.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.787.0"
"@aws-sdk/xml-builder": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-blob-browser": "npm:^4.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/hash-stream-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/md5-js": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 10/e99cc8be52690895cfc365d16a80b25d729dfcda295770a5b24f45cdc4601f40f69a0e47b6ecb67f120ef28c25eb105090fe64d7ac260c9d634ecb265dd72b5d
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.398.0":
version: 3.787.0
resolution: "@aws-sdk/client-sqs@npm:3.787.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.787.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.787.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.787.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.787.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/md5-js": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/c28337616b12c495c56fb403b2d26907a5d9990f31a4345a24b19a35ae77c053a7287a90ffa961f5f1cdd07d2b6f990edd452e3441233025110340367da39cb7
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-sso@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/ad96acab1256615b38421b4a7928dbe7890042856d70412e493c2bcebcbdeb98f608ae412b1a9f0ca115a24485c4cd43e43eca5fe96b620a610abdfe9ec18f5f
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.787.0":
version: 3.787.0
resolution: "@aws-sdk/client-sso@npm:3.787.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.787.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.787.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.787.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/c8b314a15339dec0968d840b033595c689a5516f1f9c4bf6f7957020a4ca9bd9016a63d99c78031333091d1acb27c1cf956ee99231727cd7a842ccdd40506fb8
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/client-sts@npm:3.398.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/credential-provider-node": "npm:3.398.0"
"@aws-sdk/middleware-host-header": "npm:3.398.0"
"@aws-sdk/middleware-logger": "npm:3.398.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.398.0"
"@aws-sdk/middleware-sdk-sts": "npm:3.398.0"
"@aws-sdk/middleware-signing": "npm:3.398.0"
"@aws-sdk/middleware-user-agent": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@aws-sdk/util-endpoints": "npm:3.398.0"
"@aws-sdk/util-user-agent-browser": "npm:3.398.0"
"@aws-sdk/util-user-agent-node": "npm:3.398.0"
"@smithy/config-resolver": "npm:^2.0.5"
"@smithy/fetch-http-handler": "npm:^2.0.5"
"@smithy/hash-node": "npm:^2.0.5"
"@smithy/invalid-dependency": "npm:^2.0.5"
"@smithy/middleware-content-length": "npm:^2.0.5"
"@smithy/middleware-endpoint": "npm:^2.0.5"
"@smithy/middleware-retry": "npm:^2.0.5"
"@smithy/middleware-serde": "npm:^2.0.5"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.5"
"@smithy/node-http-handler": "npm:^2.0.5"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/smithy-client": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
"@smithy/url-parser": "npm:^2.0.5"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.5"
"@smithy/util-defaults-mode-node": "npm:^2.0.5"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10/a3164f6d564fc2456a2bacebf8e0117bb9f0e155df781b8d27db826c705de23010d3ed4c4c4926064d7b1cd3c53b6a3eca72724912867d58d8d1fd1200db8efa
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/core@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/7a393958ca66148ed98ab892b529f8ec3303d2ec702f15e115db2d9e007614da0fdcdb58d608d7e97f57b3f6272bf9380219934cb386b0a091e8a4c1082ddda7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-env@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/bc42da64b029e916b1d45da5d0edcf0b1e7cc74bc43d0aac07f29c7fe6f64091e5b35c312403b5ba9f67f70f523f0a321926849d0fba9f2d2d1da2e076b070bd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-env@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/564c70c077bdec8bd5424fe403f04c48f99d08b2da1f632633710d6a118a5fa632bf81b1d6627da8e86364203532ba04356c3894f9560676954b478b3e81894c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-http@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/bad01daeaff3b16835321e0fa7dc031786b5bebb7fe6653305b4509c294a6468e039fbc2b0353e17b5214b89290481b1146679bb6eaa32d5d506a0998d2393df
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.398.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.398.0"
"@aws-sdk/credential-provider-process": "npm:3.398.0"
"@aws-sdk/credential-provider-sso": "npm:3.398.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/16fc9bf4a7bacf360ac7c294a7a51d5c45efa51d5283c750d97822f0e51617a3bdc78ee76b1ab2df0270813ec499b9144c0af2fb5590203c595527d58ea22a42
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.787.0":
version: 3.787.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.787.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.787.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.787.0"
"@aws-sdk/nested-clients": "npm:3.787.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/f11a02b3a165123e7406ce75c5fd2f5709672ea20735813c62852e949e7851c7fd981a45181497440490e69714f0de14d288d3f671d03dc6e3b6dd736490fb46
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-node@npm:3.398.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.398.0"
"@aws-sdk/credential-provider-ini": "npm:3.398.0"
"@aws-sdk/credential-provider-process": "npm:3.398.0"
"@aws-sdk/credential-provider-sso": "npm:3.398.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/4c7cf65f074ef30bc77f5178e603442f5a101527cba9c525ddc7a142e97ce796df7b69a77280f4fc10d722efa9676d5207b107c15b7d96353c38fa4dd4d10ee2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.787.0":
version: 3.787.0
resolution: "@aws-sdk/credential-provider-node@npm:3.787.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-ini": "npm:3.787.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.787.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.787.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/60f81e483ed25180f4a1b717e828c793b694120a5d680eb56f63413c4c99bd25382247c909d1a4dea83a8245846722dade93d8b922ad4ad6689b3ee7dee453f6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-process@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/b6449f3cd4cc5e17b0449bb0497aaa3afe5cd87559c503c8397a139b3d867eb6c47f587918825d0f61e4bca0c2e40b07876a24d3c1f9787d147e24b723cf1ad1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-process@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/622de75368be3d92b1c1490681fe3cbafa5c11a54f71fe574082bebf0fbbeee1e40b7694941f6617da5bb5d11864d0ec3964eaf7da9ad527524005fbf699528e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.398.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.398.0"
"@aws-sdk/token-providers": "npm:3.398.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/e77a51724692ac4e32dbf56433bfb38faf83403da909807251adf1d04dcdcc96312ab06f82ff0842e2f57ad024a2e497295bb53ce5989d6faade5cc8cc488b4d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.787.0":
version: 3.787.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.787.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.787.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/token-providers": "npm:3.787.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/d9f9b3c0c10e02e5ba42cddc02e92ba79e6accbe299f9ea1345ce681d57641e475f41ce22c114fddfd8617147844f46da4b37a97cdbf306eb99bad1b6c4cad20
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/2b790f0be8440cf3b1b193f9fb11402b06a14ceac3f774360a860dc3839670894f6204d839d8a74aeb6b5af7bb232d6fd5fac5f5174e90693b96ee9c9b4f1d52
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.787.0":
version: 3.787.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.787.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/nested-clients": "npm:3.787.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/a9bcba5b3ea319a9ee22191676afe87ee265804aa54ee4907f056b3156589e51683e7be3a0dd780703ea12c86dba7bd30ac66837e7c74bed7d3fb2075ca12a77
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/endpoint-cache@npm:3.723.0"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10/782d366d7f53a6dc9b253e7838681b3523448a92caeca386df8f8feb9c29a1a9e3fcd54f6760fc4e5ef3d994e0db1bd40ee2bf4bf677fc74553c2ce14562f66d
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/823cd7b86669a6b79958bd8f134b85a8984a9b6503971a7da2cdea1d49f7aeb695e2958a6d2cc32690bd66fba2d114fa8bf1c8d8f3bf321f6b1e38f5ae242189
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.775.0"
dependencies:
"@aws-sdk/endpoint-cache": "npm:3.723.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/3905e422b1f618531b277d9f149d5a884b5d1f89e4f85fb804ab4f0b29b32518c82cd363dc85a714af2a5baa34a2befbe75041ecdbda3628db91f3a1852e1e61
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/fff53389d8b12886dc7b10eed70a46e3bc5e374d3c27ba6837951821bca166510eb676e6d27d4f5c8a6beda1f44571d4376a519c5fd17b1fd34da92e256816cf
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.787.0":
version: 3.787.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.787.0"
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.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/c1ff2fa95e7066073c983810bd7c1de8068ccc4f79592d68ae6cc96e4bb8f94e0644b0b35297387f5fd3db83bebac9b08e92b45769d45b02c15fea677b1de6cb
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-host-header@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/protocol-http": "npm:^2.0.5"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/87cfe1ca6e01fedd5ea3fa81593e104081cb9b4f6a831c6a9f876bb5e10ab6530603ee0086e8bad59a203962f1c4b3732a008d8162868a48ffda79adeae78329
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-host-header@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/3cc84a18af1be94b81a53241fbe28364c3f4a4b1b4ff5f320a1cc6f84ff6c67147100e1ffb8dd1774a0327ffabfde0bb6cde7358f95c8162cf3681c4d2bf4344
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/f78dfb947cdbb6c2e52daaa08d6e0bc51f1d7360192c5afc0e6e46c3604f366707eae2aec669b1bf8cb5e1516b7be41653523f6d39d4c7591095fb5af07914dc
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.398.0":
version: 3.398.0
resolution: "@aws-sdk/middleware-logger@npm:3.398.0"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10/10d6930906845f48881d1c516de2a463af61fca59b5645bd9f1cfa7f3c826a35fbdf78128c51bdb3755c3cc2d3b4b2c8033760316e6d1fda3389eb6e79f5fead
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.775.0":