-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathyarn.lock
More file actions
9152 lines (8289 loc) · 323 KB
/
yarn.lock
File metadata and controls
9152 lines (8289 loc) · 323 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: 10c0
"@ast-grep/napi-darwin-arm64@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-darwin-arm64@npm:0.40.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@ast-grep/napi-darwin-x64@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-darwin-x64@npm:0.40.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@ast-grep/napi-linux-arm64-gnu@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-linux-arm64-gnu@npm:0.40.5"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@ast-grep/napi-linux-arm64-musl@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-linux-arm64-musl@npm:0.40.5"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@ast-grep/napi-linux-x64-gnu@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-linux-x64-gnu@npm:0.40.5"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@ast-grep/napi-linux-x64-musl@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-linux-x64-musl@npm:0.40.5"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@ast-grep/napi-win32-arm64-msvc@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-win32-arm64-msvc@npm:0.40.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@ast-grep/napi-win32-ia32-msvc@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-win32-ia32-msvc@npm:0.40.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@ast-grep/napi-win32-x64-msvc@npm:0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi-win32-x64-msvc@npm:0.40.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@ast-grep/napi@npm:^0.40.5":
version: 0.40.5
resolution: "@ast-grep/napi@npm:0.40.5"
dependencies:
"@ast-grep/napi-darwin-arm64": "npm:0.40.5"
"@ast-grep/napi-darwin-x64": "npm:0.40.5"
"@ast-grep/napi-linux-arm64-gnu": "npm:0.40.5"
"@ast-grep/napi-linux-arm64-musl": "npm:0.40.5"
"@ast-grep/napi-linux-x64-gnu": "npm:0.40.5"
"@ast-grep/napi-linux-x64-musl": "npm:0.40.5"
"@ast-grep/napi-win32-arm64-msvc": "npm:0.40.5"
"@ast-grep/napi-win32-ia32-msvc": "npm:0.40.5"
"@ast-grep/napi-win32-x64-msvc": "npm:0.40.5"
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: 10c0/43a710fc4907fba2f2ff0570cfc798ecb26589e52b672ddf7761604e9cb5a62752d8ae439984035efeef049df0aeea2c33c450e00eb348797bc1309a69e68b16
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: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
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: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
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: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
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: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
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: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
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: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
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: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cloudfront@npm:3.984.0":
version: 3.984.0
resolution: "@aws-sdk/client-cloudfront@npm:3.984.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@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.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.984.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@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-stream": "npm:^4.5.10"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/18e4e2dc0d02f79d7eb31f058544736645a9f406fe6b4d1d0f0b6dfb88c111c09f8d6fae86940dfe712760e259172152afc985dfc31ebf5d2e2162e882e92e49
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:3.984.0":
version: 3.984.0
resolution: "@aws-sdk/client-dynamodb@npm:3.984.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@aws-sdk/dynamodb-codec": "npm:^3.972.7"
"@aws-sdk/middleware-endpoint-discovery": "npm:^3.972.3"
"@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.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.984.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@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"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/e0b0b97bff0855b4b17b7435d20c211c0cb095f71e665e7b123abb90a0caa13217d376956aab7253428e366395226ce04bcd6e3750f0435ca8a91b7a31e96e7c
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:3.984.0":
version: 3.984.0
resolution: "@aws-sdk/client-lambda@npm:3.984.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@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.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.984.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@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-stream": "npm:^4.5.10"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/9daf19ef23941a724f8cc59e832b5f6953db2ad41f5a0cdbe4d68ba4a8a8452d068ed33e88a1d139892f82516b8de11818acb065938d36d520cc9f4117ed0156
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.984.0":
version: 3.984.0
resolution: "@aws-sdk/client-s3@npm:3.984.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.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.3"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.3"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.972.4"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.6"
"@aws-sdk/middleware-ssec": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/signature-v4-multi-region": "npm:3.984.0"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.984.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.22.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-blob-browser": "npm:^4.2.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/hash-stream-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/md5-js": "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-stream": "npm:^4.5.10"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/285b912e985fad794fb11b6d22c5f2505929b783c9b13c344a6b4a3dc0838f7b201ef8c88256fcbce921cb0173eab8ec6b599689951bf89279fcda987d16ad63
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:3.984.0":
version: 3.984.0
resolution: "@aws-sdk/client-sqs@npm:3.984.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.6"
"@aws-sdk/credential-provider-node": "npm:^3.972.5"
"@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-sdk-sqs": "npm:^3.972.5"
"@aws-sdk/middleware-user-agent": "npm:^3.972.6"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.984.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.4"
"@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/md5-js": "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: 10c0/77c13192ddfa3e0646c623d8e703f501240f0709bc723920ae01c761f5d3d805e15f361b17c4e44911635128cfc2ee13e7ab2129344ba3d0e16010bc8c8de24c
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.23, @aws-sdk/core@npm:^3.973.6":
version: 3.973.23
resolution: "@aws-sdk/core@npm:3.973.23"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/xml-builder": "npm:^3.972.15"
"@smithy/core": "npm:^3.23.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/signature-v4": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.7"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/bf50d2b6f8537bcb29f2a63ccc6e7744a7ebfc996896c3b302cf6e79cd404c975b8c8aa1c234eb3e9a7fe822bb351207301cea15e1a7f42dcdbbd486fc54409e
languageName: node
linkType: hard
"@aws-sdk/crc64-nvme@npm:^3.972.5":
version: 3.972.5
resolution: "@aws-sdk/crc64-nvme@npm:3.972.5"
dependencies:
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/2d25cc231d36a2292d83668338d778db8db7a3be3c36a097d047df0e97016293c01371401f0fde02b5d3ce52b9c4e0db19bf5746278d9ca89ed689b916a40cfc
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.21":
version: 3.972.21
resolution: "@aws-sdk/credential-provider-env@npm:3.972.21"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/61aece50739796d5604be37ed91c7a571de6ae90820915ec91dd2b508b7a116cd16d839653732286006583cc27d2e11b8492aa93aa2369a556d0c82b1678341b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.23":
version: 3.972.23
resolution: "@aws-sdk/credential-provider-http@npm:3.972.23"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/node-http-handler": "npm:^4.5.0"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.7"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-stream": "npm:^4.5.20"
tslib: "npm:^2.6.2"
checksum: 10c0/022c449953f127162f3e1e56274583257d7b3a272ae81e037a741d94e8302792508276ca18e73cc49e745a99e531c64a41858d0b1abe5b860a1ae483fa691b4c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.23":
version: 3.972.23
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.23"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/credential-provider-env": "npm:^3.972.21"
"@aws-sdk/credential-provider-http": "npm:^3.972.23"
"@aws-sdk/credential-provider-login": "npm:^3.972.23"
"@aws-sdk/credential-provider-process": "npm:^3.972.21"
"@aws-sdk/credential-provider-sso": "npm:^3.972.23"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.23"
"@aws-sdk/nested-clients": "npm:^3.996.13"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/credential-provider-imds": "npm:^4.2.12"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/ca13cdc5b68c8afe64c73656b45cb2128b132e5a0fb8c76ded2f8623af67d72c89c0c01bcd6659cb09fa693b465fc5e977f87e1b72ffde0b5062296c1a60db04
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.23":
version: 3.972.23
resolution: "@aws-sdk/credential-provider-login@npm:3.972.23"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/nested-clients": "npm:^3.996.13"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f66949f7042aefdc16c47d77bd557ab29b3341662b541e873a6104d51fbac372947bdd33b369ac748b63f249e346f0fcd848705f16ec72279ca22eeafdb15612
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.5":
version: 3.972.24
resolution: "@aws-sdk/credential-provider-node@npm:3.972.24"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.21"
"@aws-sdk/credential-provider-http": "npm:^3.972.23"
"@aws-sdk/credential-provider-ini": "npm:^3.972.23"
"@aws-sdk/credential-provider-process": "npm:^3.972.21"
"@aws-sdk/credential-provider-sso": "npm:^3.972.23"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.23"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/credential-provider-imds": "npm:^4.2.12"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/ed1ad71637ba99bfe8747ed0de40ba11068d0ce52437cb7cf034c65ec0dcfe01e6cb0fcb865092a8cb036486ec2655f6bae33263b954ba68f60498deab9dd1b1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.21":
version: 3.972.21
resolution: "@aws-sdk/credential-provider-process@npm:3.972.21"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/019fb221cf34f3b1a05243066efce63afadceac7844fba5c195b26d4a61c2e2ba38f2167bb754bf3c86fb50bcfd1f2356e2e2d3c82c236729efc94971d1d12e9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.23":
version: 3.972.23
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.23"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/nested-clients": "npm:^3.996.13"
"@aws-sdk/token-providers": "npm:3.1014.0"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/50741e6fdd8fe422fe2b82f03c959591ff34c2fe20a4d8c289ba37fd1f37e65cfe26848cd2b47ca87549c62636c3f3acb0827ad442492870f19728a6580cd237
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.23":
version: 3.972.23
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.23"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/nested-clients": "npm:^3.996.13"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/b5e97428837ad844a811b57c22d701d707d6be4b0b2f2be30fa0c6e63f4af474d6b7d623e120f0b8298d37e500175477e7412f7bad8f62e66bf48b0f93069f18
languageName: node
linkType: hard
"@aws-sdk/dynamodb-codec@npm:^3.972.7":
version: 3.972.24
resolution: "@aws-sdk/dynamodb-codec@npm:3.972.24"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@smithy/core": "npm:^3.23.12"
"@smithy/smithy-client": "npm:^4.12.7"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-base64": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/903a3af20cdfeafa20de9dc4b3c0b9a86ac006df4c24a2532685ffe69775e42fb81922ab8c8ce049ae48ad4e370996b97620c15552e02242fc861d24ed0f7833
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: 10c0/3db9349e3f135b2bf2dec247b90e4210bc5d71986ac6219780f7d4dbb87a1f0922b9f670abecd4faef52ec4aa8e317dd8450be27b9461911bdc7358aa6847b91
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.3":
version: 3.972.8
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-config-provider": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/03cb3ae1e28cd1f7abcd6363cbba5f550a1fe3d0daf9752ec758f8928e2dc7a1eed9e21a6c94c31760dc96ca60984910384a3c3599047f44c9148953dc0683bc
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:^3.972.3":
version: 3.972.8
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.972.8"
dependencies:
"@aws-sdk/endpoint-cache": "npm:^3.972.4"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/04d74deab73cfca5f005a4263f46306282d007106ab6dd578aaf34dddd3e238b0a01ed7584470c0724cce91162996352fbba5c3f4f18b508f055d16093d9b410
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:^3.972.3":
version: 3.972.8
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/dbfb4b54aea5d43fa49fae9c55c5f3cd9e274c06c9a285795a9ba8cdb8e70062a1f05fa44f4cbc03374cc198f423c5f7c97d888485eb52334658323348449c99
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:^3.972.4":
version: 3.974.3
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.974.3"
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.23"
"@aws-sdk/crc64-nvme": "npm:^3.972.5"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/is-array-buffer": "npm:^4.2.2"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-stream": "npm:^4.5.20"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/a5f9d9ef28d1fa2caaa2c42423ec52ac76965bc2d2ea1ebb1e50990e700f4f4e3948155a6260460acc4e32655a2b1483eadcf473d5d460d40559d23ca5aeb64a
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.3, @aws-sdk/middleware-host-header@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/middleware-host-header@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f3019810e447a53788c546b94bc40a20c543aa067abf6235643d8e24689f8d4edec211297ac464380fb58c79f99803d1a152027798a3b401eab225e679a85d07
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:^3.972.3":
version: 3.972.8
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/3819ad39a601cccb0a9743b13b37dbbdf3e2f7c3c34d15d4b09ef50f78683489502b1125f31b30ba45924db5c3fbc8b2d1be3cb31a443a53538fc1eb36615eff
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.3, @aws-sdk/middleware-logger@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/middleware-logger@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/79240b2a34d020f90f54982a4744b0a6bc5b5a7de6442f3b6657b2f10a76d9a1d3bcc2887a1d96d0aa5da4a09b3ce2a77df7a0d4e7e2973d1797ff6d8e8800a9
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.3, @aws-sdk/middleware-recursion-detection@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/8d8ef442befd65dd9175294ae292e2b421171c0c9db9389a6f504b97e055dc9c3b51a80c711792fbc31cd3b4976f1d71d30a378063416553e17a59f70e7eb6d1
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:^3.972.6":
version: 3.972.23
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.23"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/core": "npm:^3.23.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/signature-v4": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.7"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-config-provider": "npm:^4.2.2"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-stream": "npm:^4.5.20"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/f8deee5177f6ba8ec2065df1a787e9084799501652b12544e2e3ce5489c0ce9209312ab3ee5c071d14ece00649f9bc1d8a374dd8431512fd395aedba862418b8
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sqs@npm:^3.972.5":
version: 3.972.17
resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.972.17"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/smithy-client": "npm:^4.12.7"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-hex-encoding": "npm:^4.2.2"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/dfdf836806ba1e7d1822cc0c1c1668003605dcf05e109c3e45f80404219f8866b7350062783961e0e93201f109511242f5d43a9258cc2b1b74bbcdf1d3189aa2
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:^3.972.3":
version: 3.972.8
resolution: "@aws-sdk/middleware-ssec@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/0d90f48273bd668d9aafe233bd4cc7e16dcda52761202ab4af377e94a112bbd4b5f0939e8dee0f85f8d17c36f1b9e565889bd3d20545145787850479bcf82651
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.24, @aws-sdk/middleware-user-agent@npm:^3.972.6":
version: 3.972.24
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.24"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@smithy/core": "npm:^3.23.12"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-retry": "npm:^4.2.12"
tslib: "npm:^2.6.2"
checksum: 10c0/a34d962798fa1b4ffeb34cc0a077907418aabc01b56247dba855f59a651ecf9cbfb7421ae8a12d4b3d9cc89ba2c3a725b3bd43f4f093050d663b732d4c416088
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.996.13":
version: 3.996.13
resolution: "@aws-sdk/nested-clients@npm:3.996.13"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.8"
"@aws-sdk/middleware-user-agent": "npm:^3.972.24"
"@aws-sdk/region-config-resolver": "npm:^3.972.9"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.10"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.12"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.27"
"@smithy/middleware-retry": "npm:^4.4.44"
"@smithy/middleware-serde": "npm:^4.2.15"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.0"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.7"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@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.43"
"@smithy/util-defaults-mode-node": "npm:^4.2.47"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.12"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/40d77bb6b7089e7489b76e0585df472bee3c478fa3d63616eb5ddea9a1c4017c66a55bcce88f6304e0b99dbcca231a3c3045e4696e17ce8e50c8cacf71469de4
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.3, @aws-sdk/region-config-resolver@npm:^3.972.9":
version: 3.972.9
resolution: "@aws-sdk/region-config-resolver@npm:3.972.9"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/2f5bee01355f955ff7f6dbd06c893366bfd9612e969ed7c4bd56ab6f00a00113a743eddc02da36dde137f4e6b7346aa796283a1e5c1d84f399ea0dfd7218424e
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.984.0":
version: 3.984.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.984.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.6"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/181ba83561b331955b63483bb91f13231e25b9e367ae910f34f46aa99a82f693e71fe807b886b4a16361dcac258d33d5a5fff83f5696eca0345b83818595c751
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.1014.0":
version: 3.1014.0
resolution: "@aws-sdk/token-providers@npm:3.1014.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.23"
"@aws-sdk/nested-clients": "npm:^3.996.13"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/shared-ini-file-loader": "npm:^4.4.7"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/798eb4cf81d970c3aa5a278b2b9ca5ae8cec9a1459a1bb315d54b3908cc201834d0aa84fd62e43b9ac6d0c21f56feed887014db37440e887796dcaf3325b4e7e
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.1, @aws-sdk/types@npm:^3.973.6":
version: 3.973.6
resolution: "@aws-sdk/types@npm:3.973.6"
dependencies:
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/3a5c65313a3faadf854dd1055e5768c0477ecd10e8a597d0c0041fb69efdcefc399bf263f86fef93754d2d9a91d4f0eb78f5f1de14779657f84a24218a457fc3
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: 10c0/75c94dcd5d99a60375ce3474b0ee4f1ca17abdcd46ffbf34ce9d2e15238d77903c8993dddd46f1f328a7989c5aaec0c7dfef8b3eaa3e1125bea777399cfc46f2
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.984.0":
version: 3.984.0
resolution: "@aws-sdk/util-endpoints@npm:3.984.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: 10c0/5b49c27e11b94f3a505920b41e7a96be6cd3f370ccf2921d322f65f93ba4d50f99a0c32d9adc0d27500caa1b0ebd4491d6efe773d8f124c8272c9857a0ae4f1a
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.5":
version: 3.996.5
resolution: "@aws-sdk/util-endpoints@npm:3.996.5"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-endpoints": "npm:^3.3.3"
tslib: "npm:^2.6.2"
checksum: 10c0/6356b7b040758af210f6b3d6807c11538e8a6888093ebe8a172949532a170c1f3f0bf93db86f6a75f071749219c3da2a88e63954f53031e8c3f9a092d7d97db9
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.5
resolution: "@aws-sdk/util-locate-window@npm:3.965.5"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/f5e33a4d7cbfd832ce4bf35b0e532bcabb4084e9b17d45903bccd43f0e221366a423b6acdea8c705ec66b9776f1e624fd640ad716f7446d014e698249d091e83
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.3, @aws-sdk/util-user-agent-browser@npm:^3.972.8":
version: 3.972.8
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/types": "npm:^4.13.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b5153800fab17e3e079c87d0668b65625755c91a47646aabcfc434aad18d6fc0c8921b544a234cd89d11a0b29eef1b73087515438c185ea5bcff75ecb8c2e800
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.972.4, @aws-sdk/util-user-agent-node@npm:^3.973.10":
version: 3.973.10
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.10"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.24"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/types": "npm:^4.13.1"
"@smithy/util-config-provider": "npm:^4.2.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/a2e8709b46a2354cd404232abd4bc1608b9d7d8534aa085433104d860869acb06eed8127e23c3638c4245a44b01a9745b5d5978ee69e287a0509a25c38a47e2b
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.15":
version: 3.972.15
resolution: "@aws-sdk/xml-builder@npm:3.972.15"
dependencies:
"@smithy/types": "npm:^4.13.1"
fast-xml-parser: "npm:5.5.8"
tslib: "npm:^2.6.2"
checksum: 10c0/e1185fd46da270e717c63c67314a6e65e6fb599c5fe40ef4969a230e377003338119dcc11921b1602314e5f0578a5eec79f0cea8c38200b046d2401ae2001a21
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.4
resolution: "@aws/lambda-invoke-store@npm:0.2.4"