-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathyarn.lock
More file actions
3584 lines (3235 loc) · 129 KB
/
yarn.lock
File metadata and controls
3584 lines (3235 loc) · 129 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
"@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-s3@npm:^3.245.0":
version: 3.940.0
resolution: "@aws-sdk/client-s3@npm:3.940.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.940.0"
"@aws-sdk/credential-provider-node": "npm:3.940.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.936.0"
"@aws-sdk/middleware-expect-continue": "npm:3.936.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.940.0"
"@aws-sdk/middleware-host-header": "npm:3.936.0"
"@aws-sdk/middleware-location-constraint": "npm:3.936.0"
"@aws-sdk/middleware-logger": "npm:3.936.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.936.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.940.0"
"@aws-sdk/middleware-ssec": "npm:3.936.0"
"@aws-sdk/middleware-user-agent": "npm:3.940.0"
"@aws-sdk/region-config-resolver": "npm:3.936.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@aws-sdk/util-endpoints": "npm:3.936.0"
"@aws-sdk/util-user-agent-browser": "npm:3.936.0"
"@aws-sdk/util-user-agent-node": "npm:3.940.0"
"@smithy/config-resolver": "npm:^4.4.3"
"@smithy/core": "npm:^3.18.5"
"@smithy/eventstream-serde-browser": "npm:^4.2.5"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.5"
"@smithy/eventstream-serde-node": "npm:^4.2.5"
"@smithy/fetch-http-handler": "npm:^5.3.6"
"@smithy/hash-blob-browser": "npm:^4.2.6"
"@smithy/hash-node": "npm:^4.2.5"
"@smithy/hash-stream-node": "npm:^4.2.5"
"@smithy/invalid-dependency": "npm:^4.2.5"
"@smithy/md5-js": "npm:^4.2.5"
"@smithy/middleware-content-length": "npm:^4.2.5"
"@smithy/middleware-endpoint": "npm:^4.3.12"
"@smithy/middleware-retry": "npm:^4.4.12"
"@smithy/middleware-serde": "npm:^4.2.6"
"@smithy/middleware-stack": "npm:^4.2.5"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/node-http-handler": "npm:^4.4.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/smithy-client": "npm:^4.9.8"
"@smithy/types": "npm:^4.9.0"
"@smithy/url-parser": "npm:^4.2.5"
"@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.11"
"@smithy/util-defaults-mode-node": "npm:^4.2.14"
"@smithy/util-endpoints": "npm:^3.2.5"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-retry": "npm:^4.2.5"
"@smithy/util-stream": "npm:^4.5.6"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/349b6afcf0940e453472137b0fe13a57896946926a7b03333f2435665ba79000a54c70072e011d76aa7c52512d88a0195ef57794eb996d31a24253e906526b03
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/client-sso@npm:3.940.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/middleware-host-header": "npm:3.936.0"
"@aws-sdk/middleware-logger": "npm:3.936.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.936.0"
"@aws-sdk/middleware-user-agent": "npm:3.940.0"
"@aws-sdk/region-config-resolver": "npm:3.936.0"
"@aws-sdk/types": "npm:3.936.0"
"@aws-sdk/util-endpoints": "npm:3.936.0"
"@aws-sdk/util-user-agent-browser": "npm:3.936.0"
"@aws-sdk/util-user-agent-node": "npm:3.940.0"
"@smithy/config-resolver": "npm:^4.4.3"
"@smithy/core": "npm:^3.18.5"
"@smithy/fetch-http-handler": "npm:^5.3.6"
"@smithy/hash-node": "npm:^4.2.5"
"@smithy/invalid-dependency": "npm:^4.2.5"
"@smithy/middleware-content-length": "npm:^4.2.5"
"@smithy/middleware-endpoint": "npm:^4.3.12"
"@smithy/middleware-retry": "npm:^4.4.12"
"@smithy/middleware-serde": "npm:^4.2.6"
"@smithy/middleware-stack": "npm:^4.2.5"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/node-http-handler": "npm:^4.4.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/smithy-client": "npm:^4.9.8"
"@smithy/types": "npm:^4.9.0"
"@smithy/url-parser": "npm:^4.2.5"
"@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.11"
"@smithy/util-defaults-mode-node": "npm:^4.2.14"
"@smithy/util-endpoints": "npm:^3.2.5"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-retry": "npm:^4.2.5"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c0f6c8bc4ad55f2b573fbc40f472b974679c11c6e2bc224b1b9a4f4a9134895b37127eaaa588d56cb2e32522de4921dd813ae7229f5db4fedeeea1d06500e74c
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/core@npm:3.940.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@aws-sdk/xml-builder": "npm:3.930.0"
"@smithy/core": "npm:^3.18.5"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/signature-v4": "npm:^5.3.5"
"@smithy/smithy-client": "npm:^4.9.8"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/090b960007d3fe7a6f54d6e9a739f7de51c25d6e8f7519821ed94d8760508a9a1f034bc4ffc8b87a797eba485baf7024d45fc86556ce224b35da2530fe85af20
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-env@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/538ede72ad6357ccc613957b11bcd254789cd502e14938c26870c326ff1518df9bb5b23fd4d1139bac77b4394ea6a1a621ad025609d62f86d7b363636ca73e5e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-http@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/fetch-http-handler": "npm:^5.3.6"
"@smithy/node-http-handler": "npm:^4.4.5"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/smithy-client": "npm:^4.9.8"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-stream": "npm:^4.5.6"
tslib: "npm:^2.6.2"
checksum: 10c0/a3092b60041cb5be3d07891c1be959b14420a5d630372030877970c7d111c0ca8881daeb6740c16767c3a587a9a65d5e6aa8081a73a58a6cccefc98f9307a9e3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/credential-provider-env": "npm:3.940.0"
"@aws-sdk/credential-provider-http": "npm:3.940.0"
"@aws-sdk/credential-provider-login": "npm:3.940.0"
"@aws-sdk/credential-provider-process": "npm:3.940.0"
"@aws-sdk/credential-provider-sso": "npm:3.940.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.940.0"
"@aws-sdk/nested-clients": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/credential-provider-imds": "npm:^4.2.5"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/28b78575da447ea9a8f21c926fe0b1ef037e886a1676d60e168702abbeb070241a869b758bab1522e9e97ad7940376e30e7866c72201fab46a3dd67c4073af94
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-login@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/nested-clients": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a408b413bf13c73c25bec80323e0cb59a86cf44b724156db6fd34cd8ae72b55af81a0c7c6325d1f99b85bd5f04aa64edadd06910c4f7ab0e5f8a714c54aad26e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-node@npm:3.940.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.940.0"
"@aws-sdk/credential-provider-http": "npm:3.940.0"
"@aws-sdk/credential-provider-ini": "npm:3.940.0"
"@aws-sdk/credential-provider-process": "npm:3.940.0"
"@aws-sdk/credential-provider-sso": "npm:3.940.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/credential-provider-imds": "npm:^4.2.5"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ecaa866d4cf9bce5cdf71e67d76e3e1b35e0f57b266f2b3447c08ccd5555c5b19d83a015cc153d2b6165ff6b1fce0c55d08eb306dcde909583741200ae287469
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-process@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/42aba573606be61f5d82120fa5379ff6eaf819be0972b20b08422a25b7f41c2113eaa762476590a08912ca248bd7eddf3504bd6620b18a98574450315b4962d0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.940.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.940.0"
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/token-providers": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fd6397d6df02ce23b1151a4453d35fd123b15a71322aab3e50885268ecac21cd441bc02063b0ad834d57ce57e70c3cf07f1e6ad75814e7baf74741a5919d3e9c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/nested-clients": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9967bbde6603372b89a600cfed211caa769709e34b27f90f627ee5b60c5994b6db0f17b4bbd1ea4ac133092691dc94a0776ba82a187075e875005c864eb7e851
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-config-provider": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/697c02f0ecf057615b08acf8f7a2359e0e692bb47029bdb7310c5fb2c46af86c2b755c835cff5271ccfdf17b9e1fcdae2954d22af7ba80136a77ee1c70c3dda6
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1945b4985d76e2ff0b34a11965b67774ded31384e057e16daf46461217824d634aa1a84fbafb74fdd8bfb3ddb4a9d947877ef15e225798d52131c63fafbe715c
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.940.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.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/is-array-buffer": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-stream": "npm:^4.5.6"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d5d0b549baf03c1f103fe6a266f980d9f93116ac12d98285819192a29e1a0e58eb2ca12a9e5f6f3290294ec8fac85d0c0bb992105b895d93c4328dbc7aa665fb
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/middleware-host-header@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/524221650f88650c4a9cc60f7ed1bdd215f4112e120ad75807ee9b51358a1016c867e0b696cae91256aac084fa091cb230b2f579388c4b59e680b8a3e2bc7d29
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5e2e51f7a3b7d5f47a425ca33735fa8e0efbb44bf28a4283bb156fed94cd6fc215e89868e82fafeb652184505c8bb1b82d85a03f3221187450b5f4169bcc484f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/middleware-logger@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9f94ae2f30a7b42d7423e3bee868e08d5ac1314e5ed9882fd5e457cb50ba87fcc7c859c0629210a64b1b9a595844988876a005c2a02f63c615ae19eee9baafba
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@aws/lambda-invoke-store": "npm:^0.2.0"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3230f4868899d2c811231f1edf19c768feb2d250bace28644672a4ddf53c4fe1f7a88c3cbbafa2bade08cb685a60743fc8dfb70c893081a1805cc3e79e76244b
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/core": "npm:^3.18.5"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/signature-v4": "npm:^5.3.5"
"@smithy/smithy-client": "npm:^4.9.8"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-stream": "npm:^4.5.6"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ecd85d7c391f53d5dc26658289428c2444781b1e612d98c8d86dca4d8ff07ac473886cfd07f396592ab14abc59651d7954e2fa532e2efbb84e29f5ecbc69f00f
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/middleware-ssec@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/44dd8474596cb64be010303e2e7509964ce98f788d7d856c29e25edaeace0ad160f85c6106b6de0098b62823261b2226aa79a0aa91ea78032a07f030343fd2ba
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@aws-sdk/util-endpoints": "npm:3.936.0"
"@smithy/core": "npm:^3.18.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1756e35c96c5289857c65c8620d9e3afe5b14259fb0bb1290f8f08d879dd62a44569b28c505e2a56e641300df4e15fd7f29e788d1301ee2a0926caab6d2d0b9f
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/nested-clients@npm:3.940.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/middleware-host-header": "npm:3.936.0"
"@aws-sdk/middleware-logger": "npm:3.936.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.936.0"
"@aws-sdk/middleware-user-agent": "npm:3.940.0"
"@aws-sdk/region-config-resolver": "npm:3.936.0"
"@aws-sdk/types": "npm:3.936.0"
"@aws-sdk/util-endpoints": "npm:3.936.0"
"@aws-sdk/util-user-agent-browser": "npm:3.936.0"
"@aws-sdk/util-user-agent-node": "npm:3.940.0"
"@smithy/config-resolver": "npm:^4.4.3"
"@smithy/core": "npm:^3.18.5"
"@smithy/fetch-http-handler": "npm:^5.3.6"
"@smithy/hash-node": "npm:^4.2.5"
"@smithy/invalid-dependency": "npm:^4.2.5"
"@smithy/middleware-content-length": "npm:^4.2.5"
"@smithy/middleware-endpoint": "npm:^4.3.12"
"@smithy/middleware-retry": "npm:^4.4.12"
"@smithy/middleware-serde": "npm:^4.2.6"
"@smithy/middleware-stack": "npm:^4.2.5"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/node-http-handler": "npm:^4.4.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/smithy-client": "npm:^4.9.8"
"@smithy/types": "npm:^4.9.0"
"@smithy/url-parser": "npm:^4.2.5"
"@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.11"
"@smithy/util-defaults-mode-node": "npm:^4.2.14"
"@smithy/util-endpoints": "npm:^3.2.5"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-retry": "npm:^4.2.5"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6695cd044d5b43f26a6d2ae533dcd56f6a8780dc0a19e152af1dfb1017fa1a1813c1e742ca7ba608561f881f4cd4e18f957293698d880d857b460dd715b8ac50
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/region-config-resolver@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/config-resolver": "npm:^4.4.3"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/67ecf8f3575abe5c6b802afd6d8ba73ce54a97e6ff613eee36c4536a61ecfc732e2ac3a938829275122c4e645b40c0838c9a3904cebf6fc6d229c149e623a7f3
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.940.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/signature-v4": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/877127f4f3a64e62e110b80b7f1c0f6e99a670e2263d4efa2c46c5ae249ee9cf5081a1e38e1f8c3df2fedffb772f6a33f348f95b2301246c9b37b46c32aa055e
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/token-providers@npm:3.940.0"
dependencies:
"@aws-sdk/core": "npm:3.940.0"
"@aws-sdk/nested-clients": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6dc90385d521521124eb65a1acdc28c792f5c353c15cc61ba08f7e2dae45f3ad81e02603eb0c244f453409becf73ec7c4e92a32048a464f07e85055a84faf0d7
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.936.0, @aws-sdk/types@npm:^3.222.0":
version: 3.936.0
resolution: "@aws-sdk/types@npm:3.936.0"
dependencies:
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6f7eeabd0ada675b3b8e969d512f7ce29602a1dd6af154e3d6977f0a6f03084ca3be9498d091142369636a7b7d9f1b22e58156c741d1d088c4939581848054bb
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.893.0":
version: 3.893.0
resolution: "@aws-sdk/util-arn-parser@npm:3.893.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/c8bbc1e258674e791929f1259a3f2422433c0b8c5470808a958ef4320bb9ca7c27783b617da3b9e04d9a1cd1d0b547da2858249dbec816f1098c02731b551aac
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/util-endpoints@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/types": "npm:^4.9.0"
"@smithy/url-parser": "npm:^4.2.5"
"@smithy/util-endpoints": "npm:^3.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/13b1ae923ea8c09cb8ea91e7fec6d4c3138300140a23a437348dea826f50c00bf1331d4b1b1169232bedb311cbc3cc51284bd8d57820d9b028f928d06c61573f
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.893.0
resolution: "@aws-sdk/util-locate-window@npm:3.893.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/ed2232d1eff567a7fa96bed87d56f03ac183dc20ba0ea262edb35f0b66aea201b987f447a5c383adc5694c80275700345946c0ad3183b30a6f9ec2f89be789d8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.936.0":
version: 3.936.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.936.0"
dependencies:
"@aws-sdk/types": "npm:3.936.0"
"@smithy/types": "npm:^4.9.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5dec40c3ca7cfe0779cadcd8c67d8aa174a385bd38ebe0c54b01b2554c833519dd2714f68aa1809d5268d8614167f3187199f5f28559a2992cc5a5a816458e64
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.940.0":
version: 3.940.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.940.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.940.0"
"@aws-sdk/types": "npm:3.936.0"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/0287c87d3e4bb8f679c54123314ed164013b357ad7a8eefd1685ecef14c6fed062e31e9a689c6e761acc49a1f3eb1903a95d450f823c76fb89f49a4729a83a93
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.930.0":
version: 3.930.0
resolution: "@aws-sdk/xml-builder@npm:3.930.0"
dependencies:
"@smithy/types": "npm:^4.9.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/f46b8544ef54083944c179e85e3468023f5b960354f0c4e0c5261918c42d6a56a23807d3c88a73fe982b38f40e5d4e7e9e6885ebad7fec0df7be83dc7596abb6
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.0":
version: 0.2.1
resolution: "@aws/lambda-invoke-store@npm:0.2.1"
checksum: 10c0/7fdfd6e4b175d36dae522556efc51b0f7445af3d55e516acee0f4e52946833ec9655be45cb3bdefec5974c0c6e5bcca3ad1bce7d397eb5f7a2393623867fb4b2
languageName: node
linkType: hard
"@gulpjs/messages@npm:^1.1.0":
version: 1.1.0
resolution: "@gulpjs/messages@npm:1.1.0"
checksum: 10c0/3833c865a8a011938509863a6e92dca7b076823c0f2936547aad9170ad176c78174e200b087d3cd7dff98360ecfcaa6776650924e2c64399125d39ffb9ad885c
languageName: node
linkType: hard
"@gulpjs/to-absolute-glob@npm:^4.0.0":
version: 4.0.0
resolution: "@gulpjs/to-absolute-glob@npm:4.0.0"
dependencies:
is-negated-glob: "npm:^1.0.0"
checksum: 10c0/acddf10466bfff672e7d09d5b7d9fb2d9d50dff3bcf6d4cc3b3df364ea0ccad6e7a8d8ba0f474f880ff18a76ebbcc09b3f4d6d12d2913e3469361d5539a72110
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@npmcli/agent@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/agent@npm:4.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^11.2.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/f7b5ce0f3dd42c3f8c6546e8433573d8049f67ef11ec22aa4704bc41483122f68bf97752e06302c455ead667af5cb753e6a09bff06632bc465c1cfd4c4b75a53
languageName: node
linkType: hard
"@npmcli/fs@npm:^5.0.0":
version: 5.0.0
resolution: "@npmcli/fs@npm:5.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/26e376d780f60ff16e874a0ac9bc3399186846baae0b6e1352286385ac134d900cc5dafaded77f38d77f86898fc923ae1cee9d7399f0275b1aa24878915d722b
languageName: node
linkType: hard
"@smithy/abort-controller@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/abort-controller@npm:4.2.5"
dependencies:
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aaca4d8a87100f4b8805bb034cae9315b9bf813a029576d3417a1a1ecd5c1d9e92907349ffaf9d6606c4fc20483ac28864565c1e6dec6f2a7d8709522c8b5290
languageName: node
linkType: hard
"@smithy/chunked-blob-reader-native@npm:^4.2.1":
version: 4.2.1
resolution: "@smithy/chunked-blob-reader-native@npm:4.2.1"
dependencies:
"@smithy/util-base64": "npm:^4.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/63831fe47a5b3a1ea6821846a5fb009298da57159e4818238e8110b77245805c1a07cb854df7955a39de1f5f2dfb7c8803ac942117e622665e089d715cb2041c
languageName: node
linkType: hard
"@smithy/chunked-blob-reader@npm:^5.2.0":
version: 5.2.0
resolution: "@smithy/chunked-blob-reader@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/9fe95b788e022ce2b59c8cab607c8f71d73cce367329871d2a7eafdc0d77cec8d1939fe8141f446bbe4051dcfffce864a562762ac2691c368df3b6c2f6ed62b3
languageName: node
linkType: hard
"@smithy/config-resolver@npm:^4.4.3":
version: 4.4.3
resolution: "@smithy/config-resolver@npm:4.4.3"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.5"
"@smithy/util-middleware": "npm:^4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/e28844ea32776b2d2790e134bdfcb700f5a8f4bcd7aeac9869ddac635012eb2911d5abbddf36ae63703dff3af435015095b381b17a3cb4d2b1ba1c02cdc9f314
languageName: node
linkType: hard
"@smithy/core@npm:^3.18.5, @smithy/core@npm:^3.18.6":
version: 3.18.6
resolution: "@smithy/core@npm:3.18.6"
dependencies:
"@smithy/middleware-serde": "npm:^4.2.6"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-stream": "npm:^4.5.6"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/930a34641f4e9d97877a0348e8338eebaf476d9adad4d15f8548b978db0776da3dae5c421ca01ae14ea537622479a26ebcee3561f0471a65dcf6100776e37d5f
languageName: node
linkType: hard
"@smithy/credential-provider-imds@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/credential-provider-imds@npm:4.2.5"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/property-provider": "npm:^4.2.5"
"@smithy/types": "npm:^4.9.0"
"@smithy/url-parser": "npm:^4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/98efbb03e75d71392baac12755c677b72bbb239b84ff3e776aabc0d192f4501d35da8b81956b48e266501eeff37d3bde56ab188fefb5422bf107a0f20bfd7674
languageName: node
linkType: hard
"@smithy/eventstream-codec@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/eventstream-codec@npm:4.2.5"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-hex-encoding": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4fbfe558291502af7afb86af3217d283d9a149f63a4b9871e54cfd9a295ec8e276df7e6c924728e023ac897c3f124f5ff3954037b6e9344b9f43f681f2ffa4b7
languageName: node
linkType: hard
"@smithy/eventstream-serde-browser@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/eventstream-serde-browser@npm:4.2.5"
dependencies:
"@smithy/eventstream-serde-universal": "npm:^4.2.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ea7d26520aa51ddb4eec0c30d4a1a2a016c3ca111f112fb6ff578c8c64027f9982b63368fd185fda7d19ddbdbd0c73a4314c08b151e19bf6d32690fa0794aa32
languageName: node
linkType: hard
"@smithy/eventstream-serde-config-resolver@npm:^4.3.5":
version: 4.3.5
resolution: "@smithy/eventstream-serde-config-resolver@npm:4.3.5"
dependencies:
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/122336be4a488cb6cd3ce2c99c8bfdab0055a2cc26edf1b18ed133cdae37ad1619229440d7a14e555b10236051af74749e12a92b1cc6e8563311ee4de1525749
languageName: node
linkType: hard
"@smithy/eventstream-serde-node@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/eventstream-serde-node@npm:4.2.5"
dependencies:
"@smithy/eventstream-serde-universal": "npm:^4.2.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1b06fe0c4d70f1e07c27c5c17eb75cd2947a05533f2741c5256a96ce2dd65f34098d99512c60a0d3a0748dd88d7b00976d67231d3d0a9e93099eba9322e69ab8
languageName: node
linkType: hard
"@smithy/eventstream-serde-universal@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/eventstream-serde-universal@npm:4.2.5"
dependencies:
"@smithy/eventstream-codec": "npm:^4.2.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eff3c79b57dfbdbc44d12f50a801ec725063ed2f8f311b149a4846db0a48ee6fb3c540f085bf58dc93e1dee329d4d8ae076cb38f22cd14d9acd3f20db6e23119
languageName: node
linkType: hard
"@smithy/fetch-http-handler@npm:^5.3.6":
version: 5.3.6
resolution: "@smithy/fetch-http-handler@npm:5.3.6"
dependencies:
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/querystring-builder": "npm:^4.2.5"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-base64": "npm:^4.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8ae0401c69cf941bc2716d0372fad715f7d80e23c5aba5e30ac3abc632a02de5895a417419064324c6853857c7bcffab45fc39393cc0b46d07a11b591015a68a
languageName: node
linkType: hard
"@smithy/hash-blob-browser@npm:^4.2.6":
version: 4.2.6
resolution: "@smithy/hash-blob-browser@npm:4.2.6"
dependencies:
"@smithy/chunked-blob-reader": "npm:^5.2.0"
"@smithy/chunked-blob-reader-native": "npm:^4.2.1"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/53f125cb48acc55fb5093d4c88cb7122ff140e357bf85588fc5ce82c849a74401be9921739d5bc1a16431ffdc8bf8a54e412d5f4f7f703998f15c912e4e706e4
languageName: node
linkType: hard
"@smithy/hash-node@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/hash-node@npm:4.2.5"
dependencies:
"@smithy/types": "npm:^4.9.0"
"@smithy/util-buffer-from": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e0c24b8b93be02a491303a014ba57e2bb746f3f8905df330d8a480c94480803e0f93d76cdbc3d8229b7673a22e68b23ee6f5ce4d6db1ac2c427cc36e804fedcf
languageName: node
linkType: hard
"@smithy/hash-stream-node@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/hash-stream-node@npm:4.2.5"
dependencies:
"@smithy/types": "npm:^4.9.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/11a8731ad277e9ecdaa53637eaed4a81cc23d1d47289460fb4ec50d593bd09ef91dba02375d6c422ae837f5dc45ebd99209b5794facf938b899268bc76ad009b
languageName: node
linkType: hard
"@smithy/invalid-dependency@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/invalid-dependency@npm:4.2.5"
dependencies:
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0b3e7608d3c145ad557c04eb5b0f7f10dd93f5eaf1d36b724b0e4ff3c3f500893e19b8ecf02ede4822bc36c049a4e03b69890a37e776a4ac6cfcc8e2f6fa843e
languageName: node
linkType: hard
"@smithy/is-array-buffer@npm:^2.2.0":
version: 2.2.0
resolution: "@smithy/is-array-buffer@npm:2.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/2f2523cd8cc4538131e408eb31664983fecb0c8724956788b015aaf3ab85a0c976b50f4f09b176f1ed7bbe79f3edf80743be7a80a11f22cd9ce1285d77161aaf
languageName: node
linkType: hard
"@smithy/is-array-buffer@npm:^4.2.0":
version: 4.2.0
resolution: "@smithy/is-array-buffer@npm:4.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/8e3e21cff5929d627bbf4a9beded28bd54555cfd37772226290964af6950cc10d700776a2ce7553f34ddf88a2e7e3d4681de58c94e9805592d901fc0f32cb597
languageName: node
linkType: hard
"@smithy/md5-js@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/md5-js@npm:4.2.5"
dependencies:
"@smithy/types": "npm:^4.9.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0a7c4c8b330482181beb14ef618d3fb77c6282c2f6880df24db04e1149dfeff66455001a3320805a8761e34b1dc3b520f3110c5ef3126bf54d42ca15b160860b
languageName: node
linkType: hard
"@smithy/middleware-content-length@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/middleware-content-length@npm:4.2.5"
dependencies:
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/672a29ab57b80dcebd841624c6a762980b17dc658ca0f7c948c0739fedacf3c6a43d0c3f63e79f13aa4069d9fb1f52266bcd5980d9e6907b2f62b918c286b861
languageName: node
linkType: hard
"@smithy/middleware-endpoint@npm:^4.3.12, @smithy/middleware-endpoint@npm:^4.3.13":
version: 4.3.13
resolution: "@smithy/middleware-endpoint@npm:4.3.13"
dependencies:
"@smithy/core": "npm:^3.18.6"
"@smithy/middleware-serde": "npm:^4.2.6"
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/shared-ini-file-loader": "npm:^4.4.0"
"@smithy/types": "npm:^4.9.0"
"@smithy/url-parser": "npm:^4.2.5"
"@smithy/util-middleware": "npm:^4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/88cd7cd7e66e46683ada7714a407c54bb8a3b69d615d85c2ec08774eda1afbfcc2fe28f46103c8915a9ef5ddc78c69e383572a4f7db696d49a3e945570a14147
languageName: node
linkType: hard
"@smithy/middleware-retry@npm:^4.4.12":
version: 4.4.13
resolution: "@smithy/middleware-retry@npm:4.4.13"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.5"
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/service-error-classification": "npm:^4.2.5"
"@smithy/smithy-client": "npm:^4.9.9"
"@smithy/types": "npm:^4.9.0"
"@smithy/util-middleware": "npm:^4.2.5"
"@smithy/util-retry": "npm:^4.2.5"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bcf07e6697f6099290a7e44b52c9342a4116c407ed3b96c17aff0dbdb45e29b098d4483dc86af9cf4c8844969d7bd62275aa8d1813f24e0144b8f0eb8ad31f73
languageName: node
linkType: hard
"@smithy/middleware-serde@npm:^4.2.6":
version: 4.2.6
resolution: "@smithy/middleware-serde@npm:4.2.6"
dependencies:
"@smithy/protocol-http": "npm:^5.3.5"
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c7b4f806f3664573f119b35b91f4adaa62ec2501bae37133ca5837b24a879514812c0820345340a3281374307bd4f468c0da058c2fe0b854baa5db114403326a
languageName: node
linkType: hard
"@smithy/middleware-stack@npm:^4.2.5":
version: 4.2.5
resolution: "@smithy/middleware-stack@npm:4.2.5"
dependencies:
"@smithy/types": "npm:^4.9.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c88476053920bb54dbf0c407b22cf5e17f497def265ee6bbdacd559144acb3142082e9f5439745da3d96655aa0aafdbb33cab14ba02ec4c3b108eab512c612b8
languageName: node
linkType: hard