-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathyarn.lock
More file actions
13921 lines (12613 loc) · 494 KB
/
Copy pathyarn.lock
File metadata and controls
13921 lines (12613 loc) · 494 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
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: 672d593fd98a88709a1b488db92aabf584b6dad3e8099e04b6d2870e34a2ee668cbbe0e5406e60c0d776b9c34a91cfc427999230ad959518fed56a3db037704c
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: 3e604ad7a8d3fb10e5fe11597d593d0ae8e1d6dc06a06b8d882d5732a6e181f6a77fd4f92fb3ae9002a2007121d49e40bc6b78d83af62d36deb1b457b7f1d977
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: f5aee4a11a113ab9640474e75d398c99538aa30775f484cd519f0de0096ae0d4a6b68d2f0c685f24bd6f2425067c565bc20592c36c0dc1f4d28c1b4751a40734
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: 8c30fa1e427bf2c295077b007835b0dd9af6beb6250e0aa775cecd42a1f517ef211751e7e12c2423f39d9b1c6748b99eb7b73207eb69165abc696cc470d8659e
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: 4e075906c48a46bbb8babb60db3e6b280db405a88c68b77c1496c26218292d5ea509beae3ccc19366ca6bc944c6d37fe347d0917909900dbac86f054a19c71c7
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: f9fc2d51631950434d0f91f51c2ce17845d4e8e75971806e21604987e3186ee1e54de8a89e5349585b91cb36e56d5f058d6a45004e1bfbce1351dbb40f479152
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: 8a48788d2866e391354f256aa79b577b2ba1474b50184cbe690467de7e64a79928afece95007ab69a1556f99da97ea129487db091d94489847e14decdc7c9a6f
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: 92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
languageName: node
linkType: hard
"@aws-sdk/client-apigatewaymanagementapi@npm:^3.462.0":
version: 3.462.0
resolution: "@aws-sdk/client-apigatewaymanagementapi@npm:3.462.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.462.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.460.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10b9e387395f78ff088005bccf0ee5132378ca933fb9ce5a70a4975de531018f57f99bdc4b360a42c1c76fce03b2ddf8b09511a2c1d57985a398c867b5f615bd
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.462.0":
version: 3.462.0
resolution: "@aws-sdk/client-s3@npm:3.462.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.462.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.460.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.460.0"
"@aws-sdk/middleware-expect-continue": "npm:3.460.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.461.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-location-constraint": "npm:3.461.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.461.0"
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/middleware-ssec": "npm:3.460.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.461.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.0"
"@aws-sdk/xml-builder": "npm:3.310.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/eventstream-serde-browser": "npm:^2.0.13"
"@smithy/eventstream-serde-config-resolver": "npm:^2.0.13"
"@smithy/eventstream-serde-node": "npm:^2.0.13"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-blob-browser": "npm:^2.0.14"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/hash-stream-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/md5-js": "npm:^2.0.15"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-stream": "npm:^2.0.20"
"@smithy/util-utf8": "npm:^2.0.2"
"@smithy/util-waiter": "npm:^2.0.13"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 3b7eca58acf82b424a1df1ba44aaaf11da0327459a569e6231d7a602ce421000a3d84ff29b3829297a0ab7c8ba5db253ca4f0d9175715f4c6eb3f76ddedc8ed0
languageName: node
linkType: hard
"@aws-sdk/client-sns@npm:^3.462.0":
version: 3.462.0
resolution: "@aws-sdk/client-sns@npm:3.462.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.462.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.460.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: e43cc99624eb4015cb3bf15fdf843a3549f6d4bc27a9fde9a2617d68f4b759a03018d4363895e2c40c8bb9c8fc0e2d94523e32b4b1cb7094ae164e843165ab8d
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.447.0, @aws-sdk/client-sqs@npm:^3.462.0":
version: 3.462.0
resolution: "@aws-sdk/client-sqs@npm:3.462.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.462.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.460.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.460.0"
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/md5-js": "npm:^2.0.15"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 2d09272c5e790016a4946f0f5e9ac3a79423a30f6589fd542f736d55f910768d1cd96dc166fe60192a37ce0a758d3eb8f35a18d0907c37ce83a11c14065b7020
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/client-sso@npm:3.460.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 88506ab10de899808f6f1e56bb48133c4c8f3d57b175f590dc31ad85ef8714cc86028227b1aa4f7dc23a05470cd842b586c8cf8659d5210c5a7724c529e54b14
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.462.0":
version: 3.462.0
resolution: "@aws-sdk/client-sts@npm:3.462.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.460.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-sdk-sts": "npm:3.461.0"
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 066fe4913ab23e4917e1cc3f564000ed82e22fe16f695c3e7e059a387681bb161ee508e58ef7f4586e04f1c4885389438ac6d2dcf6e18c08c79e2d8440b65225
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/core@npm:3.451.0"
dependencies:
"@smithy/smithy-client": "npm:^2.1.15"
tslib: "npm:^2.5.0"
checksum: 6f1fd70ef3889729e987d2f9065c6b128b2886060a0babd5ab3f3e7fc835d4c5a304f8f72f270d7286dbc91fa5ff01c4e9640846a1c23d2ed32331a9e211aead
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-env@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: b2a2e84046e0d53996f2c175fdc602550926792cf0b0ff096f16720cae9dcba2beeeccac38ed3cfed5783ecf3ea22a3c3b6ee198e574836b8293183d377aa9ec
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.460.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.460.0"
"@aws-sdk/credential-provider-process": "npm:3.460.0"
"@aws-sdk/credential-provider-sso": "npm:3.460.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.460.0"
"@aws-sdk/types": "npm:3.460.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 7ab592ef92a48ae1e6b6289cc498dad7f3ea14b0ab0b7a7fb6c81ea746422d0386495b5f8169e6f98234a5488b9ef3fdc1d5573b3d6cd81e24254ef8105f161f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-node@npm:3.460.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.460.0"
"@aws-sdk/credential-provider-ini": "npm:3.460.0"
"@aws-sdk/credential-provider-process": "npm:3.460.0"
"@aws-sdk/credential-provider-sso": "npm:3.460.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.460.0"
"@aws-sdk/types": "npm:3.460.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 9e8ef3c25a98d4a5fc347344497eef1718d304e96fd23d1c497d3cca7763cdd07df3de4929acca45542badb36d719deb4f3c6cf955e176b4ef9576298eb814cb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-process@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 962a4e3b04473029362add571121a3e1076ffb5a3e45e25d2f0cb93eae0f05d066bc400908ed0c8bbfd38d6a541edaeb4d12a1485282ca93b28147af40ea02f4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.460.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.460.0"
"@aws-sdk/token-providers": "npm:3.460.0"
"@aws-sdk/types": "npm:3.460.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 5882906132978d5db957f2cd7fc67f16c0df149398372787a941b4a0366309b413aa03ac5eb04a00b0565f82244ec0c73178ca8faa193d3e235c9c8cdae1ae8c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 138b22389a4d7bf80fac23a806d255d7c8e1fd635155bedf2b47501c2cee9c2e33ac2082373f46eeba568350524bc42d96daa91500baae5ab35788e7a461dd21
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-arn-parser": "npm:3.310.0"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-config-provider": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 6e53daee503da8a10af051d55f4c84c99ff39055043f43fe9c402a67d11f28ac4cd76f6db5493921db7043fcf08c397b5eeff11f6aef7a086f56c49971dc0a68
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 1b8985828ed00bcb90639abb0445e69ef82e7285305c937a0d654d8b058fb8a002bc7f56b1df34a5b4b63b22f906442392b1162b3d9b6048192463c6e312a10c
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.461.0":
version: 3.461.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.461.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.460.0"
"@smithy/is-array-buffer": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: fa45767faaec8d5e53a1ebd4471f428b8b47069839caed4c12fef860060c82d31bb3785e4bf2804800250fe148f56b52825877d5f6fae7736ab4701b7eba971b
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-host-header@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 729ba3b0de9ca53d7bf41126c6a54fff744d133f606517db5ca9a4942c82f274a520426e1d5eb516c1e5fb5cf0393a52066d13ad9293e3981113bd3f0d967735
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.461.0":
version: 3.461.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.461.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 4fe34a4447c7820cc0ff2edbaebde0b2172f009dfd3a850aa7b0cab15a7ba9acc3610c69a50b9e3defb68cf6b70e51eaea9e405956734fce56a94fb9e98abcf1
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-logger@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 92a3692c1e1f15158c919bd15b9bff3818345710c70eb4d56d1891f6f8a7667403c7cb18d49b243f3468f742685a3113be77b62d62f2a8b05e8e5f0ef397ec5b
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: cd83c3bc0716f216470ee1c9d172d79507d0eb9243b71bdc3a2aa5a0c7ad81b811413604ba4d19b1b9537e7d63a2656ccd1a3e447fc2f86a942d7491742c517f
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.461.0":
version: 3.461.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.461.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-arn-parser": "npm:3.310.0"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-config-provider": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 3461e7a4e6636ecab76a30604eece097a304a45c91363d02e9afdee6a18d85c2cbfe9c30bece8741daf7252cddcd1cd1450548f63f13f3c5c55e9b19f5501c34
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sqs@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-hex-encoding": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 353ecef35cd4fea16c125d0118b55808dce5ce7e3007dd921fd93d78bc63f102f53beadba59c08d3d52646d053d188f80da1fb0ab579ccf14e7b04e19a8cb3f5
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sts@npm:3.461.0":
version: 3.461.0
resolution: "@aws-sdk/middleware-sdk-sts@npm:3.461.0"
dependencies:
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/types": "npm:3.460.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: caf395da9d0d1f6147ac4255f78611ad7bec56457f39d5a3813ca54ce6572e0620148be151ee6ad0787d5968ab9e826f8f0276e0b55bb68470a396adfe985db2
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.461.0":
version: 3.461.0
resolution: "@aws-sdk/middleware-signing@npm:3.461.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-middleware": "npm:^2.0.6"
tslib: "npm:^2.5.0"
checksum: fb9a726a9d8b3cde8f8d811d33d88f365e160adf4d8fce38fbf9a4a0ba7040fb46375d498ef08836f7ac62ad54bde1e2f4107ae3b03651f14c200bef4859e45c
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-ssec@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 95e48781a2abf3565a15f53df3d8ffaf136a3a87916ccf110dae753e30f862e214e8a50a12649acd0460e7e92b76d878653d0226289f4cfa348e7e7387cf0690
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: b02bcc9496e02e24818ae035b2e3f4229b7b924d8c5be8646fe83040893287bc511da1794de78817623673330fd97a6cc004769262a964fa7d4570ef658fd55d
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/region-config-resolver@npm:3.451.0"
dependencies:
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-config-provider": "npm:^2.0.0"
"@smithy/util-middleware": "npm:^2.0.6"
tslib: "npm:^2.5.0"
checksum: aa809bcff5179b2d4801f2349dfd25677cc0c3339febc9c427019292399336b5c8654cfc7e3dfc52ae89a6bf3707606afe694c3d95409ca708cda743b6b26205
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.461.0":
version: 3.461.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.461.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.461.0"
"@aws-sdk/types": "npm:3.460.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: cba4f2369121938ac6f647cc0102de89cf7a0405581a842a296e85ccea3f53b7a23b146534ce1334050f8e5df6470633f424ce006ed85b32c2d9d93bb7d3ce77
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/token-providers@npm:3.460.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 2e0d442269dd845a203b36445d9021b66ef649b4de77c187bb644691f8199b504382bc85ab97a7851d8084780b08c29dec28152c2079bc70e4837edddedebff8
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/types@npm:3.460.0"
dependencies:
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: da451aa7ee9b59c741bdb7e9cf32ad6b46cc09fb81da1c3a0a8c9af892e4595f0b01222a7dfaa997f3aadcf7c0831c9b41fa39295dc0dfbc166e7b87b7094061
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.342.0
resolution: "@aws-sdk/types@npm:3.342.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 6115dbc6fe003ed0c6db40d6442ad5fdf6055e318977ac1d4c43ee3c9f90a7d6b5579ec99fa5951de63a37959efe62bffc470ebb944617f8df7b63904e8f0959
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/util-arn-parser@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 909d76befcde663b263f28804f7702816f14aa10bd57ec77fda89cb9477e217af6f8a84ac6fa8b051b1b4701c5fe47f4931d0acafb2c6ff01ca432f5f63f15d9
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/util-endpoints@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/util-endpoints": "npm:^1.0.4"
tslib: "npm:^2.5.0"
checksum: a8cc77eeb06228dc508f3e81e40d3c06b9eb2f015c27de5979dcfebefbde36fbcb18a80da041a3302cdeb85f723cc1b7d0909ce62d65a6d40141fe181d9a750e
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.310.0
resolution: "@aws-sdk/util-locate-window@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 163f27aad377c3f798b814bea57bfe1388fbc8a8411407e4c0c23328e32d171645645ac3f4c72e14bf2430a4794b5a5966d9b40c675256b23fa6299a2eb976aa
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/types": "npm:^2.5.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 908f3d0862640bccd69f3f6d887c30e4fff5f42b77a62515e11fe57ed16e8e091723a451ad789d57bccb0ef82f8e867b09651699e4bda2431256b53837663be6
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 0c5043620f91c40a801a01a7405bcad35eea919b7feeb5250207ab3a69f77d41782f6d51e19676c7fb3be6b98946ba9737593c5016d3a6f60ba01eda6df669c6
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.259.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: bdcf29a92a9a1010b44bf8bade3f1224cb6577a6550b39df97cc053d353f2868d355c25589d61e1da54691d65350d8578a496840ad770ed916a6c3af0971f657
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/xml-builder@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: d6bcb30b5fe04723ddb3fb7e6dc9564dd1112e5abed527335a584014161cf9706012f85f9672ab50b8904370f90827ca26d1016c6911aec745dc1bc56469d76d
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.21.4":
version: 7.21.4
resolution: "@babel/code-frame@npm:7.21.4"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 99236ead98f215a6b144f2d1fe84163c2714614fa6b9cbe32a547ca289554770aac8c6a0c0fb6a7477b68cf17b9b7a7d0c81b50edfbe9e5c2c8f514cc2c09549
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.0":
version: 7.22.3
resolution: "@babel/compat-data@npm:7.22.3"
checksum: d0a1acf739faa9b11757dbf5ddb11699af31c1d5ff339831d03e477c617beb205e8127125a8406ccb6f725a97a48cb1de170534f700ef40db02d8702d835a4a0
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3":
version: 7.22.1
resolution: "@babel/core@npm:7.22.1"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.21.4"
"@babel/generator": "npm:^7.22.0"
"@babel/helper-compilation-targets": "npm:^7.22.1"
"@babel/helper-module-transforms": "npm:^7.22.1"
"@babel/helpers": "npm:^7.22.0"
"@babel/parser": "npm:^7.22.0"
"@babel/template": "npm:^7.21.9"
"@babel/traverse": "npm:^7.22.1"
"@babel/types": "npm:^7.22.0"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.2"
semver: "npm:^6.3.0"
checksum: fd275b96c6f4eed3aca6886cbd25cb1443d8c101c3a1cdfeff34cbcff0fce0c9d6776f4f58c2fbce731ab660ab47e9fecf4b918ed27058094e1f0b9c3f659427
languageName: node
linkType: hard
"@babel/generator@npm:^7.22.0, @babel/generator@npm:^7.22.3, @babel/generator@npm:^7.7.2":
version: 7.22.3
resolution: "@babel/generator@npm:7.22.3"
dependencies:
"@babel/types": "npm:^7.22.3"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: fcada8c18fb59340aadc1bee765ee02f52086d72b4fa1bd039aba504dd449f2016396c5cccf970b838c4b4fed831b500f41f1651a2de3c648d2f32a4bf3d92af
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.1":
version: 7.22.1
resolution: "@babel/helper-compilation-targets@npm:7.22.1"
dependencies:
"@babel/compat-data": "npm:^7.22.0"
"@babel/helper-validator-option": "npm:^7.21.0"
browserslist: "npm:^4.21.3"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: a5c033c2b560c037e044134653844f4f9f85b55ff24925d3831a31c794fc9749707213412aeeea3fa1abfe8817dba3072512f2909940fe17ca74452bbdf6ba28
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.1":
version: 7.22.1
resolution: "@babel/helper-environment-visitor@npm:7.22.1"
checksum: a6b4bb5505453bff95518d361ac1de393f0029aeb8b690c70540f4317934c53c43cc4afcda8c752ffa8c272e63ed6b929a56eca28e4978424177b24238b21bf9
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.21.0":
version: 7.21.0
resolution: "@babel/helper-function-name@npm:7.21.0"
dependencies:
"@babel/template": "npm:^7.20.7"
"@babel/types": "npm:^7.21.0"
checksum: 33d6e1eca48741f86f7073dc5e38220f7fef310ad5bda3354bea322b2a9a2d89a029fa82fac62514dfc16e3f57053fc9f29f11a32d9c2688d914e3a60692b4a5
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-hoist-variables@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: fd9c35bb435fda802bf9ff7b6f2df06308a21277c6dec2120a35b09f9de68f68a33972e2c15505c1a1a04b36ec64c9ace97d4a9e26d6097b76b4396b7c5fa20f
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.21.4":
version: 7.21.4
resolution: "@babel/helper-module-imports@npm:7.21.4"
dependencies:
"@babel/types": "npm:^7.21.4"
checksum: cb276e37180f541f379b36f6aa9f1bd2d2ae50ebc967bb342d2f42acf7fb4f97c474c4e82262b26f3a89c2f11c3efad54dfca152d5b86db9d3e4810fdb92121b
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.22.1":
version: 7.22.1
resolution: "@babel/helper-module-transforms@npm:7.22.1"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.1"
"@babel/helper-module-imports": "npm:^7.21.4"
"@babel/helper-simple-access": "npm:^7.21.5"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/helper-validator-identifier": "npm:^7.19.1"
"@babel/template": "npm:^7.21.9"
"@babel/traverse": "npm:^7.22.1"
"@babel/types": "npm:^7.22.0"
checksum: 66a6a964dbf64342ff9d07627b88ea12de13734b15df70cdf397ea91c8068a4b9d32ddf8dad348c5980c2c09db8ea1f1cdb9cf1b65a0f469e5b9294653c7d0a6
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.21.5
resolution: "@babel/helper-plugin-utils@npm:7.21.5"
checksum: e84986c6e17451f3868ad6a94176f40e96fde77ab89e266ab6f5d3e776544d2d5cbe003767dfef15c6de461f0dc0688000a52c1c6dae4ee9157ed8acfc46bf0e
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.21.5":
version: 7.21.5
resolution: "@babel/helper-simple-access@npm:7.21.5"
dependencies:
"@babel/types": "npm:^7.21.5"
checksum: a31207d263b860f470f0ba3bf7c5262de8d1119fa6ed3f69ee64692e3336c21b9044dce89732bb8a4c2cf50b7478157b43dc632818d3cbae49b2fd7313c9b99d
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-split-export-declaration@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: c6d3dede53878f6be1d869e03e9ffbbb36f4897c7cc1527dc96c56d127d834ffe4520a6f7e467f5b6f3c2843ea0e81a7819d66ae02f707f6ac057f3d57943a2b
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.21.5":
version: 7.21.5
resolution: "@babel/helper-string-parser@npm:7.21.5"
checksum: 8295bfa30bb84aabaf9a6243ddc2722ed8685ff3aa17ca967f71ced45bfa1ecf9fc3d88c6069de1e19ebfec50a70fa76237c8104208ca25629ab6f67f401ae9e