This repository was archived by the owner on Aug 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathyarn.lock
More file actions
7995 lines (7222 loc) · 278 KB
/
Copy pathyarn.lock
File metadata and controls
7995 lines (7222 loc) · 278 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: 9
cacheKey: 10
"@actions/core@npm:^1.11.1":
version: 1.11.1
resolution: "@actions/core@npm:1.11.1"
dependencies:
"@actions/exec": "npm:^1.1.1"
"@actions/http-client": "npm:^2.0.1"
checksum: 10/94f260e33607cc16567ce4c88014f069cd7da92baaa443b72cff80fdf4f1dcd18192e135df0d51ec29e8b82cfe214218715d482f2a7804efa5095737d1245f38
languageName: node
linkType: hard
"@actions/exec@npm:^1.1.1":
version: 1.1.1
resolution: "@actions/exec@npm:1.1.1"
dependencies:
"@actions/io": "npm:^1.0.1"
checksum: 10/c04bd25191e522841c7e17862d70099de8db61278d2b4c744b69ac0197a48f85c75dba548e1c29c695c4cc5363d558846b4dcd3db9013463c18ba8cf36497c6d
languageName: node
linkType: hard
"@actions/github@npm:^6.0.0":
version: 6.0.1
resolution: "@actions/github@npm:6.0.1"
dependencies:
"@actions/http-client": "npm:^2.2.0"
"@octokit/core": "npm:^5.0.1"
"@octokit/plugin-paginate-rest": "npm:^9.2.2"
"@octokit/plugin-rest-endpoint-methods": "npm:^10.4.0"
"@octokit/request": "npm:^8.4.1"
"@octokit/request-error": "npm:^5.1.1"
undici: "npm:^5.28.5"
checksum: 10/ba6a162a5727dea2f3f3fc450e02c5b336ceb65a0e26ba9ad9c62b20f4f5b2625ca347a9311a4905ef3c92378ca022caba841a283cb7f2e4175d79e3d1ecaf12
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1, @actions/http-client@npm:^2.2.0":
version: 2.2.3
resolution: "@actions/http-client@npm:2.2.3"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10/0c0a540c79e50f795d214f696710bb9c50bdf5bb1458be288140f2aae3686adec73fdb464c43da5ef94f985ac7736273efef21cb5ba5a3b09e85b403d852c04b
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 10/4de44e8d428ba9f20049c844b37ecd486b589ed201f8cc8c5b550a9e4c72d1f594271ee2a7a6cfe8a42ebfb5dd527ef65016454656db391a353d41eab4f147e1
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/08bd1db17d7c772fa6e34b38a360ce77ad041164743113eefa8343c2af917a419697daf090c5854129ef19f3a9673ed1fd8446e03eb32c8ed52d2cc409b0dee7
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/239f4c59cce9abd33c01117b10553fbef868a063e74faf17edb798c250d759a2578841efa2837e5e51854f52ef57dbc40780b073cae20f89ebed6a8cc7fa06f1
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-cloudformation@npm:~3.777.0":
version: 3.777.0
resolution: "@aws-sdk/client-cloudformation@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.777.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/2dbc2bbb3d0fe3c23ad5ef944be788e0c65b2a1854c6e155f5ed9a8579b3be48286ec66c6d75c2cf6ca8fc1ce5a65b4160c323913c67fa793b26a09e778977fa
languageName: node
linkType: hard
"@aws-sdk/client-cloudwatch-logs@npm:~3.777.0":
version: 3.777.0
resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.777.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/6326848fbbf475c9617227f07892c09011438123453f649a5371f0a434547853cd6761bc802c4b02b9e4b6ec1f94271e6ffc00132f6e23c9f4f2eebfae2c8e0d
languageName: node
linkType: hard
"@aws-sdk/client-ecs@npm:~3.778.0":
version: 3.778.0
resolution: "@aws-sdk/client-ecs@npm:3.778.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.777.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/b681200c5525bc177d6ba29b1dfa4ee72a5e449dd12f569e8bd94470168c90591ee0a242142c4e8261fa7142351d341b894f308d69341316c43098a9f947672e
languageName: node
linkType: hard
"@aws-sdk/client-kinesis@npm:~3.777.0":
version: 3.777.0
resolution: "@aws-sdk/client-kinesis@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.777.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 10/d1d33a4fe8a2cefad7b66d3507e6c53c9e4a3a6acec9dae1bc8e69d5f741dc169a9d612b27bcea6646861630db4b3df3c7e17d71b355b6e18a3f86a887135e19
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:~3.779.0":
version: 3.779.0
resolution: "@aws-sdk/client-s3@npm:3.779.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/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.777.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.775.0"
"@aws-sdk/middleware-expect-continue": "npm:3.775.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-location-constraint": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.775.0"
"@aws-sdk/middleware-ssec": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@aws-sdk/xml-builder": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-blob-browser": "npm:^4.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/hash-stream-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/md5-js": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 10/a284f1ce9a410d16e6de69d5b0dfb7c02c831a73b537f884851369050b1fddc987bcc2ed364b4b32871525dc9bdd630e22475b8c2d865ddc827f05de244ba14a
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/client-sso@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/733896280f34f5865e1766cc95c27611176b8f10f8134c604cc5bf0ebc78afecb53111829809c07ec6ae361cf2d7a99f2cf63f320de1034a39cf11711e25f7ad
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/core@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/7a393958ca66148ed98ab892b529f8ec3303d2ec702f15e115db2d9e007614da0fdcdb58d608d7e97f57b3f6272bf9380219934cb386b0a091e8a4c1082ddda7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-env@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/564c70c077bdec8bd5424fe403f04c48f99d08b2da1f632633710d6a118a5fa632bf81b1d6627da8e86364203532ba04356c3894f9560676954b478b3e81894c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-http@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/bad01daeaff3b16835321e0fa7dc031786b5bebb7fe6653305b4509c294a6468e039fbc2b0353e17b5214b89290481b1146679bb6eaa32d5d506a0998d2393df
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.777.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.777.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.777.0"
"@aws-sdk/nested-clients": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/8826929a99c25a1589c923fd561066fbfb020b400dc801d95cd69d192316bb98d3e941b149f13233c2cade23309f77dcb36d92e3d379195df9063d4652e5875a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-node@npm:3.777.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-ini": "npm:3.777.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.777.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/6d8a9f62a973802a7349ecd88300affcc5353ce3e3fee063ca7555d3b145c761a29dff7a4e5ee126f33be225d812865b66ef7e73100f7c51c49926e7a474ae4e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-process@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/622de75368be3d92b1c1490681fe3cbafa5c11a54f71fe574082bebf0fbbeee1e40b7694941f6617da5bb5d11864d0ec3964eaf7da9ad527524005fbf699528e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.777.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.777.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/token-providers": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/f28a36acf2debd3d3eb05cb08925aaf60d5e566b45b82e24657b6359047b0d24f291729f6b6738ea1b7c33da19789e94c0e720f9d62d74e2d003466c78317857
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.777.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/nested-clients": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/ac55cc17b147cca3ba38baa841e28cf1b9375d7e4200bee873e78eb1e42c237b6a6abebf2918eb25c68fd2157315828e1b694c276b778730417d347c40e92377
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/823cd7b86669a6b79958bd8f134b85a8984a9b6503971a7da2cdea1d49f7aeb695e2958a6d2cc32690bd66fba2d114fa8bf1c8d8f3bf321f6b1e38f5ae242189
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/fff53389d8b12886dc7b10eed70a46e3bc5e374d3c27ba6837951821bca166510eb676e6d27d4f5c8a6beda1f44571d4376a519c5fd17b1fd34da92e256816cf
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.775.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.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/be00a43d09469af5ddcbf6e10aad91001abd449388c57fc8a4a6c80d14f15a7368d6ea0cb2f4dd7dba140638cce57a7412824fd747532604f60254295d143f90
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-host-header@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/3cc84a18af1be94b81a53241fbe28364c3f4a4b1b4ff5f320a1cc6f84ff6c67147100e1ffb8dd1774a0327ffabfde0bb6cde7358f95c8162cf3681c4d2bf4344
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/f78dfb947cdbb6c2e52daaa08d6e0bc51f1d7360192c5afc0e6e46c3604f366707eae2aec669b1bf8cb5e1516b7be41653523f6d39d4c7591095fb5af07914dc
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-logger@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/b41f2abb615fc1e55ac0459a8782bd07d4fa549989cdda0040ff490017bb8068cbb9a18f75a7a1f2d2b163d531cca5cff640a7e91228d4452f77ed9e21a35e98
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/28646eb26230a49aadeca59996a157faa19a3bad102e2329a475a2a3e21b130fd9ca71fe6503f47856f0a8b2624241036f770164778a7833b70cbc6c4b0d2c9c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/86d7a09e7457127aee3d4dbbd0483cd3c5584da464b7c749f9f61cc81747279cf03b9dac2e0bd2f44665434938d31d88b9ad0f4b1c56b665e1a15f524f67933a
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-ssec@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/143c3a4297cce036c1ee695b9f66bdcb0a9177a05078edb7cbe9c8d688082f1830cee6c798b203d738a4e1d1577e657b87cc0e48c7e7039a03dfcd8d13bbd026
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/2533a7972641833ed8be92c44596ee8f4637718b1300d167a811b23ea234eb3dcc9be40db68a9625fe3cf6161912d5687a1b4e1b9b04679dd493499affb77495
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/nested-clients@npm:3.777.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/77da9d4cb82100052426dac963f129daa82eed487df2a0118aeee075c783ec4d3e307b99ea72b7f8ddfb71967d6fcaa22659485014bbc17e377afb5df5973848
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/region-config-resolver@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10/cce4e82ea8ad4d2f0391dd5ae77297068c0d8fe06e0b9b5b6e984ef8471ed592ccdd52c6d59c91558eab2ee97d69fac7c83432bf3698c56981eba81c8f221b56
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.775.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/147f1b5f6b72804f800de305f22aaf935d9bb3f01ca2491d753e548644a20a469f6901771ce8893e10833a688c5a71164e498197a5ee5da59c63ea27c444a2d5
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.777.0":
version: 3.777.0
resolution: "@aws-sdk/token-providers@npm:3.777.0"
dependencies:
"@aws-sdk/nested-clients": "npm:3.777.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/d919ff6325d8c2738818b6714e88d34fe9dd7796619e6ed33d91aece3086cebea83bde09d84b1b33b967f25a525eee77ad66397ddc504a3eb8a5efe513493e4b
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/types@npm:3.775.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/448b7e2fbaa86aeb3987b39caeabcd6587390e9fae24ca783e12ac98e6fd858410a9ba6bf75dc5adfc022b1f1a23594b4cf83f7b3dd66461eebf5834b43a1e23
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.973.8
resolution: "@aws-sdk/types@npm:3.973.8"
dependencies:
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10/76f613d0dfcb9fd3f66aa39aaba81d9d0a0e20d09ad1c8dff9c0c990c69f5d5ee758dfbbb4cf7445ed0d30f96454369282ede7a4a9e64b7e7be95c7b5e34ebc3
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/util-arn-parser@npm:3.723.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/558c187aff2af3c58e830468969f936103770d8830a37b56eea06f7964a2a80f3cd5cc4bfb71af3470ca2ef37e85f6b21318d61a68129c293eb47b337c5bfa9d
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-endpoints@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.0.2"
tslib: "npm:^2.6.2"
checksum: 10/0056f5cc938d51ff4f3c6f805e153ad5318c01e28d166fa2bec696dc0559c63801fc68d773be11f1de99b3c1f6a5cc1294727a723f4c63cf9b1aaef18f9290d1
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.5
resolution: "@aws-sdk/util-locate-window@npm:3.965.5"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/66391a7f6d0c383d6bc3ea67e35b0b0164798d9acbe47271fbc676cf74e7a56690f48425a91cce70e764c53ca46619f4abc076b569d8f991c19dd7c1ac4b0a79
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/6adc0484df9c18d811d8c499ade26b0acf1affe6a46d2d8bb0a729c47a86b671e451fa01c1e6b228a24913b86a15e66d02cd1a0b4fc559116b4d77ac258a09ce
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.775.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/b488a5bc6f8d24045ffd6b5cf363731fc4f0d5ae21eff57477f3dd01af9566257cddfffc5dcc659f67bfd3b44337d060371480db5593d76e48571e9a3af4b1ae
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/xml-builder@npm:3.775.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10/adb0169683e9ee8619ffc8e827ab152469f750bccf882989da4cc913af108175cb60f9257405080438872e96489baff6ab9ba27bf455cf3c2db6be1560e72e39
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.28.5"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10/199e15ff89007dd30675655eec52481cb245c9fdf4f81e4dc1f866603b0217b57aff25f5ffa0a95bbc8e31eb861695330cd7869ad52cc211aa63016320ef72c5
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.28.6":
version: 7.29.3
resolution: "@babel/compat-data@npm:7.29.3"
checksum: 10/3c29661756a7c1cbc5248a7bdc657c0cb49f350e3157040c20486759f1f50a08a0b385fd7d813df50b96cd6fad5896d30ba6abab7602641bd1410ed346c1812f
languageName: node
linkType: hard
"@babel/core@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/core@npm:7.29.0"
dependencies:
"@babel/code-frame": "npm:^7.29.0"
"@babel/generator": "npm:^7.29.0"
"@babel/helper-compilation-targets": "npm:^7.28.6"
"@babel/helper-module-transforms": "npm:^7.28.6"
"@babel/helpers": "npm:^7.28.6"
"@babel/parser": "npm:^7.29.0"
"@babel/template": "npm:^7.28.6"
"@babel/traverse": "npm:^7.29.0"
"@babel/types": "npm:^7.29.0"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/25f4e91688cdfbaf1365831f4f245b436cdaabe63d59389b75752013b8d61819ee4257101b52fc328b0546159fd7d0e74457ed7cf12c365fea54be4fb0a40229
languageName: node
linkType: hard
"@babel/generator@npm:^7.23.0, @babel/generator@npm:^7.29.0":
version: 7.29.1
resolution: "@babel/generator@npm:7.29.1"
dependencies:
"@babel/parser": "npm:^7.29.0"
"@babel/types": "npm:^7.29.0"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10/61fe4ddd6e817aa312a14963ccdbb5c9a8c57e8b97b98d19a8a99ccab2215fda1a5f52bc8dd8d2e3c064497ddeb3ab8ceb55c76fa0f58f8169c34679d2256fe0
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-compilation-targets@npm:7.28.6"
dependencies:
"@babel/compat-data": "npm:^7.28.6"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/f512a5aeee4dfc6ea8807f521d085fdca8d66a7d068a6dd5e5b37da10a6081d648c0bbf66791a081e4e8e6556758da44831b331540965dfbf4f5275f3d0a8788
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/helper-globals@npm:7.28.0"
checksum: 10/91445f7edfde9b65dcac47f4f858f68dc1661bf73332060ab67ad7cc7b313421099a2bfc4bda30c3db3842cfa1e86fffbb0d7b2c5205a177d91b22c8d7d9cb47
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-imports@npm:7.28.6"
dependencies:
"@babel/traverse": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
checksum: 10/64b1380d74425566a3c288074d7ce4dea56d775d2d3325a3d4a6df1dca702916c1d268133b6f385de9ba5b822b3c6e2af5d3b11ac88e5453d5698d77264f0ec0
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-transforms@npm:7.28.6"
dependencies:
"@babel/helper-module-imports": "npm:^7.28.6"
"@babel/helper-validator-identifier": "npm:^7.28.5"
"@babel/traverse": "npm:^7.28.6"
peerDependencies: