forked from owid/owid-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
20813 lines (18812 loc) · 726 KB
/
yarn.lock
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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@adobe/css-tools@npm:^4.3.0":
version: 4.3.3
resolution: "@adobe/css-tools@npm:4.3.3"
checksum: 10/0e77057efb4e18182560855503066b75edca98671be327d3f8a7ae89ec3da6821e693114b55225909fca00d7e7ed8422f3d79d71fe95dd4d5df1f2026a9fda02
languageName: node
linkType: hard
"@algolia/autocomplete-core@npm:1.17.2":
version: 1.17.2
resolution: "@algolia/autocomplete-core@npm:1.17.2"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.17.2"
"@algolia/autocomplete-shared": "npm:1.17.2"
checksum: 10/7d178bccbcf16cca6b2244596a2e69302a30d5a3cae2373a962eca8b1883517d542f94cd2a43512727160478ede7bc0ff00b619194ab3294df879c6bd966dd83
languageName: node
linkType: hard
"@algolia/autocomplete-js@npm:1.17.2, @algolia/autocomplete-js@npm:^1.17.2":
version: 1.17.2
resolution: "@algolia/autocomplete-js@npm:1.17.2"
dependencies:
"@algolia/autocomplete-core": "npm:1.17.2"
"@algolia/autocomplete-preset-algolia": "npm:1.17.2"
"@algolia/autocomplete-shared": "npm:1.17.2"
htm: "npm:^3.1.1"
preact: "npm:^10.13.2"
peerDependencies:
"@algolia/client-search": ">= 4.5.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10/0d1771406530161c939be78507e813db5d525bf261cf32b1969e302830cc5f24fb06f40f21f956660fe7fe1d5477aa2375ad9bdd269bab8d0ad06ed1141002f9
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.17.2":
version: 1.17.2
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.17.2"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.2"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10/e47f3cb65efeb9631610326fa53e42c4d6c6e790b55fefba87883921a2018abc98b4a52fa72b18eff08758d6745279edb957adeb57f4c212db1f326bfef9528e
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-recent-searches@npm:^1.17.2":
version: 1.17.2
resolution: "@algolia/autocomplete-plugin-recent-searches@npm:1.17.2"
dependencies:
"@algolia/autocomplete-core": "npm:1.17.2"
"@algolia/autocomplete-js": "npm:1.17.2"
"@algolia/autocomplete-preset-algolia": "npm:1.17.2"
"@algolia/autocomplete-shared": "npm:1.17.2"
peerDependencies:
"@algolia/client-search": ">= 4.5.1 < 6"
checksum: 10/790f163d5aed6feaf159cf00e202595c47dfcb038ac6cccfc07b8ccb90cc9023fbf8d59b8631e93edc780e101674d7f62c1d88c1e45b53e64bd50e648beedd5e
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.17.2":
version: 1.17.2
resolution: "@algolia/autocomplete-preset-algolia@npm:1.17.2"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.2"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10/dcd57be23cbbdb26566ddaf2397e5fbe5293ceae0656fae77e06d51bc9917151070a9ef6bf49eca61351c4fbb287d30688402df73c09b58e6926e96dc1dc8f71
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.17.2":
version: 1.17.2
resolution: "@algolia/autocomplete-shared@npm:1.17.2"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10/ff61b0f1ee8e54276ed1af2a2a12946aa6386e64f248d5aa1ebc5ff601f18af2b00ef98adf699e05dc3705e16c3c9e536ba52212de46594a424705bcba7b236a
languageName: node
linkType: hard
"@algolia/autocomplete-theme-classic@npm:^1.17.2":
version: 1.17.2
resolution: "@algolia/autocomplete-theme-classic@npm:1.17.2"
checksum: 10/3e63fdeb05bdcb1ba1ce4de336bf8377048fc939719bb034638f667c82c485f7a37509246742a37190c7e69728309066ec28877ce0c526d3f0cd55e5acc971de
languageName: node
linkType: hard
"@algolia/cache-browser-local-storage@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/cache-browser-local-storage@npm:4.23.2"
dependencies:
"@algolia/cache-common": "npm:4.23.2"
checksum: 10/3b6b09666ba38f3675927f8193928e168becbb77fd3f0b27d1f7a94540be81c9837950c9e82a08502f48cff36938602ff8067575e6c12aea3869525ea3dcf69a
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/cache-common@npm:4.23.2"
checksum: 10/45cbf8feafbd13219982c178c3173c22f836e7d1b4bfc87ce346e7d6a565d45c822b3ad301afec120a1131f91f31f9c078ae897b917885277a952a9cc67515e2
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/cache-in-memory@npm:4.23.2"
dependencies:
"@algolia/cache-common": "npm:4.23.2"
checksum: 10/a89ed4320e94825effd647124fdfef18a2beee3942efa7fe865d071be04de096a8b3835cd0d872ba349681770ce9c8cf12720b9f74b0124db67b715f64c6a8fa
languageName: node
linkType: hard
"@algolia/client-account@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/client-account@npm:4.23.2"
dependencies:
"@algolia/client-common": "npm:4.23.2"
"@algolia/client-search": "npm:4.23.2"
"@algolia/transporter": "npm:4.23.2"
checksum: 10/fa180f2c9c25e455d3094627586fc880c1b88c5bb0eba7ce663792d416d887f35108202e2a7279abd4a3df7c75bf0ef7fe63c21243fe7324970b350e654a0471
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/client-analytics@npm:4.23.2"
dependencies:
"@algolia/client-common": "npm:4.23.2"
"@algolia/client-search": "npm:4.23.2"
"@algolia/requester-common": "npm:4.23.2"
"@algolia/transporter": "npm:4.23.2"
checksum: 10/9af8ca221c0e9359504e186db3435462b3252625a4e67aa5040cccca4b936c9f6cba470afb781ff474a767089d68e42c97984302e29253822d30506c929b4776
languageName: node
linkType: hard
"@algolia/client-common@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/client-common@npm:4.23.2"
dependencies:
"@algolia/requester-common": "npm:4.23.2"
"@algolia/transporter": "npm:4.23.2"
checksum: 10/032639f7a8f1e56708ffd234f91bc6785b2cc16705a1a395ec0c656208f92832840a762cbd892c758d20355aa3542355984441066f86727b33d438776c3b3f6a
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/client-personalization@npm:4.23.2"
dependencies:
"@algolia/client-common": "npm:4.23.2"
"@algolia/requester-common": "npm:4.23.2"
"@algolia/transporter": "npm:4.23.2"
checksum: 10/f5772fb083583733d0376e39e93bb3e89026e7f0ac1b4719f092a5cef110c56d3be14d6fc3e992b5e8a0ed283cdb193e25ebc81350fe92483685051ab782a367
languageName: node
linkType: hard
"@algolia/client-search@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/client-search@npm:4.23.2"
dependencies:
"@algolia/client-common": "npm:4.23.2"
"@algolia/requester-common": "npm:4.23.2"
"@algolia/transporter": "npm:4.23.2"
checksum: 10/c977e2e3d7f4df98f5f8b10f6acc91f42d6dabb72f2124e68d58afc5d2a00f6501800bc00906a25918ee43148054ba78ffda7f0acaa16d4ab34d61332280d560
languageName: node
linkType: hard
"@algolia/events@npm:^4.0.1":
version: 4.0.1
resolution: "@algolia/events@npm:4.0.1"
checksum: 10/98d239899a9dac9398f751221369523f2d7706fc4b3bc3167b66a101773d57380fc52733467c0a12be36bce969577fd4010d6ccbd08c410f9c7adc088dadf4c6
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/logger-common@npm:4.23.2"
checksum: 10/da3c48adce896c91dd7a9770f8e6378394d4c7f0cd6f50710d340e411be0c8c52cd731488822ebec2926d2cbba7d0674dead23255f43bdf3f811f10a68c80f5e
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/logger-console@npm:4.23.2"
dependencies:
"@algolia/logger-common": "npm:4.23.2"
checksum: 10/d3c82c5a6a15399621898bf8206a636be0c7edab59c22fd48c2590d77804365266a87e721b6ceee9ff97a8e5a7cd1b9353cf56dd7b3ac31b5ff36e7634decd13
languageName: node
linkType: hard
"@algolia/recommend@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/recommend@npm:4.23.2"
dependencies:
"@algolia/cache-browser-local-storage": "npm:4.23.2"
"@algolia/cache-common": "npm:4.23.2"
"@algolia/cache-in-memory": "npm:4.23.2"
"@algolia/client-common": "npm:4.23.2"
"@algolia/client-search": "npm:4.23.2"
"@algolia/logger-common": "npm:4.23.2"
"@algolia/logger-console": "npm:4.23.2"
"@algolia/requester-browser-xhr": "npm:4.23.2"
"@algolia/requester-common": "npm:4.23.2"
"@algolia/requester-node-http": "npm:4.23.2"
"@algolia/transporter": "npm:4.23.2"
checksum: 10/41c6d797576a94e2d2f70a346f5b151a77833aefb98ec988b47d3a66ba6c9dfa04d1fe6ea2bf014daab8bef1895e8872e9432c5bab957913c534ed6457dc5c7e
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/requester-browser-xhr@npm:4.23.2"
dependencies:
"@algolia/requester-common": "npm:4.23.2"
checksum: 10/a16bdcebac7febd82052fab2bb9caef6c3e84a94092c0b70f2ea3aefff825099f6c6aa02bfeaacff6c5157e3bb89bfcfd690746e34aeb988272d64c4e31fb560
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/requester-common@npm:4.23.2"
checksum: 10/a5421d2111adea993a7d917ad9292af85939d6439d1a208cd570e9943a1c41842e6e8dcda8e447bd79244a8ae79d3f1aa604863b00bfa80d2f7d95a8348b5636
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/requester-node-http@npm:4.23.2"
dependencies:
"@algolia/requester-common": "npm:4.23.2"
checksum: 10/3085543774fbdf77f043d22ec9528815408e103a9c628f84c702338f16bcbd1cf818d70c7fcb3a11c4542e5b264c56a7e30840c56fd895c5645f72ba16808fc8
languageName: node
linkType: hard
"@algolia/transporter@npm:4.23.2":
version: 4.23.2
resolution: "@algolia/transporter@npm:4.23.2"
dependencies:
"@algolia/cache-common": "npm:4.23.2"
"@algolia/logger-common": "npm:4.23.2"
"@algolia/requester-common": "npm:4.23.2"
checksum: 10/248b3d2906a12d654608af628047fb5821ed26342f6dd3c3ef177500a1608bc77043013ef694a3bc2e42907788e8c7be27250a1aa1c4c093283fc80993c43196
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
"@ant-design/colors@npm:^7.0.0, @ant-design/colors@npm:^7.0.2":
version: 7.0.2
resolution: "@ant-design/colors@npm:7.0.2"
dependencies:
"@ctrl/tinycolor": "npm:^3.6.1"
checksum: 10/631cb0229a136834b50df22fe46eda048306399bc742d42d7a75b23a1e4c8859b7544be691c3d0d47b2f77ca0e06df6bfb95b5c23737525d1a2f0471e2a3d609
languageName: node
linkType: hard
"@ant-design/cssinjs@npm:^1.21.0":
version: 1.21.0
resolution: "@ant-design/cssinjs@npm:1.21.0"
dependencies:
"@babel/runtime": "npm:^7.11.1"
"@emotion/hash": "npm:^0.8.0"
"@emotion/unitless": "npm:^0.7.5"
classnames: "npm:^2.3.1"
csstype: "npm:^3.1.3"
rc-util: "npm:^5.35.0"
stylis: "npm:^4.0.13"
peerDependencies:
react: ">=16.0.0"
react-dom: ">=16.0.0"
checksum: 10/a02251924e88dbf65b524c1e5f84a29c2c290821d379559b3f0f1e68eba82a76cbd94c55688dc06cd14259cf0137cc2f05b88d8f77f6c5ab748200f4d6499413
languageName: node
linkType: hard
"@ant-design/icons-svg@npm:^4.4.0":
version: 4.4.2
resolution: "@ant-design/icons-svg@npm:4.4.2"
checksum: 10/cb926eb6b0386c8364514fd60760a7a467bdef1146f1edd3cdfc28b025a06fc84ceb179dea773ef357de88f33f2c27f10c091d5d1bdec94c28dc02a72aa0ac0b
languageName: node
linkType: hard
"@ant-design/icons@npm:^5.3.7":
version: 5.3.7
resolution: "@ant-design/icons@npm:5.3.7"
dependencies:
"@ant-design/colors": "npm:^7.0.0"
"@ant-design/icons-svg": "npm:^4.4.0"
"@babel/runtime": "npm:^7.11.2"
classnames: "npm:^2.2.6"
rc-util: "npm:^5.31.1"
peerDependencies:
react: ">=16.0.0"
react-dom: ">=16.0.0"
checksum: 10/64cf5f9b1c95bef51e07cfd27883dd10b8b6d9d6dcd1607dcec8e2351d8c5c41cc2ec60c6a53101d22177c2f6da0cc8ca5c902eb054243a278a860e030aab575
languageName: node
linkType: hard
"@ant-design/react-slick@npm:~1.1.2":
version: 1.1.2
resolution: "@ant-design/react-slick@npm:1.1.2"
dependencies:
"@babel/runtime": "npm:^7.10.4"
classnames: "npm:^2.2.5"
json2mq: "npm:^0.2.0"
resize-observer-polyfill: "npm:^1.5.1"
throttle-debounce: "npm:^5.0.0"
peerDependencies:
react: ">=16.9.0"
checksum: 10/b38e44630936c8fa3b055c9f7cdbd510b78d18ce31fe32165be4d0e8d082ee735216daa9228881d41b79e85f22eac8deee182ed8103f23108517c72606348132
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/08bd1db17d7c772fa6e34b38a360ce77ad041164743113eefa8343c2af917a419697daf090c5854129ef19f3a9673ed1fd8446e03eb32c8ed52d2cc409b0dee7
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/239f4c59cce9abd33c01117b10553fbef868a063e74faf17edb798c250d759a2578841efa2837e5e51854f52ef57dbc40780b073cae20f89ebed6a8cc7fa06f1
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.626.0":
version: 3.626.0
resolution: "@aws-sdk/client-s3@npm:3.626.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/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/client-sts": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.620.0"
"@aws-sdk/middleware-expect-continue": "npm:3.620.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.620.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-location-constraint": "npm:3.609.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.626.0"
"@aws-sdk/middleware-ssec": "npm:3.609.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.626.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@aws-sdk/xml-builder": "npm:3.609.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/eventstream-serde-browser": "npm:^3.0.5"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.3"
"@smithy/eventstream-serde-node": "npm:^3.0.4"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-blob-browser": "npm:^3.1.2"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/hash-stream-node": "npm:^3.1.2"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/md5-js": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.1.3"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.2"
tslib: "npm:^2.6.2"
checksum: 10/26c7710e9580e2a19431405aff78033bed47679b2dcfe9d559f15ca5fde347e981ed7b4815fd95d3518841ab72773e936b6d9ebe10c0d6ff3fa009ce7c9776e1
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.624.0
checksum: 10/22d4df9edc91a1b80ced26ffaef00b2c56285f8a402896b51c7227c87ff1b1cdabd80d7e8dcccd18dda0571471dc884b232ba1ba6e20ef6fecfa283a6b9a03d5
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-sso@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/2fa1606ff6ac6d0f648af37bf2d948b483f6f039f54761b5b34a3c5b2134abe1807ac9e44dafe09f2db79e191c34a6f000c8db09dcaa4b7a2cfab57290ce2dfe
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-sts@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/d3bdfcaeffb2938556e00a41b18e116b4fa1ad981db04e63addd0ecfd2330b14ea4783fff260f1eba9a3377af9cdf67c7c34fa1b27771f17ffc315623fd3606f
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/core@npm:3.624.0"
dependencies:
"@smithy/core": "npm:^2.3.2"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-middleware": "npm:^3.0.3"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/d7496c84ed5ef8cff5e15dd175ff164df241cbca002d508bc8b7ada13ffea371b32af4c3aaec65a1ecdd1f05238feb2d2911c7043dfee80577edb17c0f593b24
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-env@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/43f1bd5e9e80acb2f83b8b64c6ac2bf112144bb1a4b8a0912546cb99497fbbc68a8104d02c6cd773fce7d66fb69f5859f25b711036654eee496905f3a51e657f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.622.0":
version: 3.622.0
resolution: "@aws-sdk/credential-provider-http@npm:3.622.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-stream": "npm:^3.1.3"
tslib: "npm:^2.6.2"
checksum: 10/f118ee561802b4e989d819fef2bc9997c20bd8f9305c5a8419e807bbcb93df8af3a1e5a76e97cb20d60b14dd7359015b696b9e9774441497fbf913bf4162646a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.624.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.622.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.624.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.624.0
checksum: 10/d40e8989f1847172c048cbccb2aff4737aefa414981c2cb9a8454f3227850e5552f40f17b02867c8b8d286c739fca516dd0e877fece608817ee8b1fb8880fc8a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/credential-provider-node@npm:3.624.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.622.0"
"@aws-sdk/credential-provider-ini": "npm:3.624.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.624.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/850a489ea964de61bd001948ceef15482ba03ef0c7e87e454cb7eff30fd19592096e25181da054b1657416d8388ea615c97d9c5f64abb1a220b4643e5762107d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-process@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/245d32be2abaa37df37703ae8bfa6e6f6fb9239168bcd54d2c7a717e6634a5691c5628d36b44dcb3fd63bb91416f95bf1ff1fabdd0d73142665e8f030a138a9e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.624.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.624.0"
"@aws-sdk/token-providers": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/f06aba78e250d7e57e666b0d070cf2284e0beb68fa80190900b593c46eee8f8b8fd07988ce32bde3edb30a481b199da24da4266bfb14298426674582866cb77c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.621.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.621.0
checksum: 10/63966d60773725c8652fb5ee3bcdd639d6e3e84c7cc90de2e15a30e79069b69461acb8e30cea8bde142bbf68d25ed1a9609eecf9f9db4cf03159c8bd257c4a95
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/5b5c13938102ddd36ff99ba5fd47d4eddba70dab133aad3a70c62312626adec4ab7c081a892971c0de39f3934cba02cc366531636e96a099c439ebcf81e6bcce
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/78868b04e775c2e4414fa214448cf106f811841635a582be4c0ac17da845bde084a244b07c926eec3955680ff2051bacd6bfa3393e64acc0482dc975a6f4cde0
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.620.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/0578a21d6364fa4eed3361e4a877c13736b4935b557fc7024e61f5d3bd826a6753356bee07e7cf3dfb6d19d6d9d13c94f7dbeb4a98fbcb9b13e2bce34b8b232d
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-host-header@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/81edf0f1dfe280eea3967bb438c4e4402b1f9de3e5b33c70f71a297c6f9460bf434297a82ba63789823f50880e09c11377f82cc7a83c3d43df394a35ac78a824
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/b5724a22b3bce967429a126f8e5dae2ed74b4801244b4aef3424aa886b094b5953c1d1cd6a71acf67cf860ca17781846d5882780be296b9d634b573da23cb8df
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-logger@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/c21b6ec3a2b430df1076dbe9ff84f0b3ca118b4c4e1d0a808ca9753d30c09e3c0e491f4b01031833c3d1c1f8bf06ae96da8bc7f9bdfb0a2ca86227f3882e183a
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/2f9ab3410cffa243bd4afaf5618609401f8e7627c0c1f78b14a3ce60ac673b9462fbf19fd0001d72562103d133d556670dae6d75d76af7191b0b0acad0e361d6
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.626.0":
version: 3.626.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.626.0"
dependencies:
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/core": "npm:^2.3.2"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.1.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/69a2a941a7667507631029e1edd3d47682a5f47329181b65ed5be8804d593fee2d4e3970c9b529ae451dc9bc46de53b82da82b3a9282b57d14abfa568cade56a
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-ssec@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/952c00e1de3f95a41c6119b04beb668922eda06113b1787a47932bd27fc5432c4ad8c26e9bc176475d9e402b04a0a835c6124568bf664b6708606037ade16531
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/5d62fb253a2bb223839b653e62a6cff2552ea3dc5ccb81a19ba40c1351cacbb843560207f4fcc568ad148196f3af99717d4793ad7c4b880a97bae30afaa17f6f
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/region-config-resolver@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.3"
tslib: "npm:^2.6.2"
checksum: 10/5b156d40b1245275a9b81fc6577f93ebe294df31f101e4b1c5418ff95b00ede8cfab33fda42a6597fd6fa6be780a89cf5a669710055110ef5a1c1507c6acf7c6
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.626.0":
version: 3.626.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.626.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.626.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/e038c86d8697ec3308cba661e39e8c5279368a9ceeb032cb888cd0b5838f1be9fa17a73bf8d55d500629bdf6935217311685f627bbe406ae6aa4846225862965
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/token-providers@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.614.0
checksum: 10/a310cbe4f2c78f68c00bfada36940e9a208ed4bc0d3ca47918c4e5694bf86809f9f177969c0bd2a0000cc24535bfe0dfa9cafb0590281f78a02d92f39169941c
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.609.0, @aws-sdk/types@npm:^3.222.0":
version: 3.609.0
resolution: "@aws-sdk/types@npm:3.609.0"
dependencies:
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/3448eef72037f2ee95f26abfd1ae33a2e626be2467126a8fb0102a0067fecbb50e99d6104e45681717617456de33d0ac518362f807091678f1303f5a896f3051
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.568.0":
version: 3.568.0
resolution: "@aws-sdk/util-arn-parser@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/b1a7f93b4f47136ee8d71bcbbd2d5d19581007f0684aff252d3bee6b9ccc7c56e765255bb1bea847171b40cdbd2eca0fb102f24cba857d1c79c54747e8ee0855
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/util-endpoints@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-endpoints": "npm:^2.0.5"
tslib: "npm:^2.6.2"
checksum: 10/6b9ed5f9d197c95147ecb1faf33798731f4699948aa3e155b1f8d57a88316bab364588991f8c079d07335f97f552846807630aeaff04a94aa279ab8d1936dec4
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.208.0
resolution: "@aws-sdk/util-locate-window@npm:3.208.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10/add2bc50d8f9601aac3665238fad85618dcb0a30b37109cf0c0d09aadc274aab61661462fff2eb2503147dbbf2fde5b3ee78c7c995e4c37e6f01c2227a3a7363
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/6b2ae481b9ecac17e47088f975d2c0205da51fc6fe60cd69d764cfc43d78ad7c2f7dd1d25b48e202cbd46ae47a4684389fb0c2998acb1b7e87b69fc7c9981b03
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/2b315f4e4e1eea4e07fc1ff4bf664dc9ea90a257b3efccdefa8a53a21bc7732dadebfb75874ddc0d840a4a514f88a8a5925bc654b4c21f3cecebfe09190660a6
languageName: node
linkType: hard