-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
yarn.lock
24730 lines (22448 loc) · 865 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:
"@cloudflare/kv-asset-handler": "npm:^0.3.4"
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.4.0"
sass: "npm:^1.81.0"
swiper: "npm:^11.1.15"
vitepress: "npm:^1.5.0"
vitepress-plugin-mermaid: "npm:^2.0.17"
vue: "npm:^3.5.13"
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.2"
autoprefixer: "npm:^10.4.20"
nuxt: "npm:^3.14.1592"
nuxt-og-image: "npm:^4.0.0"
postcss: "npm:^8.4.49"
sass: "npm:^1.81.0"
tailwindcss: "npm:^3.4.15"
vue: "npm:^3.5.13"
vue-router: "npm:^4.5.0"
languageName: unknown
linkType: soft
"@algolia/autocomplete-core@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-core@npm:1.17.7"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.17.7"
"@algolia/autocomplete-shared": "npm:1.17.7"
checksum: 10c0/603e0f0157eed71a8fabfba2d14ca846e399dc4e10bc300eb2f018529f9ac68f689193f582b6e97828e01bb150c045bb7d251aa40950a058a191dc560895ed98
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.17.7"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.7"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10c0/4f0f6b87ca76ea2fb45bfaa8a14c206d5bead60962b80bad10fd26928a37835d61a7420cbfd07cc2f1eb027b23b2e14f5796acfc35a74a9f51653367ee95e506
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-preset-algolia@npm:1.17.7"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.7"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/eb20746cbba532f8ade62fb48b7d2b6e9b2e0b5acc33bc80071630d3da724d78242de9c06cf838bef402ce2a912e86ab018bd2f6728ecb0f981a22c65bbbb2cb
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-shared@npm:1.17.7"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/9eb0c3ab57c7bae5b9c1d4c5c58dfdab56d1f4591f7488bd3d1dfd372eb8fa03416c97e247a3fcd581cda075eaea8b973dcfa306a8085c67d71f14513e3f5c5b
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/client-abtesting@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/0fcb06e8502fbc15f35db47c6cdfa8c405c9a1751050b56966cfb67e59022b64138f19f02f6de62bb90d9f72ffd400fd8998830fc1bd8dfe7f7391c36c3166c4
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/client-analytics@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/c46d6fff92dd99b00baafedb500d6784b502cbf26b3ebcd0d1a05b8d26f93aab4cf1fa38b87612a21c0dbb30aee985d10a5016e555353fb73c249f93982e110f
languageName: node
linkType: hard
"@algolia/client-common@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/client-common@npm:5.15.0"
checksum: 10c0/94b1cbc12a453baf18306cf53e7da318bf46e3c0d0cae9763dbf7bd6a3c1ba0ee9046c087f31daf0e0a0cfd233d4b4bd4365c1ef8dcb85e9948a0791f7321df2
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/client-insights@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/e0a73f14be8d147d2ff65bb98245cdd8c0262d200f2ac19274b88fbd871e87686909731871af344cf0ff719c83915b003948b69d79b02e9c36e79eef2e776e4d
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/client-personalization@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/4a276fc8477d7a45abc631548f7512988ea0270b4376df1e608382f4e79e4d9984c7946d50d9eed223d41dd227cb9be0a6d9ee217e4cc7c8a9c020d8097d53ec
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/client-query-suggestions@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/4e891a37c8cba8ea64e615a27929387d57036452b1dd0bc0af562c33f8c08915ce9886e8a0eee7497e4669945a89c772e23b6e626baa352e492f3a18e5eb6220
languageName: node
linkType: hard
"@algolia/client-search@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/client-search@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/5121547beca7affa6568658a5c1eceec636ba1af7a76fd450d1bcb95ed8a41a21c34947cc5f5053fa55c6fab7449b79b8c128a52f8f192677b0707b6a2692a44
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.15.0":
version: 1.15.0
resolution: "@algolia/ingestion@npm:1.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/0fdc41f9be87e37dc6a8e493718929932eb051b22002f911efe76836b1ef05be0585d39ac2d2face94a03f443efbde574b8065e537fa8aa4378aadf1c7e571be
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.15.0":
version: 1.15.0
resolution: "@algolia/monitoring@npm:1.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/07f7fc607ee42e39e09a84686e30767fe83601b407a98918fd8eb9ae7a9c6a6ab7d817140d6c2565416082926bc9860214b70d398cd60974efd7925946e315ba
languageName: node
linkType: hard
"@algolia/recommend@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/recommend@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
"@algolia/requester-browser-xhr": "npm:5.15.0"
"@algolia/requester-fetch": "npm:5.15.0"
"@algolia/requester-node-http": "npm:5.15.0"
checksum: 10c0/05711b83cfd943a5020ca1322444e46ab99a855f25d24c7f22a99f2eb511674a84d0614e27e42292f3f7fb9a6665a1f3bcdbc9e309cd30368b8f77d51f2442da
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/requester-browser-xhr@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
checksum: 10c0/f3488c540abdbc653bdd0e671dc32c91bf5252c374dea4066987043fba9b63902801fe8292ed584af295274e06417b8f8deafc7b06229eba095d8b77baeadda2
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/requester-fetch@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
checksum: 10c0/d38f657f7b90fdcd0a9fb43c0bb222ed3533d461f426b2a07b0df9cc307791bc5755d3fd56eb8c938a935aeb96466c7dc16c8b3fa929218849831cab5b600114
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.15.0":
version: 5.15.0
resolution: "@algolia/requester-node-http@npm:5.15.0"
dependencies:
"@algolia/client-common": "npm:5.15.0"
checksum: 10c0/06f7b48e6ae1c57cd64beaedb5c9b417f912c4c7487cf06a8fef424077be3b844a4a5bbf7e45db8611f21ebfc2f7b5b16bbf46a8ebe372786a0ec001e37ae374
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, @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.670.0":
version: 3.699.0
resolution: "@aws-sdk/client-polly@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1ed05f608260b664accf2e64c640d31aa4beec1eef349428f57ab148341b4667cc2587378f4d00642287bf28a4da9ec7c2deefc326dcf3084514a0fe444cfcb8
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.654.0":
version: 3.699.0
resolution: "@aws-sdk/client-s3@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.696.0"
"@aws-sdk/middleware-expect-continue": "npm:3.696.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.697.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-location-constraint": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.696.0"
"@aws-sdk/middleware-ssec": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@aws-sdk/xml-builder": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/eventstream-serde-browser": "npm:^3.0.13"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.10"
"@smithy/eventstream-serde-node": "npm:^3.0.12"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-blob-browser": "npm:^3.1.9"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/hash-stream-node": "npm:^3.1.9"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/md5-js": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10c0/65afc42a25ef44506e9bc0f4c790ebc36f341d2b469ba2a5c9e18e8cbbaa0b484aacbdc9efb25d9e0f3ec4724608488beadf1b7560f26ed25f61fe43d69963ca
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.699.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.699.0
checksum: 10c0/b4d277fe4a7af3934b7528e8379901ae56ab9b9d3b6ed019d0a89f22ce2f8430edbe77ef1ced413216b378e517e32a625f3c4a4e8d6ef2bc58baefb6bc5e96d9
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/client-sso@npm:3.696.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e96c907c3385ea183181eb7dbdceb01c2b96a220f67bf6147b9a116aa197ceb2860fa54667405a7f60f365ee1c056b7039ff1ac236815894b675ee76c52862f3
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-sts@npm:3.699.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.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bdc7bc373fc518570d8d034b6e1af033c2bf272217c79ebe3e1ec3f928c5b73b4b71f6b7d0be9a95db1f909cdcbe8b5a52776f4f2290d63a78bd05ece7d9abe0
languageName: node
linkType: hard
"@aws-sdk/client-transcribe-streaming@npm:^3.672.0":
version: 3.699.0
resolution: "@aws-sdk/client-transcribe-streaming@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/eventstream-handler-node": "npm:3.696.0"
"@aws-sdk/middleware-eventstream": "npm:3.696.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-sdk-transcribe-streaming": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/middleware-websocket": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/eventstream-serde-browser": "npm:^3.0.13"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.10"
"@smithy/eventstream-serde-node": "npm:^3.0.12"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c5abd30d7941436185d3823357685fae948f55e46ed53a93af7942badff368cf1e5953ff7093192b77fb2ab36329e92dae9159f54f80184f2f69aac1722f6439
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/core@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/core": "npm:^2.5.3"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-middleware": "npm:^3.0.10"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/4a96a3e29bf6e0dcd82d8160633eb4b8a488d821a8e59c1033c79a8e0d32b2f82e241e1cf94599f48836800549e342a410318b18e055851741ddf7d5d3ad4606
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-env@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/e16987ca343f9dbae2560d0d016ca005f36b27fb094f8d32b99954d0a2874aa8230f924f2dab2a0e0aebc7ee9eda6881c5f6e928d89dc759f70a7658363e20be
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-http@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-stream": "npm:^3.3.1"
tslib: "npm:^2.6.2"
checksum: 10c0/383dd45600b0edbcc52c8e1101485569e631fb218f1776bbd4971e43a54be0adef458cb096d06d944353675136d2043da588424c78fff1c4eeeaf5229eb6774d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.699.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-env": "npm:3.696.0"
"@aws-sdk/credential-provider-http": "npm:3.696.0"
"@aws-sdk/credential-provider-process": "npm:3.696.0"
"@aws-sdk/credential-provider-sso": "npm:3.699.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.699.0
checksum: 10c0/1efb837da910ce4e8a43574f2fdceb82daecefbb7f3853d7ec97059a80a7193cf579d185d4f4b1ef67cb378db9c5d4d3058a252a75fd6a32caad257c6602765e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/credential-provider-node@npm:3.699.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.696.0"
"@aws-sdk/credential-provider-http": "npm:3.696.0"
"@aws-sdk/credential-provider-ini": "npm:3.699.0"
"@aws-sdk/credential-provider-process": "npm:3.696.0"
"@aws-sdk/credential-provider-sso": "npm:3.699.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/d2e690eb839d906409da293af7918ab20210c25428985f019b161b3cbf5deca681d4cc397c7d5a929aeaa0b90be8dbe3282bd5a9b17969c2e6ddb5c08d66e5c4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-process@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/61741aa3d9cbbc88ea31bad7b7e8253aa4a0860eef215ff8d9a8196cdaa7ca8fa3bb438500c558abc9ce78b9490c540b12180acee21a7a9276491344931c5279
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.699.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.696.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/token-providers": "npm:3.699.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/be78a04f971d716b24e4bb9ce5ecec8ed8ffe9fdeebb07d4e6138c1b833529b5260d7381af8460b00f1659eb26018bffa51c9955b24a327374dd79c2fb2ce0ab
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.696.0
checksum: 10c0/a983867c72a6c8a1fd397f8051f4b6e64f5cac1ff5afff1b2d00815096d6c819d9ad155f4724cb27ebe3c13714eeb22cc545533f4ccaaa63980308b8bef2fa4c
languageName: node
linkType: hard
"@aws-sdk/eventstream-handler-node@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/eventstream-handler-node@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/eventstream-codec": "npm:^3.1.8"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c8d856539e08fefb2582f653de3a28d8a95717252b707973cf430c07c8c8b4d9c9f40de784f7ffe152823445dd03a29f3ae4ec0be10427f4b0cf02c1da5ed571
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:^3.654.0":
version: 3.699.0
resolution: "@aws-sdk/lib-storage@npm:3.699.0"
dependencies:
"@smithy/abort-controller": "npm:^3.1.7"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/smithy-client": "npm:^3.4.4"
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.699.0
checksum: 10c0/aae6880730b5d870af10d3421be4913ecf562c3b290069c112c835e55b0928c4a4f1b953e9564e591effd7a329ed19323989dfb094d4f5170ad379da9b53e707
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2e8fd34f69466dee6884bd2501ad47b0815583ce92adebc0cd69537a084f56ec34760dcf34979a67faec70980dba3cde6fd6516576cc32b1d9f27e494d3ea62c
languageName: node
linkType: hard
"@aws-sdk/middleware-eventstream@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-eventstream@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c6de54f644a0930e471472e2af4735c680542fdb8307df04572f3da4a542e0a8014e6fc49980163ad923734e4c6662463d0ae2f8eaea58bef22d94fcfa05b255
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/1f91c500d44e2dcbf16434c40e4cf78a3c652b161bf4ccfcda03b94cd8b17d69d0058ee1932b6101643a8a2003487f1cc95e33a5972fe04366e86a3105fdfd24
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.697.0":
version: 3.697.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.697.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.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/de87a2171019e713393ac8cfe9a078a07e56327c8ad5c6c08d87a4d406ee4c4d5a0e59f4541659085329ce6ab356b7c483a498a47ee8a4b1cc075f0e21dc387d
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-host-header@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/793c61a6af5533872888d9ee1b6765e06bd9716a9b1e497fb53b39da0bdbde2c379601ddf29bd2120cc520241143bae7763691f476f81721c290ee4e71264b6e
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/300cc6148da5f49ff7ce82987af746a2af6f0bdffb8f31a07fd60d39a24ca797c89874349215f46d59dd2b5ca312ff288a6a1584b95e713c265344129a0b88b7
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-logger@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/978145de80cb21a59d525fe9611d78e513df506e29123c39d425dd7c77043f9b57f05f03edde33864d9494a7ce76b7e2a48ec38ee4cee213b470ff1cd11c229f
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/20db668ef267c62134e241511a6a5a49cbcacbf4eb28eb8fede903086e38bdc3d6d5277f5faae4bb0b3a5123a2f1c116b219c3c48d4b8aa49c12e97707736d51
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/core": "npm:^2.5.3"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1387b24256680f9d58c74db02fc32696a503d1d4299f8aaabf6b66350788105b7ae181880bd8a2dec39e3c735d98f41583dee673eab7f46c322d530b13ff51e9
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-format-url": "npm:3.696.0"
"@smithy/eventstream-serde-browser": "npm:^3.0.13"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/1c099d05371e0e04df3162302d72f0f286889aa0b271cc6469e77435310e504729b7b5490f57cff86b6d81de4a29c45c004f1f7a7d754e24b82e18388c5b23f1
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-signing@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-middleware": "npm:^3.0.10"
tslib: "npm:^2.6.2"
checksum: 10c0/f908ab289a43bf0698cd4b08c7bc778cb8cdc53793be947946b64a3296e05e7f3538817421e87e7e6840f8c43ca7df2dd6ca2f5fa5b40c25c9d043012c24a272
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-ssec@npm:3.696.0"