forked from ZuodaoTech/everyone-can-use-english
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
25267 lines (22948 loc) · 883 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: 10c0
"1000-hours@workspace:1000-hours":
version: 0.0.0-use.local
resolution: "1000-hours@workspace:1000-hours"
dependencies:
cheerio: "npm:^1.0.0"
markdown-it-footnote: "npm:^4.0.0"
markdown-it-ins: "npm:^4.0.0"
markdown-it-mark: "npm:^4.0.0"
markdown-it-mathjax3: "npm:^4.3.2"
markdown-it-sub: "npm:^2.0.0"
markdown-it-sup: "npm:^2.0.0"
mermaid: "npm:^11.2.1"
sass: "npm:^1.79.3"
swiper: "npm:^11.1.14"
vitepress: "npm:^1.3.4"
vitepress-plugin-mermaid: "npm:^2.0.16"
vue: "npm:^3.5.8"
languageName: unknown
linkType: soft
"1000h-portal@workspace:1000h-portal":
version: 0.0.0-use.local
resolution: "1000h-portal@workspace:1000h-portal"
dependencies:
"@nuxtjs/seo": "npm:^2.0.0-rc.21"
autoprefixer: "npm:^10.4.20"
nuxt: "npm:^3.13.2"
nuxt-og-image: "npm:^3.0.2"
postcss: "npm:^8.4.47"
sass: "npm:^1.79.3"
tailwindcss: "npm:^3.4.13"
vue: "npm:^3.5.8"
vue-router: "npm:^4.4.5"
languageName: unknown
linkType: soft
"@algolia/autocomplete-core@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-core@npm:1.9.3"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.9.3"
"@algolia/autocomplete-shared": "npm:1.9.3"
checksum: 10c0/a751b20f15c9a30b8b2d5a4f1f62fb4dbd012fb7ffec1b12308d6e7388b5a4dc83af52176634f17facb57a7727204843c5aa2f6e80efafaaf244275f44af11d9
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.9.3"
dependencies:
"@algolia/autocomplete-shared": "npm:1.9.3"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10c0/574196f66fe828be1029439032376685020524d6c729dea99caef336cc7be244d2539fa91b3fe80db80efe3420c2c05063cab3534514be6c637bf1914b17a6f6
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-preset-algolia@npm:1.9.3"
dependencies:
"@algolia/autocomplete-shared": "npm:1.9.3"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/38c1872db4dae69b4eec622db940c7a992d8530e33fbac7df593473ef404312076d9933b4a7ea25c2d401ea5b62ebd64b56aa25b5cdd8e8ba3fd309a39d9d816
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-shared@npm:1.9.3"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/1aa926532c32be6bb5384c8c0ae51a312c9d79ed7486371218dfcb61c8ea1ed46171bdc9f9b596a266aece104a0ef76d6aac2f9a378a5a6eb4460e638d59f6ae
languageName: node
linkType: hard
"@algolia/cache-browser-local-storage@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/cache-browser-local-storage@npm:4.24.0"
dependencies:
"@algolia/cache-common": "npm:4.24.0"
checksum: 10c0/68823c3b1c07dab093de98e678e2ff7fcf7a40915a157715f6f51d073e3865086be98cbbe554b7bf9e0514db5dd9e726033e27e566d9e5db059cb5059c3436cc
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/cache-common@npm:4.24.0"
checksum: 10c0/ad481ad50d7ea92d0cce525757627f4a647b5373dc6d3cbed6405d05cb83f21a110919e7133e5233d5b13c2c8f59ed9e927efdbc82e70571707709075b07d2c6
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/cache-in-memory@npm:4.24.0"
dependencies:
"@algolia/cache-common": "npm:4.24.0"
checksum: 10c0/2956600b2722f113373dbb71449f546afb5a0fb1a3d1558a1a3e957b7a630d1f25045c29646c8dbb44cdffe6ff4c9d1219bf63fc9fd8e4d5467381c7150e09f9
languageName: node
linkType: hard
"@algolia/client-account@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-account@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/client-search": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/3dd52dd692a2194eb45844280e6261192d5a4ef99aec729a09a01da5cf071fd77b37c6d164bf8877823efc1484d576068d76ada764a4f0624238a3475bc199b2
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-analytics@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/client-search": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/8d02e6d0eb0dcde099832c62fa7d7e9910b2757b4d37e07e1eefb65a12fef7e7ce3d73fda23e8ee02d53953a91efc15086016b1af5e9fea9227dfc0fc61c9f63
languageName: node
linkType: hard
"@algolia/client-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-common@npm:4.24.0"
dependencies:
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/9e75d0bb51bb04f099e823e4397d1bac6659e1ecb7c7a73a5eaf9153632d544bd6c62a4961b606490220b236361eb8b7b77a5e4c47f12aefdd2952b14ce2fd18
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-personalization@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/9193e032841ae991ce6dd8c8988608d0d83a6785681abf26055812506aaf070db8d8f44403d0270384ff39530677603d103c330a869a397181d594bebe46b4b0
languageName: node
linkType: hard
"@algolia/client-search@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/client-search@npm:4.24.0"
dependencies:
"@algolia/client-common": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/d161235014fa73acc0ff04d737c695b7357c060d31db6d602464b27ba846208c6aeb35b179e76d4c33b51329b77de0c460f6cb21b66d364c18a5534874c7b987
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/logger-common@npm:4.24.0"
checksum: 10c0/1ebe93901a2b3ce41696b535d028337c1c6a98a4262868117c16dd603cc8bb106b840e45cf53c08d098cf518e07bedc64a59cc86bef18795dc49031c2c208d31
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/logger-console@npm:4.24.0"
dependencies:
"@algolia/logger-common": "npm:4.24.0"
checksum: 10c0/fdfa3983e6c38cc7b69d66e1085ac702e009d693bd49d64b27cad9ba4197788a8784529a8ed9c25e6ccd51cc4ad3a2427241ecc322c22ca2c8ce6a8d4d94fe69
languageName: node
linkType: hard
"@algolia/recommend@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/recommend@npm:4.24.0"
dependencies:
"@algolia/cache-browser-local-storage": "npm:4.24.0"
"@algolia/cache-common": "npm:4.24.0"
"@algolia/cache-in-memory": "npm:4.24.0"
"@algolia/client-common": "npm:4.24.0"
"@algolia/client-search": "npm:4.24.0"
"@algolia/logger-common": "npm:4.24.0"
"@algolia/logger-console": "npm:4.24.0"
"@algolia/requester-browser-xhr": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
"@algolia/requester-node-http": "npm:4.24.0"
"@algolia/transporter": "npm:4.24.0"
checksum: 10c0/685fb5c1d85d7b9fd39d9246b49da5be4199fecc144bb350ed92fc191b66e4e1101ee6df9ca857ac5096f587638fa3366e01ddca0258f11000aa092ed68daea3
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/requester-browser-xhr@npm:4.24.0"
dependencies:
"@algolia/requester-common": "npm:4.24.0"
checksum: 10c0/2d277b291bcc0a388f114116879c15a96c057f698b026c32e719b354c2e2e03e05b3c304f45d2354eb4dd8dfa519d481af51ce8ef19b6fb4fd6d384cf41373de
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/requester-common@npm:4.24.0"
checksum: 10c0/cf88ca1f04f4243515bbfa05d7cf51afe6a57904390d9e1ccab799bae20f6fa77e954d9eee9d5c718086582aeb478e271ccf1d5a6a5ab943494250dce820268e
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/requester-node-http@npm:4.24.0"
dependencies:
"@algolia/requester-common": "npm:4.24.0"
checksum: 10c0/e9cef1463f29035a44f12941ddeb343a213ff512c61ade46a07db19b2023f49a5ac12024a3f56d8b9c0c5b2bd32466030c5e27b26a6a6e17773b810388ddb3b7
languageName: node
linkType: hard
"@algolia/transporter@npm:4.24.0":
version: 4.24.0
resolution: "@algolia/transporter@npm:4.24.0"
dependencies:
"@algolia/cache-common": "npm:4.24.0"
"@algolia/logger-common": "npm:4.24.0"
"@algolia/requester-common": "npm:4.24.0"
checksum: 10c0/9eee8e6613c8d2a5562e4df284dc7b0804a7bf80586fd8512ad769dc4829f947a334480378d94efd3cc57ca4d400886eb677786a3c5664f85881093f9e27cab7
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
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: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@andrkrn/ffprobe-static@npm:^5.2.0":
version: 5.2.0
resolution: "@andrkrn/ffprobe-static@npm:5.2.0"
dependencies:
"@derhuerst/http-basic": "npm:^8.2.0"
env-paths: "npm:^2.2.0"
https-proxy-agent: "npm:^5.0.0"
progress: "npm:^2.0.3"
checksum: 10c0/fa151b2ef214e43ca126a5ac34b5f7fcc90884a98bf7b0445f59db50872fcc637b199eb4a8835fbad2be53ed91be4b85958972012f2dfb53139658a4b06972cc
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^0.4.0":
version: 0.4.1
resolution: "@antfu/install-pkg@npm:0.4.1"
dependencies:
package-manager-detector: "npm:^0.2.0"
tinyexec: "npm:^0.3.0"
checksum: 10c0/af47a84e77f3f69077ec464e0a9e82791666693380fc8ed9867f388f5c0cd8421e2642b9deefc7d4adb7b8cfb9dd1a715b25f9a974d023b10779cad0885439ef
languageName: node
linkType: hard
"@antfu/utils@npm:^0.7.10, @antfu/utils@npm:^0.7.7":
version: 0.7.10
resolution: "@antfu/utils@npm:0.7.10"
checksum: 10c0/98991f66a4752ef097280b4235b27d961a13a2c67ef8e5b716a120eb9823958e20566516711204e2bfb08f0b935814b715f49ecd79c3b9b93ce32747ac297752
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":
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-polly@npm:^3.583.0":
version: 3.654.0
resolution: "@aws-sdk/client-polly@npm:3.654.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.654.0"
"@aws-sdk/client-sts": "npm:3.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-stream": "npm:^3.1.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/656376471632a28db3d3317c68b5e8d4b6be3cb7107c0a5617232466f040e1f770daa2a0f6acc694298e6a33136bec4960ef5898d95ad5ce1c0f76a6b39cda68
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.654.0":
version: 3.657.0
resolution: "@aws-sdk/client-s3@npm:3.657.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.654.0"
"@aws-sdk/client-sts": "npm:3.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.654.0"
"@aws-sdk/middleware-expect-continue": "npm:3.654.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.657.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-location-constraint": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.654.0"
"@aws-sdk/middleware-ssec": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@aws-sdk/xml-builder": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/eventstream-serde-browser": "npm:^3.0.9"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.6"
"@smithy/eventstream-serde-node": "npm:^3.0.8"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-blob-browser": "npm:^3.1.5"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/hash-stream-node": "npm:^3.1.5"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/md5-js": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-stream": "npm:^3.1.6"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.5"
tslib: "npm:^2.6.2"
checksum: 10c0/ee49e8751b8bd6a6eeffc01ea4a0ced6e3408beb9dfdcfad08ce8483e92aac3db57a15c0b8b481bc6a2e335e9e09c5916f74d20db9f2b89d07ad0bb06a2df5e7
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10c0/0b377b7c1fb9913d58817dab8bbcefe9361a74b9a512a50315173547ade3e84b4f101cee7415ba90985c67419edc1542938cae8e5ef0ed83a44ae9a687c88eb1
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sso@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/962958406a0a396133681e1a0d4d2ed9103ee0a1ef7ca55d728b04bf70e601c054b71d3a44aca1319cbe0eb2d4f026be5eef5f56bc262c98f5a1f71ebf46e7b6
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sts@npm:3.654.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.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/14325d58391c5c66b253c22db01da784590d9575624a1ad54eec0375787e47201fa5d986cbb5c021371f3d9494a738edc4a463056d7b2dc23a2644054926617b
languageName: node
linkType: hard
"@aws-sdk/client-transcribe-streaming@npm:^3.583.0":
version: 3.654.0
resolution: "@aws-sdk/client-transcribe-streaming@npm:3.654.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.654.0"
"@aws-sdk/client-sts": "npm:3.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/eventstream-handler-node": "npm:3.654.0"
"@aws-sdk/middleware-eventstream": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-sdk-transcribe-streaming": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/middleware-websocket": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/eventstream-serde-browser": "npm:^3.0.9"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.6"
"@smithy/eventstream-serde-node": "npm:^3.0.8"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ac55e95513e5f6096e06f32f2a281a4299c1030224819cdf14e665f0a64517dbe5af8b4c4c936f9806eea6557f4b00b1227aa326bfb73c3c759a71e3cea3ae4d
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/core@npm:3.654.0"
dependencies:
"@smithy/core": "npm:^2.4.3"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^3.0.6"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/da28677ed50051abd1acaa5b17481b1da328bfb472d3e9b3ddc29ec090081dd044f97bef9ae2b1d6666db83351812fcb5b426f7d07e9d5845884089485dbb922
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-env@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/2ecce2029c7b304450bd5564cb17934b71140fb8fe57bf990c49047b19c434ce820b6d6e169377029ab3260d0d03af2fa976e7cc157f34e50136b71b6f3543f7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-http@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-stream": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10c0/525c13f872c7ff3d923cf5125ed434ce8ec07b14e395712aa014ecfef361fe0029301d2e234771425d7e94ca946f83b1c493c65cb38c41fc2424371f70f9516a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.654.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.654.0"
"@aws-sdk/credential-provider-http": "npm:3.654.0"
"@aws-sdk/credential-provider-process": "npm:3.654.0"
"@aws-sdk/credential-provider-sso": "npm:3.654.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/credential-provider-imds": "npm:^3.2.3"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10c0/1b8767645e1db257d0861b600a1d5121790aa922bd88716997567933d3b8c55c8c10d2a99058ec4efd6cbffc855f1d666b40e3bccbe072e1f3a9571700ae1712
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-node@npm:3.654.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.654.0"
"@aws-sdk/credential-provider-http": "npm:3.654.0"
"@aws-sdk/credential-provider-ini": "npm:3.654.0"
"@aws-sdk/credential-provider-process": "npm:3.654.0"
"@aws-sdk/credential-provider-sso": "npm:3.654.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/credential-provider-imds": "npm:^3.2.3"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/a18bd7157006143db7c785067965cb22e834bdf9497c9fb471ec9d16359a1ba65b4285162fda545838d6b1850fc07d03bfaa4621881d4c2c3835fe924f376b84
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-process@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/388f6dcf7522dd3fdec125e164414253b937513365ffe5a4274237e83990153f33014013562ca5d4aa38d9510d2fc747ccee81b369fca6461b0f926a049aeaef
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.654.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.654.0"
"@aws-sdk/token-providers": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5b8eb3931f747203c12049361a2cea08bdb6aa6e05a266715fe19cbed5b6c5b029b87a0261ae6fcaa878f1d0a59b52c93ce7e7def99385fca75729e098f256e4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10c0/6bafd02301ff2f5d030bb2242056be7fb02713d0ab70a43e18ac7a77d6d08460b36b7c833d9446388d93e16158fdcbb6b463754a131a962a8b14a639e01da3b2
languageName: node
linkType: hard
"@aws-sdk/eventstream-handler-node@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/eventstream-handler-node@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/eventstream-codec": "npm:^3.1.5"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/2fc4fe935351ec4c38485df4160c552ad04a25f2c26a41525dd8324badc5a0b327bf3a1a610d8b21407c57a2c4b3a9d763b1d3af0cfd80e004c8fa633dd950bf
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:^3.654.0":
version: 3.657.0
resolution: "@aws-sdk/lib-storage@npm:3.657.0"
dependencies:
"@smithy/abort-controller": "npm:^3.1.4"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
buffer: "npm:5.6.0"
events: "npm:3.3.0"
stream-browserify: "npm:3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-s3": ^3.657.0
checksum: 10c0/28e1c80b44887c3870f1c423f397355890ec68ffc4b027957335741d75675869b7280da758d3ed49b1949e3f2b4df29dee9a1594eb98412d81caff6bb07a83db
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7e2ce6c7ac7e0556e8d5acb97e893758bd45225fa2b34983b6c6b266662124f161379fb7377ba3b282fca76919c85e2d64e040a5fc5baccbf6fe59ca679161a6
languageName: node
linkType: hard
"@aws-sdk/middleware-eventstream@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-eventstream@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c9fbc70087a7a6b943fb492b0f22761010b320816ddedb5e38170e2b58134a6a001e2fc687024262ed0821a8eb32bcfa22d9d542331a777fa897547be2da5aef
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c15f81815b57876c4f8bfa7ea6f9f3185f11bcc096d08d62f109764b3be0a33d457393f658b03f093baa53eb46f356ecfa6b1f4064883509c053a9519567a536
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.657.0":
version: 3.657.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.657.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3d8e75f0d8e84d2ff6ed78e1b35e6b5509f10c1a565f7e29e2d972469c0d14a0a385087f8ec42d99b9af01e8452c91353098e17ab9b91528fbe96d32671767b6
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-host-header@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/4d027e87f8ee18424ae326a7484bf1a52258cc89037641bc7fcd9e9e34bc936e754ec4cc6ccdfa545e1ec1e1ba5361dbd539de9b0e525161d7a70433ef475802
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5b3e09667777048d53f50da237cffbef7d931b550d3a502460907f84542d30878f504cb39d4b830a7b34cbf6e9a42a14849fe8cf63d52facf23e50834d4dce8f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-logger@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/cab9e99eef8a205f6d9c0dc5db14797e8f983a32604658f517ad3f5f62f0d427784b9f11ed686024c7b2c4265d8ef3c346ccb65a7a2733449c142678b56dcaef
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/52752ca2cbc23fb29af27f58c6218b3714770898d06535da61586c4335b31b40d8c82fa05a5412aa731b65f149f496604fbe1615acdaaec989eba41116d5a48c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.654.0"
dependencies:
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/core": "npm:^2.4.3"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-stream": "npm:^3.1.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7c3a01a9eea6711b047cb6556fa9cf4db72b7aa67ea79ed751573a300894935103faa12da5a6bdb9e212d6aa235efe6865111fb8c1566d42a045a1bdb77cd2ca
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-format-url": "npm:3.654.0"
"@smithy/eventstream-serde-browser": "npm:^3.0.9"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/d010611deab77ff4e4e47b4ec52e769d1774a763c79b9ad4820d28e241c9953993404ef5bfef59038e643daaa613437d39887c80551ec07bd6da7a0306b8631d
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-signing@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^3.0.6"
tslib: "npm:^2.6.2"
checksum: 10c0/24973b244d07d6ffc6b2b2ca8236eb6e24d96dade6eb18bebda604d3fba3fe68a43c20ef87f1f459fec6ed6505e1eef77eca6ca2f35eae7cb35d79ab4f32084e
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-ssec@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"