-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage-lock.json
More file actions
6648 lines (6648 loc) · 243 KB
/
package-lock.json
File metadata and controls
6648 lines (6648 loc) · 243 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
{
"name": "aws-actions-amazon-ecs-deploy-task-definition",
"version": "2.6.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "aws-actions-amazon-ecs-deploy-task-definition",
"version": "2.6.0",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.1",
"@aws-sdk/client-codedeploy": "^3.922.0",
"@aws-sdk/client-ecs": "^3.908.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"jest": "^29.7.0"
}
},
"node_modules/@actions/core": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@actions/core/-/core-2.0.1.tgz",
"integrity": "sha512-oBfqT3GwkvLlo1fjvhQLQxuwZCGTarTE5OuZ2Wg10hvhBj7LRIlF611WT4aZS6fDhO5ZKlY7lCAZTlpmyaHaeg==",
"license": "MIT",
"dependencies": {
"@actions/exec": "^2.0.0",
"@actions/http-client": "^3.0.0"
}
},
"node_modules/@actions/exec": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@actions/exec/-/exec-2.0.0.tgz",
"integrity": "sha512-k8ngrX2voJ/RIN6r9xB82NVqKpnMRtxDoiO+g3olkIUpQNqjArXrCQceduQZCQj3P3xm32pChRLqRrtXTlqhIw==",
"license": "MIT",
"dependencies": {
"@actions/io": "^2.0.0"
}
},
"node_modules/@actions/http-client": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-3.0.2.tgz",
"integrity": "sha512-JP38FYYpyqvUsz+Igqlc/JG6YO9PaKuvqjM3iGvaLqFnJ7TFmcLyy2IDrY0bI0qCQug8E9K+elv5ZNfw62ZJzA==",
"license": "MIT",
"dependencies": {
"tunnel": "^0.0.6",
"undici": "^6.23.0"
}
},
"node_modules/@actions/io": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@actions/io/-/io-2.0.0.tgz",
"integrity": "sha512-Jv33IN09XLO+0HS79aaODsvIRyduiF7NY/F6LYeK5oeUmrsz7aFdRphQjFoESF4jS7lMauDOttKALcpapVDIAg==",
"license": "MIT"
},
"node_modules/@aws-crypto/sha256-browser": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
"integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-crypto/supports-web-crypto": "^5.2.0",
"@aws-crypto/util": "^5.2.0",
"@aws-sdk/types": "^3.222.0",
"@aws-sdk/util-locate-window": "^3.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/is-array-buffer": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/util-buffer-from": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/sha256-js": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/util": "^5.2.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-crypto/supports-web-crypto": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/util": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "^3.222.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/is-array-buffer": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/util-buffer-from": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-codedeploy/-/client-codedeploy-3.922.0.tgz",
"integrity": "sha512-92PhW1DqG5cbZ2Gy9TCI80zCLGzx3AcAwiyt+g1fLlzXUOREyAGCAYZaOjKtF1ScnkxsHYg3R4vuGqsxFXzzug==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.922.0",
"@aws-sdk/credential-provider-node": "3.922.0",
"@aws-sdk/middleware-host-header": "3.922.0",
"@aws-sdk/middleware-logger": "3.922.0",
"@aws-sdk/middleware-recursion-detection": "3.922.0",
"@aws-sdk/middleware-user-agent": "3.922.0",
"@aws-sdk/region-config-resolver": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@aws-sdk/util-endpoints": "3.922.0",
"@aws-sdk/util-user-agent-browser": "3.922.0",
"@aws-sdk/util-user-agent-node": "3.922.0",
"@smithy/config-resolver": "^4.4.1",
"@smithy/core": "^3.17.2",
"@smithy/fetch-http-handler": "^5.3.5",
"@smithy/hash-node": "^4.2.4",
"@smithy/invalid-dependency": "^4.2.4",
"@smithy/middleware-content-length": "^4.2.4",
"@smithy/middleware-endpoint": "^4.3.6",
"@smithy/middleware-retry": "^4.4.6",
"@smithy/middleware-serde": "^4.2.4",
"@smithy/middleware-stack": "^4.2.4",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/node-http-handler": "^4.4.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/url-parser": "^4.2.4",
"@smithy/util-base64": "^4.3.0",
"@smithy/util-body-length-browser": "^4.2.0",
"@smithy/util-body-length-node": "^4.2.1",
"@smithy/util-defaults-mode-browser": "^4.3.5",
"@smithy/util-defaults-mode-node": "^4.2.7",
"@smithy/util-endpoints": "^3.2.4",
"@smithy/util-middleware": "^4.2.4",
"@smithy/util-retry": "^4.2.4",
"@smithy/util-utf8": "^4.2.0",
"@smithy/util-waiter": "^4.2.4",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/client-sso": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.922.0.tgz",
"integrity": "sha512-jdHs7uy7cSpiMvrxhYmqHyJxgK7hyqw4plG8OQ4YTBpq0SbfAxdoOuOkwJ1IVUUQho4otR1xYYjiX/8e8J8qwQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.922.0",
"@aws-sdk/middleware-host-header": "3.922.0",
"@aws-sdk/middleware-logger": "3.922.0",
"@aws-sdk/middleware-recursion-detection": "3.922.0",
"@aws-sdk/middleware-user-agent": "3.922.0",
"@aws-sdk/region-config-resolver": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@aws-sdk/util-endpoints": "3.922.0",
"@aws-sdk/util-user-agent-browser": "3.922.0",
"@aws-sdk/util-user-agent-node": "3.922.0",
"@smithy/config-resolver": "^4.4.1",
"@smithy/core": "^3.17.2",
"@smithy/fetch-http-handler": "^5.3.5",
"@smithy/hash-node": "^4.2.4",
"@smithy/invalid-dependency": "^4.2.4",
"@smithy/middleware-content-length": "^4.2.4",
"@smithy/middleware-endpoint": "^4.3.6",
"@smithy/middleware-retry": "^4.4.6",
"@smithy/middleware-serde": "^4.2.4",
"@smithy/middleware-stack": "^4.2.4",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/node-http-handler": "^4.4.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/url-parser": "^4.2.4",
"@smithy/util-base64": "^4.3.0",
"@smithy/util-body-length-browser": "^4.2.0",
"@smithy/util-body-length-node": "^4.2.1",
"@smithy/util-defaults-mode-browser": "^4.3.5",
"@smithy/util-defaults-mode-node": "^4.2.7",
"@smithy/util-endpoints": "^3.2.4",
"@smithy/util-middleware": "^4.2.4",
"@smithy/util-retry": "^4.2.4",
"@smithy/util-utf8": "^4.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/core": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.922.0.tgz",
"integrity": "sha512-EvfP4cqJfpO3L2v5vkIlTkMesPtRwWlMfsaW6Tpfm7iYfBOuTi6jx60pMDMTyJNVfh6cGmXwh/kj1jQdR+w99Q==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.922.0",
"@aws-sdk/xml-builder": "3.921.0",
"@smithy/core": "^3.17.2",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/signature-v4": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/util-base64": "^4.3.0",
"@smithy/util-middleware": "^4.2.4",
"@smithy/util-utf8": "^4.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/credential-provider-env": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.922.0.tgz",
"integrity": "sha512-WikGQpKkROJSK3D3E7odPjZ8tU7WJp5/TgGdRuZw3izsHUeH48xMv6IznafpRTmvHcjAbDQj4U3CJZNAzOK/OQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/credential-provider-http": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.922.0.tgz",
"integrity": "sha512-i72DgHMK7ydAEqdzU0Duqh60Q8W59EZmRJ73y0Y5oFmNOqnYsAI+UXyOoCsubp+Dkr6+yOwAn1gPt1XGE9Aowg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/fetch-http-handler": "^5.3.5",
"@smithy/node-http-handler": "^4.4.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/util-stream": "^4.5.5",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.922.0.tgz",
"integrity": "sha512-bVF+pI5UCLNkvbiZr/t2fgTtv84s8FCdOGAPxQiQcw5qOZywNuuCCY3wIIchmQr6GJr8YFkEp5LgDCac5EC5aQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.922.0",
"@aws-sdk/credential-provider-env": "3.922.0",
"@aws-sdk/credential-provider-http": "3.922.0",
"@aws-sdk/credential-provider-process": "3.922.0",
"@aws-sdk/credential-provider-sso": "3.922.0",
"@aws-sdk/credential-provider-web-identity": "3.922.0",
"@aws-sdk/nested-clients": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/credential-provider-imds": "^4.2.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/credential-provider-node": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.922.0.tgz",
"integrity": "sha512-agCwaD6mBihToHkjycL8ObIS2XOnWypWZZWhJSoWyHwFrhEKz1zGvgylK9Dc711oUfU+zU6J8e0JPKNJMNb3BQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.922.0",
"@aws-sdk/credential-provider-http": "3.922.0",
"@aws-sdk/credential-provider-ini": "3.922.0",
"@aws-sdk/credential-provider-process": "3.922.0",
"@aws-sdk/credential-provider-sso": "3.922.0",
"@aws-sdk/credential-provider-web-identity": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/credential-provider-imds": "^4.2.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/credential-provider-process": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.922.0.tgz",
"integrity": "sha512-1DZOYezT6okslpvMW7oA2q+y17CJd4fxjNFH0jtThfswdh9CtG62+wxenqO+NExttq0UMaKisrkZiVrYQBTShw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/credential-provider-sso": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.922.0.tgz",
"integrity": "sha512-nbD3G3hShTYxLCkKMqLkLPtKwAAfxdY/k9jHtZmVBFXek2T6tQrqZHKxlAu+fd23Ga4/Aik7DLQQx1RA1a5ipg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-sso": "3.922.0",
"@aws-sdk/core": "3.922.0",
"@aws-sdk/token-providers": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/credential-provider-web-identity": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.922.0.tgz",
"integrity": "sha512-wjGIhgMHGGQfQTdFaJphNOKyAL8wZs6znJdHADPVURmgR+EWLyN/0fDO1u7wx8xaLMZpbHIFWBEvf9TritR/cQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.922.0",
"@aws-sdk/nested-clients": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/middleware-host-header": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.922.0.tgz",
"integrity": "sha512-HPquFgBnq/KqKRVkiuCt97PmWbKtxQ5iUNLEc6FIviqOoZTmaYG3EDsIbuFBz9C4RHJU4FKLmHL2bL3FEId6AA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.922.0",
"@smithy/protocol-http": "^5.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/middleware-logger": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.922.0.tgz",
"integrity": "sha512-AkvYO6b80FBm5/kk2E636zNNcNgjztNNUxpqVx+huyGn9ZqGTzS4kLqW2hO6CBe5APzVtPCtiQsXL24nzuOlAg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.922.0",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/middleware-recursion-detection": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.922.0.tgz",
"integrity": "sha512-TtSCEDonV/9R0VhVlCpxZbp/9sxQvTTRKzIf8LxW3uXpby6Wl8IxEciBJlxmSkoqxh542WRcko7NYODlvL/gDA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.922.0",
"@aws/lambda-invoke-store": "^0.1.1",
"@smithy/protocol-http": "^5.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.922.0.tgz",
"integrity": "sha512-N4Qx/9KP3oVQBJOrSghhz8iZFtUC2NNeSZt88hpPhbqAEAtuX8aD8OzVcpnAtrwWqy82Yd2YTxlkqMGkgqnBsQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@aws-sdk/util-endpoints": "3.922.0",
"@smithy/core": "^3.17.2",
"@smithy/protocol-http": "^5.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/nested-clients": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.922.0.tgz",
"integrity": "sha512-uYvKCF1TGh/MuJ4TMqmUM0Csuao02HawcseG4LUDyxdUsd/EFuxalWq1Cx4fKZQ2K8F504efZBjctMAMNY+l7A==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.922.0",
"@aws-sdk/middleware-host-header": "3.922.0",
"@aws-sdk/middleware-logger": "3.922.0",
"@aws-sdk/middleware-recursion-detection": "3.922.0",
"@aws-sdk/middleware-user-agent": "3.922.0",
"@aws-sdk/region-config-resolver": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@aws-sdk/util-endpoints": "3.922.0",
"@aws-sdk/util-user-agent-browser": "3.922.0",
"@aws-sdk/util-user-agent-node": "3.922.0",
"@smithy/config-resolver": "^4.4.1",
"@smithy/core": "^3.17.2",
"@smithy/fetch-http-handler": "^5.3.5",
"@smithy/hash-node": "^4.2.4",
"@smithy/invalid-dependency": "^4.2.4",
"@smithy/middleware-content-length": "^4.2.4",
"@smithy/middleware-endpoint": "^4.3.6",
"@smithy/middleware-retry": "^4.4.6",
"@smithy/middleware-serde": "^4.2.4",
"@smithy/middleware-stack": "^4.2.4",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/node-http-handler": "^4.4.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/url-parser": "^4.2.4",
"@smithy/util-base64": "^4.3.0",
"@smithy/util-body-length-browser": "^4.2.0",
"@smithy/util-body-length-node": "^4.2.1",
"@smithy/util-defaults-mode-browser": "^4.3.5",
"@smithy/util-defaults-mode-node": "^4.2.7",
"@smithy/util-endpoints": "^3.2.4",
"@smithy/util-middleware": "^4.2.4",
"@smithy/util-retry": "^4.2.4",
"@smithy/util-utf8": "^4.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/region-config-resolver": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.922.0.tgz",
"integrity": "sha512-44Y/rNNwhngR2KHp6gkx//TOr56/hx6s4l+XLjOqH7EBCHL7XhnrT1y92L+DLiroVr1tCSmO8eHQwBv0Y2+mvw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.922.0",
"@smithy/config-resolver": "^4.4.1",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/token-providers": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.922.0.tgz",
"integrity": "sha512-/inmPnjZE0ZBE16zaCowAvouSx05FJ7p6BQYuzlJ8vxEU0sS0Hf8fvhuiRnN9V9eDUPIBY+/5EjbMWygXL4wlQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.922.0",
"@aws-sdk/nested-clients": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/types": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.922.0.tgz",
"integrity": "sha512-eLA6XjVobAUAMivvM7DBL79mnHyrm+32TkXNWZua5mnxF+6kQCfblKKJvxMZLGosO53/Ex46ogim8IY5Nbqv2w==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/util-endpoints": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.922.0.tgz",
"integrity": "sha512-4ZdQCSuNMY8HMlR1YN4MRDdXuKd+uQTeKIr5/pIM+g3TjInZoj8imvXudjcrFGA63UF3t92YVTkBq88mg58RXQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.922.0",
"@smithy/types": "^4.8.1",
"@smithy/url-parser": "^4.2.4",
"@smithy/util-endpoints": "^3.2.4",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/util-user-agent-browser": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.922.0.tgz",
"integrity": "sha512-qOJAERZ3Plj1st7M4Q5henl5FRpE30uLm6L9edZqZXGR6c7ry9jzexWamWVpQ4H4xVAVmiO9dIEBAfbq4mduOA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.922.0",
"@smithy/types": "^4.8.1",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-sdk/client-codedeploy/node_modules/@aws-sdk/util-user-agent-node": {
"version": "3.922.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.922.0.tgz",
"integrity": "sha512-NrPe/Rsr5kcGunkog0eBV+bY0inkRELsD2SacC4lQZvZiXf8VJ2Y7j+Yq1tB+h+FPLsdt3v9wItIvDf/laAm0Q==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/middleware-user-agent": "3.922.0",
"@aws-sdk/types": "3.922.0",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"aws-crt": ">=1.0.0"
},
"peerDependenciesMeta": {
"aws-crt": {
"optional": true
}
}
},
"node_modules/@aws-sdk/client-ecs": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-ecs/-/client-ecs-3.921.0.tgz",
"integrity": "sha512-1iq65lNlsMj+4m6fJFUX7+q1orsnvizLwyzbv69inrwFTlngHLCIiiqYrwpYQKoTqx9sAFsRVCxsQJ5LyiFisg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.921.0",
"@aws-sdk/credential-provider-node": "3.921.0",
"@aws-sdk/middleware-host-header": "3.921.0",
"@aws-sdk/middleware-logger": "3.921.0",
"@aws-sdk/middleware-recursion-detection": "3.921.0",
"@aws-sdk/middleware-user-agent": "3.921.0",
"@aws-sdk/region-config-resolver": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@aws-sdk/util-endpoints": "3.921.0",
"@aws-sdk/util-user-agent-browser": "3.921.0",
"@aws-sdk/util-user-agent-node": "3.921.0",
"@smithy/config-resolver": "^4.4.1",
"@smithy/core": "^3.17.2",
"@smithy/fetch-http-handler": "^5.3.5",
"@smithy/hash-node": "^4.2.4",
"@smithy/invalid-dependency": "^4.2.4",
"@smithy/middleware-content-length": "^4.2.4",
"@smithy/middleware-endpoint": "^4.3.6",
"@smithy/middleware-retry": "^4.4.6",
"@smithy/middleware-serde": "^4.2.4",
"@smithy/middleware-stack": "^4.2.4",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/node-http-handler": "^4.4.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/url-parser": "^4.2.4",
"@smithy/util-base64": "^4.3.0",
"@smithy/util-body-length-browser": "^4.2.0",
"@smithy/util-body-length-node": "^4.2.1",
"@smithy/util-defaults-mode-browser": "^4.3.5",
"@smithy/util-defaults-mode-node": "^4.2.7",
"@smithy/util-endpoints": "^3.2.4",
"@smithy/util-middleware": "^4.2.4",
"@smithy/util-retry": "^4.2.4",
"@smithy/util-utf8": "^4.2.0",
"@smithy/util-waiter": "^4.2.4",
"@smithy/uuid": "^1.1.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-sso": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.921.0.tgz",
"integrity": "sha512-qWyT7WikdkPRAMuWidZ2l8jcQAPwNjvLcFZ/8K+oCAaMLt0LKLd7qeTwZ5tZFNqRNPXKfE8MkvAjyqSpE3i2yg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.921.0",
"@aws-sdk/middleware-host-header": "3.921.0",
"@aws-sdk/middleware-logger": "3.921.0",
"@aws-sdk/middleware-recursion-detection": "3.921.0",
"@aws-sdk/middleware-user-agent": "3.921.0",
"@aws-sdk/region-config-resolver": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@aws-sdk/util-endpoints": "3.921.0",
"@aws-sdk/util-user-agent-browser": "3.921.0",
"@aws-sdk/util-user-agent-node": "3.921.0",
"@smithy/config-resolver": "^4.4.1",
"@smithy/core": "^3.17.2",
"@smithy/fetch-http-handler": "^5.3.5",
"@smithy/hash-node": "^4.2.4",
"@smithy/invalid-dependency": "^4.2.4",
"@smithy/middleware-content-length": "^4.2.4",
"@smithy/middleware-endpoint": "^4.3.6",
"@smithy/middleware-retry": "^4.4.6",
"@smithy/middleware-serde": "^4.2.4",
"@smithy/middleware-stack": "^4.2.4",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/node-http-handler": "^4.4.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/url-parser": "^4.2.4",
"@smithy/util-base64": "^4.3.0",
"@smithy/util-body-length-browser": "^4.2.0",
"@smithy/util-body-length-node": "^4.2.1",
"@smithy/util-defaults-mode-browser": "^4.3.5",
"@smithy/util-defaults-mode-node": "^4.2.7",
"@smithy/util-endpoints": "^3.2.4",
"@smithy/util-middleware": "^4.2.4",
"@smithy/util-retry": "^4.2.4",
"@smithy/util-utf8": "^4.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/core": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.921.0.tgz",
"integrity": "sha512-1eiD9ZO9cvEHdQUn/pwJVGN9LXg6D0O7knGVA0TA/v7nFSYy0n8RYG8vdnlcoYYnV1BcHgaf4KmRVMOszafNZQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.921.0",
"@aws-sdk/xml-builder": "3.921.0",
"@smithy/core": "^3.17.2",
"@smithy/node-config-provider": "^4.3.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/signature-v4": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/util-base64": "^4.3.0",
"@smithy/util-middleware": "^4.2.4",
"@smithy/util-utf8": "^4.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-env": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.921.0.tgz",
"integrity": "sha512-RGG+zZdOYGJBQ8+L7BI6v41opoF8knErMtBZAUGcD3gvWEhjatc7lSbIpBeYWbTaWPPLHQU+ZVbmQ/jRLBgefw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-http": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.921.0.tgz",
"integrity": "sha512-TAv08Ow0oF/olV4DTLoPDj46KMk35bL1IUCfToESDrWk1TOSur7d4sCL0p/7dUsAxS244cEgeyIIijKNtxj2AA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@smithy/fetch-http-handler": "^5.3.5",
"@smithy/node-http-handler": "^4.4.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/protocol-http": "^5.3.4",
"@smithy/smithy-client": "^4.9.2",
"@smithy/types": "^4.8.1",
"@smithy/util-stream": "^4.5.5",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.921.0.tgz",
"integrity": "sha512-MUSRYGiMRq5NRGPRgJ7Nuh7GqXzE9iteAwdbzMJ4pnImgr7CjeWDihCIGk+gKLSG+NoRVVJM0V9PA4rxFir0Pg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.921.0",
"@aws-sdk/credential-provider-env": "3.921.0",
"@aws-sdk/credential-provider-http": "3.921.0",
"@aws-sdk/credential-provider-process": "3.921.0",
"@aws-sdk/credential-provider-sso": "3.921.0",
"@aws-sdk/credential-provider-web-identity": "3.921.0",
"@aws-sdk/nested-clients": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@smithy/credential-provider-imds": "^4.2.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.921.0.tgz",
"integrity": "sha512-bxUAqRyo49WzKWn/XS0d8QXT9GydY/ew5m58PYfSMwYfmwBZXx1GLSWe3tZnefm6santFiqmIWfMmeRWdygKmQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.921.0",
"@aws-sdk/credential-provider-http": "3.921.0",
"@aws-sdk/credential-provider-ini": "3.921.0",
"@aws-sdk/credential-provider-process": "3.921.0",
"@aws-sdk/credential-provider-sso": "3.921.0",
"@aws-sdk/credential-provider-web-identity": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@smithy/credential-provider-imds": "^4.2.4",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-process": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.921.0.tgz",
"integrity": "sha512-DM62ooWI/aZ+ENBcLszuKmOkiICf6p4vYO2HgA3Cy2OEsTsjb67NEcntksxpZkD3mSIrCy/Qi4Z7tc77gle2Nw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.921.0.tgz",
"integrity": "sha512-Nh5jPJ6Y6nu3cHzZnq394lGXE5YO8Szke5zlATbNI7Tl0QJR65GE0IZsBcjzRMGpYX6ENCqPDK8FmklkmCYyVQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-sso": "3.921.0",
"@aws-sdk/core": "3.921.0",
"@aws-sdk/token-providers": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.921.0.tgz",
"integrity": "sha512-VWcbgB2/shPPK674roHV4s8biCtvn0P/05EbTqy9WeyM5Oblx291gRGccyDhQbJbOL/6diRPBM08tlKPlBKNfw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.921.0",
"@aws-sdk/nested-clients": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@smithy/property-provider": "^4.2.4",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-host-header": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.921.0.tgz",
"integrity": "sha512-eX1Ka29XzuEcXG4YABTwyLtPLchjmcjSjaq4irKJTFkxSYzX7gjoKt18rh/ZzOWOSqi23+cpjvBacL4VBKvE2Q==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.921.0",
"@smithy/protocol-http": "^5.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-logger": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.921.0.tgz",
"integrity": "sha512-14Qqp8wisKGj/2Y22OfO5jTBG5Xez+p3Zr2piAtz7AcbY8vBEoZbd6f+9lwwVFC73Aobkau223wzKbGT8HYQMw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.921.0",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.921.0.tgz",
"integrity": "sha512-MYU5oI2b97M7u1dC1nt7SiGEvvLrQDlzV6hq9CB5TYX2glgbyvkaS//1Tjm87VF6qVSf5jYfwFDPeFGd8O1NrQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.921.0",
"@aws/lambda-invoke-store": "^0.1.1",
"@smithy/protocol-http": "^5.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.921.0.tgz",
"integrity": "sha512-gXgokMBTPZAbQMm1+JOxItqA81aSFK6n7V2mAwxdmHjzCUZacX5RzkVPNbSaPPgDkroYnIzK09EusIpM6dLaqw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@aws-sdk/util-endpoints": "3.921.0",
"@smithy/core": "^3.17.2",
"@smithy/protocol-http": "^5.3.4",
"@smithy/types": "^4.8.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/nested-clients": {
"version": "3.921.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.921.0.tgz",
"integrity": "sha512-GV9aV8WqH/EWo4x3T5BrYb2ph1yfYuzUXZc0hhvxbFbDKD8m2fX9menao3Mgm7E5C68Su392u+MD9SGmGCmfKQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.921.0",
"@aws-sdk/middleware-host-header": "3.921.0",
"@aws-sdk/middleware-logger": "3.921.0",
"@aws-sdk/middleware-recursion-detection": "3.921.0",
"@aws-sdk/middleware-user-agent": "3.921.0",
"@aws-sdk/region-config-resolver": "3.921.0",
"@aws-sdk/types": "3.921.0",
"@aws-sdk/util-endpoints": "3.921.0",
"@aws-sdk/util-user-agent-browser": "3.921.0",