-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
13879 lines (12649 loc) · 484 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
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
"@antfu/ni@npm:^0.21.4":
version: 0.21.12
resolution: "@antfu/ni@npm:0.21.12"
bin:
na: bin/na.mjs
nci: bin/nci.mjs
ni: bin/ni.mjs
nlx: bin/nlx.mjs
nr: bin/nr.mjs
nu: bin/nu.mjs
nun: bin/nun.mjs
checksum: 10c0/729e03cdde75087bd1e959357fa69caf5c8ecf80087f19ac07ecceeb0def3eabbe87a8bd88a78444bea321cce8e385a1c90dca4b5146c351e32c2a516c2d9ea2
languageName: node
linkType: hard
"@anthropic-ai/sdk@npm:^0.9.1":
version: 0.9.1
resolution: "@anthropic-ai/sdk@npm:0.9.1"
dependencies:
"@types/node": "npm:^18.11.18"
"@types/node-fetch": "npm:^2.6.4"
abort-controller: "npm:^3.0.0"
agentkeepalive: "npm:^4.2.1"
digest-fetch: "npm:^1.3.0"
form-data-encoder: "npm:1.7.2"
formdata-node: "npm:^4.3.2"
node-fetch: "npm:^2.6.7"
web-streams-polyfill: "npm:^3.2.1"
checksum: 10c0/de00ec551a5731a30254e9a3a3ed76f05c0865da6cddf32d4010659f72ca2d25985dff7173af850f92ede1e3695e00105f9689aeb875f0e82dc93f1597be0d05
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/09189ada61a4ffe6b3bd363b0535438470a8cc1a83c89a2591ef2a0b91acb9c4ba95626557cddf856abb9df0d2bfdb0969512f1949b6db7bff5d17109d8beb3f
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32c@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/a5c7ec12ec23fd44c93971234176e0f3bda33d1d5ff3abe25a538f46d8a0baa312eefd179ac3f9bcca1c2d31886e3a36d1e2349b6989c59c3ea6853161095229
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/388891b86d816adb658175afeedaa6c4b4c70e83a7e94050d0425788da7fd5c1d675c5bd1588700e5168325bb342cc1063aa1ee4e519bc7f9b028b3998b69c53
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha1-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/26b51cba7f4f0412531205661d21e4a4f56cd87dbcfeb9844c4758b23029b83ff9815bd5207abbe98b62803948625d559cf177f6f6bce3af6654a6e05e0e1e31
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/c6a2d6b8176f6ab34b86f7b8c81e2beeae9d41bd4f5f375b332fbe9cbb916b94adcd70676fc7a505ba5abd4232dec1ddfcfa55877f91696d4c65f166648f3026
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/fc013b25a5813c425d4fb77c9ffbc8b5f73d2c78b423df98a1b2575a26de5ff3775c8f62fcf8ef2cc39c8af1cc651013e2c670c1a605a2e16749e06920a2d68f
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/67e5cbdebd9560244658ba4dd8610c8dc51022497780961fb5061c09618d4337e18b1ee6c71ac24b4aca175f2aa34d1390b95f8759dc293f197f2339dd5dd8c9
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/71ab6963daabbf080b274e24d160e4af6c8bbb6832bb885644018849ff53356bf82bb8000b8596cf296e7d6b14ad6201872b6b902f944e97e121eb2b2f692667
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.525.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.525.0"
"@aws-sdk/core": "npm:3.525.0"
"@aws-sdk/credential-provider-node": "npm:3.525.0"
"@aws-sdk/middleware-host-header": "npm:3.523.0"
"@aws-sdk/middleware-logger": "npm:3.523.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.523.0"
"@aws-sdk/middleware-user-agent": "npm:3.525.0"
"@aws-sdk/region-config-resolver": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@aws-sdk/util-endpoints": "npm:3.525.0"
"@aws-sdk/util-user-agent-browser": "npm:3.523.0"
"@aws-sdk/util-user-agent-node": "npm:3.525.0"
"@smithy/config-resolver": "npm:^2.1.4"
"@smithy/core": "npm:^1.3.5"
"@smithy/fetch-http-handler": "npm:^2.4.3"
"@smithy/hash-node": "npm:^2.1.3"
"@smithy/invalid-dependency": "npm:^2.1.3"
"@smithy/middleware-content-length": "npm:^2.1.3"
"@smithy/middleware-endpoint": "npm:^2.4.4"
"@smithy/middleware-retry": "npm:^2.1.4"
"@smithy/middleware-serde": "npm:^2.1.3"
"@smithy/middleware-stack": "npm:^2.1.3"
"@smithy/node-config-provider": "npm:^2.2.4"
"@smithy/node-http-handler": "npm:^2.4.1"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/smithy-client": "npm:^2.4.2"
"@smithy/types": "npm:^2.10.1"
"@smithy/url-parser": "npm:^2.1.3"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.4"
"@smithy/util-defaults-mode-node": "npm:^2.2.3"
"@smithy/util-endpoints": "npm:^1.1.4"
"@smithy/util-middleware": "npm:^2.1.3"
"@smithy/util-retry": "npm:^2.1.3"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/e5f1905cd44b5578f2c75827d7a0437e69c90d44cf6115ccc9284908f14a0b0960bdbb1f1f8b23f28b1cf971bb0083f20965ed05f47bd55150c28684635a93fd
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.521.0":
version: 3.521.0
resolution: "@aws-sdk/client-s3@npm:3.521.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:3.0.0"
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.521.0"
"@aws-sdk/core": "npm:3.521.0"
"@aws-sdk/credential-provider-node": "npm:3.521.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.521.0"
"@aws-sdk/middleware-expect-continue": "npm:3.521.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.521.0"
"@aws-sdk/middleware-host-header": "npm:3.521.0"
"@aws-sdk/middleware-location-constraint": "npm:3.521.0"
"@aws-sdk/middleware-logger": "npm:3.521.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.521.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.521.0"
"@aws-sdk/middleware-signing": "npm:3.521.0"
"@aws-sdk/middleware-ssec": "npm:3.521.0"
"@aws-sdk/middleware-user-agent": "npm:3.521.0"
"@aws-sdk/region-config-resolver": "npm:3.521.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@aws-sdk/util-endpoints": "npm:3.521.0"
"@aws-sdk/util-user-agent-browser": "npm:3.521.0"
"@aws-sdk/util-user-agent-node": "npm:3.521.0"
"@aws-sdk/xml-builder": "npm:3.521.0"
"@smithy/config-resolver": "npm:^2.1.2"
"@smithy/core": "npm:^1.3.3"
"@smithy/eventstream-serde-browser": "npm:^2.1.2"
"@smithy/eventstream-serde-config-resolver": "npm:^2.1.2"
"@smithy/eventstream-serde-node": "npm:^2.1.2"
"@smithy/fetch-http-handler": "npm:^2.4.2"
"@smithy/hash-blob-browser": "npm:^2.1.2"
"@smithy/hash-node": "npm:^2.1.2"
"@smithy/hash-stream-node": "npm:^2.1.2"
"@smithy/invalid-dependency": "npm:^2.1.2"
"@smithy/md5-js": "npm:^2.1.2"
"@smithy/middleware-content-length": "npm:^2.1.2"
"@smithy/middleware-endpoint": "npm:^2.4.2"
"@smithy/middleware-retry": "npm:^2.1.2"
"@smithy/middleware-serde": "npm:^2.1.2"
"@smithy/middleware-stack": "npm:^2.1.2"
"@smithy/node-config-provider": "npm:^2.2.2"
"@smithy/node-http-handler": "npm:^2.4.0"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/smithy-client": "npm:^2.4.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/url-parser": "npm:^2.1.2"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.2"
"@smithy/util-defaults-mode-node": "npm:^2.2.1"
"@smithy/util-endpoints": "npm:^1.1.2"
"@smithy/util-retry": "npm:^2.1.2"
"@smithy/util-stream": "npm:^2.1.2"
"@smithy/util-utf8": "npm:^2.1.1"
"@smithy/util-waiter": "npm:^2.1.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10c0/8bb47dd9223572a34ba0cad7219bed249cf49a4a7a7fcbec6144a66aab0713c9998b7fbfdbddb69bbb9f2821b08df70e2f6a50e4493b786892ab853b77a60b99
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.521.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.521.0"
"@aws-sdk/core": "npm:3.521.0"
"@aws-sdk/middleware-host-header": "npm:3.521.0"
"@aws-sdk/middleware-logger": "npm:3.521.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.521.0"
"@aws-sdk/middleware-user-agent": "npm:3.521.0"
"@aws-sdk/region-config-resolver": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@aws-sdk/util-endpoints": "npm:3.521.0"
"@aws-sdk/util-user-agent-browser": "npm:3.521.0"
"@aws-sdk/util-user-agent-node": "npm:3.521.0"
"@smithy/config-resolver": "npm:^2.1.2"
"@smithy/core": "npm:^1.3.3"
"@smithy/fetch-http-handler": "npm:^2.4.2"
"@smithy/hash-node": "npm:^2.1.2"
"@smithy/invalid-dependency": "npm:^2.1.2"
"@smithy/middleware-content-length": "npm:^2.1.2"
"@smithy/middleware-endpoint": "npm:^2.4.2"
"@smithy/middleware-retry": "npm:^2.1.2"
"@smithy/middleware-serde": "npm:^2.1.2"
"@smithy/middleware-stack": "npm:^2.1.2"
"@smithy/node-config-provider": "npm:^2.2.2"
"@smithy/node-http-handler": "npm:^2.4.0"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/smithy-client": "npm:^2.4.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/url-parser": "npm:^2.1.2"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.2"
"@smithy/util-defaults-mode-node": "npm:^2.2.1"
"@smithy/util-endpoints": "npm:^1.1.2"
"@smithy/util-middleware": "npm:^2.1.2"
"@smithy/util-retry": "npm:^2.1.2"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.521.0
checksum: 10c0/3a76257c7575b5f77948709c064b62a8c84b1be0e4f5f117c6777d43d094b9baa6153e223324ffe98f133de8ed277df69cb9ca29a3edba7c490ab4c24e3a3ccb
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.525.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.525.0"
"@aws-sdk/core": "npm:3.525.0"
"@aws-sdk/middleware-host-header": "npm:3.523.0"
"@aws-sdk/middleware-logger": "npm:3.523.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.523.0"
"@aws-sdk/middleware-user-agent": "npm:3.525.0"
"@aws-sdk/region-config-resolver": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@aws-sdk/util-endpoints": "npm:3.525.0"
"@aws-sdk/util-user-agent-browser": "npm:3.523.0"
"@aws-sdk/util-user-agent-node": "npm:3.525.0"
"@smithy/config-resolver": "npm:^2.1.4"
"@smithy/core": "npm:^1.3.5"
"@smithy/fetch-http-handler": "npm:^2.4.3"
"@smithy/hash-node": "npm:^2.1.3"
"@smithy/invalid-dependency": "npm:^2.1.3"
"@smithy/middleware-content-length": "npm:^2.1.3"
"@smithy/middleware-endpoint": "npm:^2.4.4"
"@smithy/middleware-retry": "npm:^2.1.4"
"@smithy/middleware-serde": "npm:^2.1.3"
"@smithy/middleware-stack": "npm:^2.1.3"
"@smithy/node-config-provider": "npm:^2.2.4"
"@smithy/node-http-handler": "npm:^2.4.1"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/smithy-client": "npm:^2.4.2"
"@smithy/types": "npm:^2.10.1"
"@smithy/url-parser": "npm:^2.1.3"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.4"
"@smithy/util-defaults-mode-node": "npm:^2.2.3"
"@smithy/util-endpoints": "npm:^1.1.4"
"@smithy/util-middleware": "npm:^2.1.3"
"@smithy/util-retry": "npm:^2.1.3"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.525.0
checksum: 10c0/ecadeaae9e2e069acb626cbb0de6c9171ea65b0b7497bff2b8a561ae2342f9775ae12c7b5f5ce70b85c4dd2fbec36c81b0816b9e5799c6955a3f41ed5e984abd
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/client-sso@npm:3.521.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.521.0"
"@aws-sdk/middleware-host-header": "npm:3.521.0"
"@aws-sdk/middleware-logger": "npm:3.521.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.521.0"
"@aws-sdk/middleware-user-agent": "npm:3.521.0"
"@aws-sdk/region-config-resolver": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@aws-sdk/util-endpoints": "npm:3.521.0"
"@aws-sdk/util-user-agent-browser": "npm:3.521.0"
"@aws-sdk/util-user-agent-node": "npm:3.521.0"
"@smithy/config-resolver": "npm:^2.1.2"
"@smithy/core": "npm:^1.3.3"
"@smithy/fetch-http-handler": "npm:^2.4.2"
"@smithy/hash-node": "npm:^2.1.2"
"@smithy/invalid-dependency": "npm:^2.1.2"
"@smithy/middleware-content-length": "npm:^2.1.2"
"@smithy/middleware-endpoint": "npm:^2.4.2"
"@smithy/middleware-retry": "npm:^2.1.2"
"@smithy/middleware-serde": "npm:^2.1.2"
"@smithy/middleware-stack": "npm:^2.1.2"
"@smithy/node-config-provider": "npm:^2.2.2"
"@smithy/node-http-handler": "npm:^2.4.0"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/smithy-client": "npm:^2.4.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/url-parser": "npm:^2.1.2"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.2"
"@smithy/util-defaults-mode-node": "npm:^2.2.1"
"@smithy/util-endpoints": "npm:^1.1.2"
"@smithy/util-middleware": "npm:^2.1.2"
"@smithy/util-retry": "npm:^2.1.2"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/e4f7333a68f84ea408c3e35b8e96bfbebdb2a8deab2d37e8b1280b5b396f1db0cc70fbcfea9b0b91d8fd6d3422c3678617a10ba4b4233e9282bbc5cb271f4e21
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/client-sso@npm:3.525.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.525.0"
"@aws-sdk/middleware-host-header": "npm:3.523.0"
"@aws-sdk/middleware-logger": "npm:3.523.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.523.0"
"@aws-sdk/middleware-user-agent": "npm:3.525.0"
"@aws-sdk/region-config-resolver": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@aws-sdk/util-endpoints": "npm:3.525.0"
"@aws-sdk/util-user-agent-browser": "npm:3.523.0"
"@aws-sdk/util-user-agent-node": "npm:3.525.0"
"@smithy/config-resolver": "npm:^2.1.4"
"@smithy/core": "npm:^1.3.5"
"@smithy/fetch-http-handler": "npm:^2.4.3"
"@smithy/hash-node": "npm:^2.1.3"
"@smithy/invalid-dependency": "npm:^2.1.3"
"@smithy/middleware-content-length": "npm:^2.1.3"
"@smithy/middleware-endpoint": "npm:^2.4.4"
"@smithy/middleware-retry": "npm:^2.1.4"
"@smithy/middleware-serde": "npm:^2.1.3"
"@smithy/middleware-stack": "npm:^2.1.3"
"@smithy/node-config-provider": "npm:^2.2.4"
"@smithy/node-http-handler": "npm:^2.4.1"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/smithy-client": "npm:^2.4.2"
"@smithy/types": "npm:^2.10.1"
"@smithy/url-parser": "npm:^2.1.3"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.4"
"@smithy/util-defaults-mode-node": "npm:^2.2.3"
"@smithy/util-endpoints": "npm:^1.1.4"
"@smithy/util-middleware": "npm:^2.1.3"
"@smithy/util-retry": "npm:^2.1.3"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/2a8b175ae2d6f399d2f17016ebe4a7df2e51710a35f82f77e003214738eefcd46649cd4d63983f773bef530f35d6dcf8f73741b79cbe95ec10542cc5ed66bf71
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/client-sts@npm:3.521.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.521.0"
"@aws-sdk/middleware-host-header": "npm:3.521.0"
"@aws-sdk/middleware-logger": "npm:3.521.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.521.0"
"@aws-sdk/middleware-user-agent": "npm:3.521.0"
"@aws-sdk/region-config-resolver": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@aws-sdk/util-endpoints": "npm:3.521.0"
"@aws-sdk/util-user-agent-browser": "npm:3.521.0"
"@aws-sdk/util-user-agent-node": "npm:3.521.0"
"@smithy/config-resolver": "npm:^2.1.2"
"@smithy/core": "npm:^1.3.3"
"@smithy/fetch-http-handler": "npm:^2.4.2"
"@smithy/hash-node": "npm:^2.1.2"
"@smithy/invalid-dependency": "npm:^2.1.2"
"@smithy/middleware-content-length": "npm:^2.1.2"
"@smithy/middleware-endpoint": "npm:^2.4.2"
"@smithy/middleware-retry": "npm:^2.1.2"
"@smithy/middleware-serde": "npm:^2.1.2"
"@smithy/middleware-stack": "npm:^2.1.2"
"@smithy/node-config-provider": "npm:^2.2.2"
"@smithy/node-http-handler": "npm:^2.4.0"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/smithy-client": "npm:^2.4.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/url-parser": "npm:^2.1.2"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.2"
"@smithy/util-defaults-mode-node": "npm:^2.2.1"
"@smithy/util-endpoints": "npm:^1.1.2"
"@smithy/util-middleware": "npm:^2.1.2"
"@smithy/util-retry": "npm:^2.1.2"
"@smithy/util-utf8": "npm:^2.1.1"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.521.0
checksum: 10c0/c828ddba55793d1a5d688252b0d1b1c2f231262909a7c190b7df806efa41f87f727421b77c78c8780be6791244736c790060f95c57c103cf834821c9b4fa69d5
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/client-sts@npm:3.525.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.525.0"
"@aws-sdk/middleware-host-header": "npm:3.523.0"
"@aws-sdk/middleware-logger": "npm:3.523.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.523.0"
"@aws-sdk/middleware-user-agent": "npm:3.525.0"
"@aws-sdk/region-config-resolver": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@aws-sdk/util-endpoints": "npm:3.525.0"
"@aws-sdk/util-user-agent-browser": "npm:3.523.0"
"@aws-sdk/util-user-agent-node": "npm:3.525.0"
"@smithy/config-resolver": "npm:^2.1.4"
"@smithy/core": "npm:^1.3.5"
"@smithy/fetch-http-handler": "npm:^2.4.3"
"@smithy/hash-node": "npm:^2.1.3"
"@smithy/invalid-dependency": "npm:^2.1.3"
"@smithy/middleware-content-length": "npm:^2.1.3"
"@smithy/middleware-endpoint": "npm:^2.4.4"
"@smithy/middleware-retry": "npm:^2.1.4"
"@smithy/middleware-serde": "npm:^2.1.3"
"@smithy/middleware-stack": "npm:^2.1.3"
"@smithy/node-config-provider": "npm:^2.2.4"
"@smithy/node-http-handler": "npm:^2.4.1"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/smithy-client": "npm:^2.4.2"
"@smithy/types": "npm:^2.10.1"
"@smithy/url-parser": "npm:^2.1.3"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.4"
"@smithy/util-defaults-mode-node": "npm:^2.2.3"
"@smithy/util-endpoints": "npm:^1.1.4"
"@smithy/util-middleware": "npm:^2.1.3"
"@smithy/util-retry": "npm:^2.1.3"
"@smithy/util-utf8": "npm:^2.1.1"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.525.0
checksum: 10c0/4b126afd923dcf746c5cf8a95992ca543556ea16ecc4aeb31e99bec5fbd687d4704a00945db1341f1c59ebb47b134fadefb0320439c3e4e155d4f92245520a60
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/core@npm:3.521.0"
dependencies:
"@smithy/core": "npm:^1.3.3"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/smithy-client": "npm:^2.4.0"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/ccbc59aab3d9737bb0c4a98fec99b989a3a7fd250aadb965edbb6c8a95ff2f687bb87b06c19bf79ae8e19e710b6a3027e74f3d10e89f669cd76c7f62f893ebcc
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/core@npm:3.525.0"
dependencies:
"@smithy/core": "npm:^1.3.5"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/signature-v4": "npm:^2.1.3"
"@smithy/smithy-client": "npm:^2.4.2"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/ffc560e7dc7fdd1f9139b40aba3e743507dc8d20af13c10516140f593bbf8c6881b2817a4ed6ce3c3682e07750acecfd556e187b96ad519d2fc46e040eb5494f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.525.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/b161e5b3d4c7f2204d059c5b14b06fd86c6b0c76d812a152bbe67d8dea5676d9f51950b8062252e464a34778984cab5180d0fc4444678550dad10884f43e34e1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/credential-provider-env@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/cf1f37dd179bae422cced930d46ffe41c28ce863720dfb4a97a118bace968f1c8ad101e860b067b64bdc7978c484096d55252be7506ad1af35ee828ff86fd140
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.523.0":
version: 3.523.0
resolution: "@aws-sdk/credential-provider-env@npm:3.523.0"
dependencies:
"@aws-sdk/types": "npm:3.523.0"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/69fc256404bdc555779c5e09ad76d2534e8a7ddc11a20212683038c9930a9b61e6959c6dcd86227b5607f57ca71ac2e9670ee36078710d4af3f1d71b3965e37a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/credential-provider-http@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/fetch-http-handler": "npm:^2.4.2"
"@smithy/node-http-handler": "npm:^2.4.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/smithy-client": "npm:^2.4.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/util-stream": "npm:^2.1.2"
tslib: "npm:^2.5.0"
checksum: 10c0/4ef9e73fcd1f5db141b31766d77afdeefb469f548dae4d6721903d8a933aba1d9524c0a53313a1e03be58d5dbddd4ff2160494cfe5002deefbe5e9e81691afe2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/credential-provider-http@npm:3.525.0"
dependencies:
"@aws-sdk/types": "npm:3.523.0"
"@smithy/fetch-http-handler": "npm:^2.4.3"
"@smithy/node-http-handler": "npm:^2.4.1"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/smithy-client": "npm:^2.4.2"
"@smithy/types": "npm:^2.10.1"
"@smithy/util-stream": "npm:^2.1.3"
tslib: "npm:^2.5.0"
checksum: 10c0/d555d465c73a277f712751223f7622aaeab9b90328438f75d1017ff7bc4a6bdf27a2f750893642656b31209787c3e9c57f5104af1e1469179ba8dd79c66309d6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.521.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.521.0"
"@aws-sdk/credential-provider-env": "npm:3.521.0"
"@aws-sdk/credential-provider-process": "npm:3.521.0"
"@aws-sdk/credential-provider-sso": "npm:3.521.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@smithy/credential-provider-imds": "npm:^2.2.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/87ea5111fc5f1bd80a733a44053e51b46a3ce40557ada824c438a5d4024fbb6565d4e0c121a7ca713278959f6d67d43ab3b124395289ce57998f7bd94f1a99c4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.525.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.525.0"
"@aws-sdk/credential-provider-env": "npm:3.523.0"
"@aws-sdk/credential-provider-process": "npm:3.523.0"
"@aws-sdk/credential-provider-sso": "npm:3.525.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@smithy/credential-provider-imds": "npm:^2.2.3"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/shared-ini-file-loader": "npm:^2.3.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/af815295dac3ddf2c0bb807e3ea879899941a01f2735edbd8f1344dae8ced39790f4f7638fa4957f36005c6c686f2640f343f86b5edd008c4495cdffbf16c675
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/credential-provider-node@npm:3.521.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.521.0"
"@aws-sdk/credential-provider-http": "npm:3.521.0"
"@aws-sdk/credential-provider-ini": "npm:3.521.0"
"@aws-sdk/credential-provider-process": "npm:3.521.0"
"@aws-sdk/credential-provider-sso": "npm:3.521.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@smithy/credential-provider-imds": "npm:^2.2.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/3b49ac062409ca4ce87357b8b07b00fe3379914f5b3aff6d8e91e32d8cb412cba70b2eb4d9fa86f9184cdd34e2bacfe6f662824f20c6bd18af299ad7d5bebbb2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/credential-provider-node@npm:3.525.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.523.0"
"@aws-sdk/credential-provider-http": "npm:3.525.0"
"@aws-sdk/credential-provider-ini": "npm:3.525.0"
"@aws-sdk/credential-provider-process": "npm:3.523.0"
"@aws-sdk/credential-provider-sso": "npm:3.525.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@smithy/credential-provider-imds": "npm:^2.2.3"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/shared-ini-file-loader": "npm:^2.3.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/fae41615fa5f754a6147a30bd09f73bebc543a2404266a48fa63b85f58091b2249b4b6cb2870125825bcd639bacdc852dabd268806cdd39ddcb62d20bded3e10
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/credential-provider-process@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/6c5b47cb31625ffc2d2bb0831a7c16fade56989251e0dedd00d01414ff0003fe95a9494e68b7f7a027465f21623f819faa29b930c749eb5443b2229b6035fc35
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.523.0":
version: 3.523.0
resolution: "@aws-sdk/credential-provider-process@npm:3.523.0"
dependencies:
"@aws-sdk/types": "npm:3.523.0"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/shared-ini-file-loader": "npm:^2.3.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/c0f57f365394e7b1e31564de9ce68caf5d8fb9aa0da0909878417617bd10aef2f0a61461c5f41cc3f78502f8a2d695b3983232cd970af6d3446bd860bdd33997
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.521.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.521.0"
"@aws-sdk/token-providers": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/71179dd80b22e831777e99f35d9ba6d0f6da72ccdd1810d44653c43c657ecd1465da4a7492ef0c064b391b8c59ec595c575e7b62edb130acf3cf7819053da83b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.525.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.525.0"
"@aws-sdk/token-providers": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/shared-ini-file-loader": "npm:^2.3.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/87570e1936afd74ba44693eb9122409f08d0cd8b0d53ea8d14f4d7d5161234c6ca732d6b9c692fda4ca99c7617d08d50671838818f0852162fbd21488a4d9b96
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.521.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.521.0"
"@aws-sdk/types": "npm:3.521.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/7f24e4fcb62208a44d80ec00c56f5aad153eedf124f11c88c909b7a143ed3d41a94c6e5d3e4c7a4249077974e8315e2c58021d39850478724f63fc934899fe49
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.525.0":
version: 3.525.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.525.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/f7372fed8a2674d4be63bcbebdb95fdc73803d53eab170737acf4748fb8881479c6fd6993e938b6ec6b5c6807bf3b7466dbe397818643c5ec429e7d12694f71d
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.525.0":
version: 3.525.0
resolution: "@aws-sdk/credential-providers@npm:3.525.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.525.0"
"@aws-sdk/client-sso": "npm:3.525.0"
"@aws-sdk/client-sts": "npm:3.525.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.525.0"
"@aws-sdk/credential-provider-env": "npm:3.523.0"
"@aws-sdk/credential-provider-http": "npm:3.525.0"
"@aws-sdk/credential-provider-ini": "npm:3.525.0"
"@aws-sdk/credential-provider-node": "npm:3.525.0"
"@aws-sdk/credential-provider-process": "npm:3.523.0"
"@aws-sdk/credential-provider-sso": "npm:3.525.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.525.0"
"@aws-sdk/types": "npm:3.523.0"
"@smithy/credential-provider-imds": "npm:^2.2.3"
"@smithy/property-provider": "npm:^2.1.3"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/8197afaa659058c1691c4b6daa859dc199e0e434a8b87bbd8a16a5772901a073a6b8933a55d207b8b224b9f4b03e1fb38df79c13dda60be92bb7fe7062e1feb8
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@aws-sdk/util-arn-parser": "npm:3.495.0"
"@smithy/node-config-provider": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/util-config-provider": "npm:^2.2.1"
tslib: "npm:^2.5.0"
checksum: 10c0/ca46be59a5771b2d56e67697e69ddee22944904e4f7f7183e8f5a33da7d811b10d70ad9600ef0047153efda9b5d0dd57475e0823d8fce4492ce93c7ee0c484c9
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/9cbbafa72a4b2520f2f8b266ddaa626d67bcc0d20f49548f9c864fe13dd368b25dfb8cc18ae64b92abb94411babeb490ca4df763e6fab29213cb93257f7949e7
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.521.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.521.0"
"@smithy/is-array-buffer": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/1fb2c032b27e770e4af5245309424d05a367151087fde437a70774645879c550ff2632e2d55e41e0e30087dd875a661937b4501b108c72294bf9d6136a0e4114
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-host-header@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/7c601946d45d1bde89ad3f1cdfc00fe79861fcf9c30d552598f1c6023981383062f3ec202349abbcaac5c8db9a037168a22c71255b7a46d4b78f1e9cd82ba733
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.523.0":
version: 3.523.0
resolution: "@aws-sdk/middleware-host-header@npm:3.523.0"
dependencies:
"@aws-sdk/types": "npm:3.523.0"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/3ef2d8d46ba219fff7218a9bb3766225feab445ff747b1a83a29b239dcaa84fd68dc04d32bea0105ff797f0b480f327b49a58e7cff71db2b09f704fe9966736d
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/0d67928b5332198e02e9cb23fd15b8ec29d818acfb556bc572ff4c1935d075ff8e4fda0da12303cdf675c8a85bf5ff9e0f84d2fb711a2130f22aeb4e3a79d271
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-logger@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/420abd883f7bf216e9b0d9eb979a3dd71110e1c81c1745db42c5d96e590dd1f1f994329a92cc04b91132339c61adcf6648c5258b2b8c6840faffcad6ba1da62a
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.523.0":
version: 3.523.0
resolution: "@aws-sdk/middleware-logger@npm:3.523.0"
dependencies:
"@aws-sdk/types": "npm:3.523.0"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/db5ceb0f7180649c0fdbb486d24caf913abf22c1bc3211cdba2d2e268a13114e4219e833ce3eb3d7355acfb8fa4ba403bde1d5eb6c7cebaef6bbd088db560107
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/types": "npm:^2.10.0"
tslib: "npm:^2.5.0"
checksum: 10c0/b5a98ba5d067385095ce4c2185e2d7468198a5dff2210c69aa0a728c88483af7a98b8be8bb3dcaee4db156cbf89edce29c5da80c80b8ddac6f4c4f4d31e937b5
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.523.0":
version: 3.523.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.523.0"
dependencies:
"@aws-sdk/types": "npm:3.523.0"
"@smithy/protocol-http": "npm:^3.2.1"
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10c0/17b176705d4737099000ea2c293556fe8e50052a90778888d033ece98153dce4fdf7305e1f42ae7309a2c207a5cc00ab7a236b0a34c781a658e30f8c166d5714
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@aws-sdk/util-arn-parser": "npm:3.495.0"
"@smithy/node-config-provider": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/smithy-client": "npm:^2.4.0"
"@smithy/types": "npm:^2.10.0"
"@smithy/util-config-provider": "npm:^2.2.1"
tslib: "npm:^2.5.0"
checksum: 10c0/f1ad0701dfedab304c5a28439b1dc9d300ae40b504f3b530947232d7e3a309417f68df51f43c8b9af69fd198fc5814157bf1cdac191dba5f98ec60a48f47d9ea
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-signing@npm:3.521.0"
dependencies:
"@aws-sdk/types": "npm:3.521.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.2.0"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/types": "npm:^2.10.0"
"@smithy/util-middleware": "npm:^2.1.2"
tslib: "npm:^2.5.0"
checksum: 10c0/d75c9496c8049a662ce08222ee4ddc60c74cfc1fa59d95686c7c7ee640bd26ee2d9e6b811a37dd146a5eead2cd1cb14c35f8a4fce023af6ec4d653862a84f3a4
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.521.0":
version: 3.521.0
resolution: "@aws-sdk/middleware-ssec@npm:3.521.0"