-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage-lock.json
More file actions
18304 lines (18304 loc) · 630 KB
/
package-lock.json
File metadata and controls
18304 lines (18304 loc) · 630 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": "@adobe/helix-html2md-service",
"version": "2.22.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@adobe/helix-html2md-service",
"version": "2.22.4",
"license": "Apache-2.0",
"dependencies": {
"@adobe/fetch": "4.2.3",
"@adobe/helix-html2md": "2.0.0",
"@adobe/helix-mediahandler": "3.1.0",
"@adobe/helix-shared-body-data": "2.2.3",
"@adobe/helix-shared-string": "2.2.0",
"@adobe/helix-shared-utils": "3.0.2",
"@adobe/helix-shared-wrap": "2.0.2",
"@adobe/helix-status": "10.1.5",
"xml2js": "0.6.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "3.0.23",
"@adobe/helix-deploy": "13.5.3",
"@adobe/helix-html-pipeline": "^6.0.0",
"@adobe/helix-universal": "5.4.0",
"@adobe/helix-universal-devserver": "1.1.146",
"@adobe/semantic-release-coralogix": "1.1.40",
"@aws-sdk/lib-storage": "3.1005.0",
"@eslint/config-helpers": "0.5.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"c8": "11.0.0",
"dotenv": "17.3.1",
"eslint": "9.4.0",
"husky": "9.1.7",
"junit-report-builder": "5.1.1",
"lint-staged": "16.3.2",
"mocha": "11.7.5",
"mocha-multi-reporters": "1.5.1",
"mocha-suppress-logs": "0.6.0",
"nock": "14.0.11",
"nodemon": "3.1.14",
"semantic-release": "25.0.3"
}
},
"node_modules/@actions/core": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@actions/core/-/core-3.0.0.tgz",
"integrity": "sha512-zYt6cz+ivnTmiT/ksRVriMBOiuoUpDCJJlZ5KPl2/FRdvwU3f7MPh9qftvbkXJThragzUZieit2nyHUyw53Seg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0"
}
},
"node_modules/@actions/exec": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@actions/exec/-/exec-3.0.0.tgz",
"integrity": "sha512-6xH/puSoNBXb72VPlZVm7vQ+svQpFyA96qdDBvhB8eNZOE8LtPf9L4oAsfzK/crCL8YZ+19fKYVnM63Sl+Xzlw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@actions/io": "^3.0.2"
}
},
"node_modules/@actions/http-client": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-4.0.0.tgz",
"integrity": "sha512-QuwPsgVMsD6qaPD57GLZi9sqzAZCtiJT8kVBCDpLtxhL5MydQ4gS+DrejtZZPdIYyB1e95uCK9Luyds7ybHI3g==",
"dev": true,
"license": "MIT",
"dependencies": {
"tunnel": "^0.0.6",
"undici": "^6.23.0"
}
},
"node_modules/@actions/http-client/node_modules/undici": {
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/undici/-/undici-6.23.0.tgz",
"integrity": "sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=18.17"
}
},
"node_modules/@actions/io": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@actions/io/-/io-3.0.2.tgz",
"integrity": "sha512-nRBchcMM+QK1pdjO7/idu86rbJI5YHUKCvKs0KxnSYbVe3F51UfGxuZX4Qy/fWlp6l7gWFwIkrOzN+oUK03kfw==",
"dev": true,
"license": "MIT"
},
"node_modules/@adobe/eslint-config-helix": {
"version": "3.0.23",
"resolved": "https://registry.npmjs.org/@adobe/eslint-config-helix/-/eslint-config-helix-3.0.23.tgz",
"integrity": "sha512-CdZ9ehUwq3HvEOSzo1VPHbWTNEEilCmyZkPJ7489pR6T5cCO1A1f/HU4PEsSwT7JOB5PrPhBWGZ2hW9leFZXmA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/config-helpers": "0.5.3",
"eslint-plugin-import": "2.32.0",
"globals": "17.4.0"
},
"engines": {
"node": ">= 12"
},
"peerDependencies": {
"eslint": "^9.0.0"
}
},
"node_modules/@adobe/fetch": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/@adobe/fetch/-/fetch-4.2.3.tgz",
"integrity": "sha512-Sn1oRY9WMnLWTIa0nibWJkuck/LWypnckZk1Ude/COAQbanI0mn3jLecJMP0DcGITsl7lWfdcoUpT+a5DpBy8g==",
"license": "Apache-2.0",
"dependencies": {
"debug": "4.4.3",
"http-cache-semantics": "4.2.0",
"lru-cache": "7.18.3"
},
"engines": {
"node": ">=14.16"
}
},
"node_modules/@adobe/helix-deploy": {
"version": "13.5.3",
"resolved": "https://registry.npmjs.org/@adobe/helix-deploy/-/helix-deploy-13.5.3.tgz",
"integrity": "sha512-7nPYGoXDYjMri2LVdpJ3z2EO+CwQQtkktSyQGmLSkvdopGB+XnSHK7R19lsgsVYmAEfv9u+8ckQCS+8p2QZ13Q==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@adobe/fetch": "4.2.3",
"@adobe/helix-shared-process-queue": "3.1.6",
"@aws-sdk/client-apigatewayv2": "3.1005.0",
"@aws-sdk/client-lambda": "3.1005.0",
"@aws-sdk/client-s3": "3.1005.0",
"@aws-sdk/client-secrets-manager": "3.1005.0",
"@aws-sdk/client-ssm": "3.1005.0",
"@aws-sdk/client-sts": "3.1005.0",
"@google-cloud/functions": "4.2.1",
"@google-cloud/secret-manager": "6.1.1",
"@google-cloud/storage": "7.19.0",
"archiver": "7.0.1",
"chalk-template": "1.1.2",
"dotenv": "17.3.1",
"esbuild": "0.27.3",
"escalade": "3.2.0",
"fs-extra": "11.3.4",
"isomorphic-git": "1.37.2",
"openwhisk": "3.21.8",
"semver": "7.7.4",
"yargs": "18.0.0"
},
"bin": {
"hedy": "src/index.js"
},
"engines": {
"node": ">=18.0"
},
"peerDependencies": {
"@adobe/helix-universal": ">=5.2.1"
}
},
"node_modules/@adobe/helix-deploy/node_modules/@aws-sdk/client-s3": {
"version": "3.1005.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.1005.0.tgz",
"integrity": "sha512-EVl5IElgh7l9M242JYZGBt2AtdylpSKEFiEHBfB2OKuh2es19IQkDNfLFGfzThXWbapfBjXuB0zs9nplNviOSQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha1-browser": "5.2.0",
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "^3.973.19",
"@aws-sdk/credential-provider-node": "^3.972.19",
"@aws-sdk/middleware-bucket-endpoint": "^3.972.7",
"@aws-sdk/middleware-expect-continue": "^3.972.7",
"@aws-sdk/middleware-flexible-checksums": "^3.973.5",
"@aws-sdk/middleware-host-header": "^3.972.7",
"@aws-sdk/middleware-location-constraint": "^3.972.7",
"@aws-sdk/middleware-logger": "^3.972.7",
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
"@aws-sdk/middleware-sdk-s3": "^3.972.19",
"@aws-sdk/middleware-ssec": "^3.972.7",
"@aws-sdk/middleware-user-agent": "^3.972.20",
"@aws-sdk/region-config-resolver": "^3.972.7",
"@aws-sdk/signature-v4-multi-region": "^3.996.7",
"@aws-sdk/types": "^3.973.5",
"@aws-sdk/util-endpoints": "^3.996.4",
"@aws-sdk/util-user-agent-browser": "^3.972.7",
"@aws-sdk/util-user-agent-node": "^3.973.5",
"@smithy/config-resolver": "^4.4.10",
"@smithy/core": "^3.23.9",
"@smithy/eventstream-serde-browser": "^4.2.11",
"@smithy/eventstream-serde-config-resolver": "^4.3.11",
"@smithy/eventstream-serde-node": "^4.2.11",
"@smithy/fetch-http-handler": "^5.3.13",
"@smithy/hash-blob-browser": "^4.2.12",
"@smithy/hash-node": "^4.2.11",
"@smithy/hash-stream-node": "^4.2.11",
"@smithy/invalid-dependency": "^4.2.11",
"@smithy/md5-js": "^4.2.11",
"@smithy/middleware-content-length": "^4.2.11",
"@smithy/middleware-endpoint": "^4.4.23",
"@smithy/middleware-retry": "^4.4.40",
"@smithy/middleware-serde": "^4.2.12",
"@smithy/middleware-stack": "^4.2.11",
"@smithy/node-config-provider": "^4.3.11",
"@smithy/node-http-handler": "^4.4.14",
"@smithy/protocol-http": "^5.3.11",
"@smithy/smithy-client": "^4.12.3",
"@smithy/types": "^4.13.0",
"@smithy/url-parser": "^4.2.11",
"@smithy/util-base64": "^4.3.2",
"@smithy/util-body-length-browser": "^4.2.2",
"@smithy/util-body-length-node": "^4.2.3",
"@smithy/util-defaults-mode-browser": "^4.3.39",
"@smithy/util-defaults-mode-node": "^4.2.42",
"@smithy/util-endpoints": "^3.3.2",
"@smithy/util-middleware": "^4.2.11",
"@smithy/util-retry": "^4.2.11",
"@smithy/util-stream": "^4.5.17",
"@smithy/util-utf8": "^4.2.2",
"@smithy/util-waiter": "^4.2.11",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@adobe/helix-html-pipeline": {
"version": "6.27.28",
"resolved": "https://registry.npmjs.org/@adobe/helix-html-pipeline/-/helix-html-pipeline-6.27.28.tgz",
"integrity": "sha512-01jFtr5uulAJZ2Pq6mZnbVUXRX31AiAwmpZ151GB7dpc9gJgcUX52CgVpYNFk9G2iI6ddT9yHwfxZn27YRKWdw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@adobe/helix-markdown-support": "7.1.18",
"@adobe/helix-shared-utils": "3.0.2",
"@adobe/mdast-util-gridtables": "4.0.18",
"@adobe/remark-gridtables": "3.0.18",
"github-slugger": "2.0.0",
"hast-util-raw": "9.1.0",
"hast-util-select": "6.0.4",
"hast-util-to-html": "9.0.5",
"hast-util-to-string": "3.0.1",
"hastscript": "9.0.1",
"lodash.escape": "4.0.1",
"mdast-util-to-hast": "13.2.1",
"mdast-util-to-string": "4.0.0",
"mime": "4.1.0",
"parse5": "8.0.0",
"rehype-format": "5.0.1",
"rehype-parse": "9.0.1",
"remark-parse": "11.0.0",
"strip-markdown": "6.0.0",
"unified": "11.0.5",
"unist-util-map": "4.0.0",
"unist-util-remove": "4.0.0",
"unist-util-remove-position": "5.0.0",
"unist-util-select": "5.1.0",
"unist-util-visit": "5.1.0",
"unist-util-visit-parents": "6.0.2"
},
"engines": {
"node": ">=16.x"
}
},
"node_modules/@adobe/helix-html-pipeline/node_modules/@adobe/mdast-util-gridtables": {
"version": "4.0.18",
"resolved": "https://registry.npmjs.org/@adobe/mdast-util-gridtables/-/mdast-util-gridtables-4.0.18.tgz",
"integrity": "sha512-Ojd75gpkHxsAtClYHeCsVrR9kDhXf1ozqSr+rEB6pvHHV0OjKLB/VEy6qW/1YUeO4vs92cxtYDg3gj4WUPGbRQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@adobe/micromark-extension-gridtables": "^2.0.4",
"mdast-util-from-markdown": "2.0.3",
"mdast-util-to-hast": "13.2.1",
"mdast-util-to-markdown": "2.1.2",
"unist-util-visit": "5.1.0"
}
},
"node_modules/@adobe/helix-html2md": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@adobe/helix-html2md/-/helix-html2md-2.0.0.tgz",
"integrity": "sha512-qZffirdB8kTYD5f7xmEY4UODkMYs1h0eEJbI0tuw8HVtseqbksnwOsasFEYkGUST6D34HO87qv+QKbQWfLAXDw==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/helix-markdown-support": "^7.1.16",
"@adobe/helix-mediahandler": "^3.0.0",
"@adobe/helix-shared-process-queue": "^3.1.3",
"@adobe/micromark-extension-gridtables": "^2.0.4",
"@adobe/remark-gridtables": "^3.0.15",
"hast-util-select": "^6.0.4",
"hast-util-to-mdast": "^10.1.2",
"hast-util-to-string": "^3.0.1",
"rehype-parse": "^9.0.1",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
}
},
"node_modules/@adobe/helix-markdown-support": {
"version": "7.1.18",
"resolved": "https://registry.npmjs.org/@adobe/helix-markdown-support/-/helix-markdown-support-7.1.18.tgz",
"integrity": "sha512-4wyI159gWGyucbaaQo7749IjXBvGvPIwRyPTlTP0ef1CygbNbQk2iGtMEtOymVeWprqSRh2/p1mpup1bdfUbTw==",
"license": "Apache-2.0",
"dependencies": {
"hast-util-to-html": "9.0.5",
"js-yaml": "4.1.1",
"mdast-util-gfm-footnote": "2.1.0",
"mdast-util-gfm-strikethrough": "2.0.0",
"mdast-util-gfm-table": "2.0.0",
"mdast-util-gfm-task-list-item": "2.0.0",
"mdast-util-phrasing": "4.1.0",
"mdast-util-to-hast": "13.2.1",
"micromark-extension-gfm-footnote": "2.1.0",
"micromark-extension-gfm-strikethrough": "2.1.0",
"micromark-extension-gfm-table": "2.1.1",
"micromark-extension-gfm-tagfilter": "2.0.0",
"micromark-extension-gfm-task-list-item": "2.1.0",
"micromark-util-character": "2.1.1",
"micromark-util-combine-extensions": "2.0.1",
"micromark-util-symbol": "2.0.1",
"unist-util-find": "3.0.0",
"unist-util-visit": "5.1.0"
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"unified": "11.x"
}
},
"node_modules/@adobe/helix-mediahandler": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@adobe/helix-mediahandler/-/helix-mediahandler-3.1.0.tgz",
"integrity": "sha512-mg/reOpIpjim3cbd/uDiEiVnkjPFxazzrOEPzsMNzqfAwk97nZFzTcAOPPIrddewdcQnNwTEeUZWOL/fOcEn0Q==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/fetch": "^4.1.10",
"@aws-sdk/client-s3": "^3.703.0",
"@aws-sdk/lib-storage": "^3.703.0",
"fetch-retry": "6.0.0",
"image-size": "2.0.2",
"mime": "4.1.0"
}
},
"node_modules/@adobe/helix-shared-async": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@adobe/helix-shared-async/-/helix-shared-async-2.0.2.tgz",
"integrity": "sha512-I510DKZI7Vf1ikqm9asKN5ZG9oEEx6VQpttdtzM1BGkrXWA7t/QeG6O54TLKGYMXDhdhpH+8kaleS3OfhQyDOQ==",
"license": "Apache-2.0"
},
"node_modules/@adobe/helix-shared-body-data": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/@adobe/helix-shared-body-data/-/helix-shared-body-data-2.2.3.tgz",
"integrity": "sha512-tgltDjNlW1HrFvTtl+VaQ3UFawlRh3o1lJXrnGivEg6pHt1M+HoeRwMML3dS0uPFtnVpoBawW/fDuk2qfU/0tg==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/fetch": "^4.0.1",
"@adobe/helix-shared-wrap": "^1.0.5"
},
"optionalDependencies": {
"@adobe/helix-universal": "^5.0.0"
}
},
"node_modules/@adobe/helix-shared-body-data/node_modules/@adobe/helix-shared-wrap": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@adobe/helix-shared-wrap/-/helix-shared-wrap-1.0.5.tgz",
"integrity": "sha512-g8bap0KhWI6Y6USlf9Se4t+Og0A6udYkoQH2NBdj/HOLnLozwn+60wbVLJhHIW2Ldt81xmhBqjhW0j1BtCQ3uw==",
"license": "Apache-2.0"
},
"node_modules/@adobe/helix-shared-process-queue": {
"version": "3.1.6",
"resolved": "https://registry.npmjs.org/@adobe/helix-shared-process-queue/-/helix-shared-process-queue-3.1.6.tgz",
"integrity": "sha512-1cYBCDRhlt/NnULO9USyao2udv17jQoAv8QcHHqq52oeYFqsBPKc/Hn4/TRBqZL3hR3pCSvG34rFQOSuYrFGDg==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/helix-shared-async": "2.0.2"
}
},
"node_modules/@adobe/helix-shared-string": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@adobe/helix-shared-string/-/helix-shared-string-2.2.0.tgz",
"integrity": "sha512-HhaMSLwczTFdsgHlmGtlJAsJ5en+zRff3rgnUPLjEf/kO9ECQHwLV/TUuOVi7EMx0odG+56pTbdbO8JfP0qe5A==",
"license": "Apache-2.0"
},
"node_modules/@adobe/helix-shared-utils": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@adobe/helix-shared-utils/-/helix-shared-utils-3.0.2.tgz",
"integrity": "sha512-yRq8NBdP8LjfiSe4NSyRVYybb4aGgWA5PU5GWHFuGmx37xOQ9An5SDDniDAUnAVrc3NYOfJes73QzTPFqMqrbg==",
"license": "Apache-2.0",
"engines": {
"node": ">= 14.18"
}
},
"node_modules/@adobe/helix-shared-wrap": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@adobe/helix-shared-wrap/-/helix-shared-wrap-2.0.2.tgz",
"integrity": "sha512-5cjL0LtqTp7YG6SaYOeW3t+/aRD1DDKhgt6zQKoeoVkpPKo5EsnDDbGUL4naYlxzOnpBx7FdERX6fUA4Kd+T1w==",
"license": "Apache-2.0"
},
"node_modules/@adobe/helix-status": {
"version": "10.1.5",
"resolved": "https://registry.npmjs.org/@adobe/helix-status/-/helix-status-10.1.5.tgz",
"integrity": "sha512-uJG32d5cZjVU37BRNiQeIfH9ut3kypUQfheJ6edVBcKS9Ggd35R3sDpi3hdDbY3/9M5UOMl6b4j65ezdEzeUgQ==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/fetch": "^4.1.10"
}
},
"node_modules/@adobe/helix-universal": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@adobe/helix-universal/-/helix-universal-5.4.0.tgz",
"integrity": "sha512-3ZfFdjYtpv7RCgul9yyOBsRVsxLNapwt0YjASBhyzJGNjnPxrWDlqDtbpBdwAgA1Nuh9nmjzFDFu8CJWv6BMKw==",
"devOptional": true,
"license": "Apache-2.0",
"dependencies": {
"@adobe/fetch": "4.2.3",
"aws4": "1.13.2"
}
},
"node_modules/@adobe/helix-universal-devserver": {
"version": "1.1.146",
"resolved": "https://registry.npmjs.org/@adobe/helix-universal-devserver/-/helix-universal-devserver-1.1.146.tgz",
"integrity": "sha512-WNA+yIeHIa+rDXoKOB2TBrwT2bqJtp9AfkQTqbLPZInThHiPqVdGw0mW5Mhe6IHELSk5TTx35Z09Q31SI/vhXw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@adobe/helix-deploy": "^13.0.0",
"@adobe/helix-universal": "^5.1.0",
"express": "5.2.1",
"fs-extra": "11.3.4"
}
},
"node_modules/@adobe/mdast-util-gridtables": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@adobe/mdast-util-gridtables/-/mdast-util-gridtables-4.0.17.tgz",
"integrity": "sha512-BK9BiGFBt5EVWY2FaUyRU+tHqXRCc+FGehVqtH3sizLw2yx4uNxMI4l566qHIA3vH6866bI9GYIhXw2BYQ/FZw==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/micromark-extension-gridtables": "^2.0.4",
"mdast-util-from-markdown": "2.0.3",
"mdast-util-to-hast": "13.2.1",
"mdast-util-to-markdown": "2.1.2",
"unist-util-visit": "5.1.0"
}
},
"node_modules/@adobe/micromark-extension-gridtables": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@adobe/micromark-extension-gridtables/-/micromark-extension-gridtables-2.0.4.tgz",
"integrity": "sha512-mzyRI2d0StuUv75VFnffYsHXRUo8J9RlK1EvjfmgHahwda1gNwe1Fqh4AYEZSWChf1HD/QBRcL6hEnxj9hedMg==",
"license": "Apache-2.0",
"dependencies": {
"micromark": "^4.0.0",
"micromark-util-character": "^2.0.0",
"micromark-util-symbol": "^2.0.0"
}
},
"node_modules/@adobe/remark-gridtables": {
"version": "3.0.18",
"resolved": "https://registry.npmjs.org/@adobe/remark-gridtables/-/remark-gridtables-3.0.18.tgz",
"integrity": "sha512-dw0v2HJyZKOcOn4KUb8mkHkceG1OVE1q26bYycKzYN/wPnBjneysxD0wR4tJ0O1aPFUX9p7wTpf3xl6ZkiJWXA==",
"license": "Apache-2.0",
"dependencies": {
"@adobe/mdast-util-gridtables": "4.0.17",
"@adobe/micromark-extension-gridtables": "2.0.4"
}
},
"node_modules/@adobe/semantic-release-coralogix": {
"version": "1.1.40",
"resolved": "https://registry.npmjs.org/@adobe/semantic-release-coralogix/-/semantic-release-coralogix-1.1.40.tgz",
"integrity": "sha512-2IcRtz6RdZxPkoyEho2fZJg/5vzyY9ixqlPVpnPhb3OJnhZIn/V56HXHA//5UA4UJOutNr69XDKdU4kCAZ6gtQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@adobe/fetch": "4.2.3",
"@semantic-release/error": "4.0.0"
}
},
"node_modules/@aws-crypto/crc32": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz",
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
"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/crc32c": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/crc32c/-/crc32c-5.2.0.tgz",
"integrity": "sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/util": "^5.2.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/sha1-browser": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha1-browser/-/sha1-browser-5.2.0.tgz",
"integrity": "sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==",
"license": "Apache-2.0",
"dependencies": {
"@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/sha1-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/sha1-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/sha1-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-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-apigatewayv2": {
"version": "3.1005.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-apigatewayv2/-/client-apigatewayv2-3.1005.0.tgz",
"integrity": "sha512-x1n8SXcGNiLRf6lxK2wk8O7oEyalC8rb428TBsyp/wrmiKOkadAqnPL8SK4FA4GOfMVaS0Z3vxj6u24OfZJLYw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "^3.973.19",
"@aws-sdk/credential-provider-node": "^3.972.19",
"@aws-sdk/middleware-host-header": "^3.972.7",
"@aws-sdk/middleware-logger": "^3.972.7",
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
"@aws-sdk/middleware-user-agent": "^3.972.20",
"@aws-sdk/region-config-resolver": "^3.972.7",
"@aws-sdk/types": "^3.973.5",
"@aws-sdk/util-endpoints": "^3.996.4",
"@aws-sdk/util-user-agent-browser": "^3.972.7",
"@aws-sdk/util-user-agent-node": "^3.973.5",
"@smithy/config-resolver": "^4.4.10",
"@smithy/core": "^3.23.9",
"@smithy/fetch-http-handler": "^5.3.13",
"@smithy/hash-node": "^4.2.11",
"@smithy/invalid-dependency": "^4.2.11",
"@smithy/middleware-content-length": "^4.2.11",
"@smithy/middleware-endpoint": "^4.4.23",
"@smithy/middleware-retry": "^4.4.40",
"@smithy/middleware-serde": "^4.2.12",
"@smithy/middleware-stack": "^4.2.11",
"@smithy/node-config-provider": "^4.3.11",
"@smithy/node-http-handler": "^4.4.14",
"@smithy/protocol-http": "^5.3.11",
"@smithy/smithy-client": "^4.12.3",
"@smithy/types": "^4.13.0",
"@smithy/url-parser": "^4.2.11",
"@smithy/util-base64": "^4.3.2",
"@smithy/util-body-length-browser": "^4.2.2",
"@smithy/util-body-length-node": "^4.2.3",
"@smithy/util-defaults-mode-browser": "^4.3.39",
"@smithy/util-defaults-mode-node": "^4.2.42",
"@smithy/util-endpoints": "^3.3.2",
"@smithy/util-middleware": "^4.2.11",
"@smithy/util-retry": "^4.2.11",
"@smithy/util-stream": "^4.5.17",
"@smithy/util-utf8": "^4.2.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@aws-sdk/client-lambda": {
"version": "3.1005.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-lambda/-/client-lambda-3.1005.0.tgz",
"integrity": "sha512-Wwef/fjArT5h+nEiW+rvhh15xT+6Lx3boZPFz+P5RA3quAyeSEKWx5aSOrRin59tINidRuy1lwhGPLCS4c4DHA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "^3.973.19",
"@aws-sdk/credential-provider-node": "^3.972.19",
"@aws-sdk/middleware-host-header": "^3.972.7",
"@aws-sdk/middleware-logger": "^3.972.7",
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
"@aws-sdk/middleware-user-agent": "^3.972.20",
"@aws-sdk/region-config-resolver": "^3.972.7",
"@aws-sdk/types": "^3.973.5",
"@aws-sdk/util-endpoints": "^3.996.4",
"@aws-sdk/util-user-agent-browser": "^3.972.7",
"@aws-sdk/util-user-agent-node": "^3.973.5",
"@smithy/config-resolver": "^4.4.10",
"@smithy/core": "^3.23.9",
"@smithy/eventstream-serde-browser": "^4.2.11",
"@smithy/eventstream-serde-config-resolver": "^4.3.11",
"@smithy/eventstream-serde-node": "^4.2.11",
"@smithy/fetch-http-handler": "^5.3.13",
"@smithy/hash-node": "^4.2.11",
"@smithy/invalid-dependency": "^4.2.11",
"@smithy/middleware-content-length": "^4.2.11",
"@smithy/middleware-endpoint": "^4.4.23",
"@smithy/middleware-retry": "^4.4.40",
"@smithy/middleware-serde": "^4.2.12",
"@smithy/middleware-stack": "^4.2.11",
"@smithy/node-config-provider": "^4.3.11",
"@smithy/node-http-handler": "^4.4.14",
"@smithy/protocol-http": "^5.3.11",
"@smithy/smithy-client": "^4.12.3",
"@smithy/types": "^4.13.0",
"@smithy/url-parser": "^4.2.11",
"@smithy/util-base64": "^4.3.2",
"@smithy/util-body-length-browser": "^4.2.2",
"@smithy/util-body-length-node": "^4.2.3",
"@smithy/util-defaults-mode-browser": "^4.3.39",
"@smithy/util-defaults-mode-node": "^4.2.42",
"@smithy/util-endpoints": "^3.3.2",
"@smithy/util-middleware": "^4.2.11",
"@smithy/util-retry": "^4.2.11",
"@smithy/util-stream": "^4.5.17",
"@smithy/util-utf8": "^4.2.2",
"@smithy/util-waiter": "^4.2.11",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@aws-sdk/client-s3": {
"version": "3.1009.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.1009.0.tgz",
"integrity": "sha512-luy8CxallkoiGWTqU86ca/BbvkWJjs0oala7uIIRN1JtQxMb5i4Yl/PBZVcQFhbK9kQi0PK0GfD8gIpLkI91fw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha1-browser": "5.2.0",
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "^3.973.20",
"@aws-sdk/credential-provider-node": "^3.972.21",
"@aws-sdk/middleware-bucket-endpoint": "^3.972.8",
"@aws-sdk/middleware-expect-continue": "^3.972.8",
"@aws-sdk/middleware-flexible-checksums": "^3.973.6",
"@aws-sdk/middleware-host-header": "^3.972.8",
"@aws-sdk/middleware-location-constraint": "^3.972.8",
"@aws-sdk/middleware-logger": "^3.972.8",
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
"@aws-sdk/middleware-sdk-s3": "^3.972.20",
"@aws-sdk/middleware-ssec": "^3.972.8",
"@aws-sdk/middleware-user-agent": "^3.972.21",
"@aws-sdk/region-config-resolver": "^3.972.8",
"@aws-sdk/signature-v4-multi-region": "^3.996.8",
"@aws-sdk/types": "^3.973.6",
"@aws-sdk/util-endpoints": "^3.996.5",
"@aws-sdk/util-user-agent-browser": "^3.972.8",
"@aws-sdk/util-user-agent-node": "^3.973.7",
"@smithy/config-resolver": "^4.4.11",
"@smithy/core": "^3.23.11",
"@smithy/eventstream-serde-browser": "^4.2.12",
"@smithy/eventstream-serde-config-resolver": "^4.3.12",
"@smithy/eventstream-serde-node": "^4.2.12",
"@smithy/fetch-http-handler": "^5.3.15",
"@smithy/hash-blob-browser": "^4.2.13",
"@smithy/hash-node": "^4.2.12",
"@smithy/hash-stream-node": "^4.2.12",
"@smithy/invalid-dependency": "^4.2.12",
"@smithy/md5-js": "^4.2.12",
"@smithy/middleware-content-length": "^4.2.12",
"@smithy/middleware-endpoint": "^4.4.25",
"@smithy/middleware-retry": "^4.4.42",
"@smithy/middleware-serde": "^4.2.14",
"@smithy/middleware-stack": "^4.2.12",
"@smithy/node-config-provider": "^4.3.12",
"@smithy/node-http-handler": "^4.4.16",
"@smithy/protocol-http": "^5.3.12",
"@smithy/smithy-client": "^4.12.5",
"@smithy/types": "^4.13.1",
"@smithy/url-parser": "^4.2.12",
"@smithy/util-base64": "^4.3.2",
"@smithy/util-body-length-browser": "^4.2.2",
"@smithy/util-body-length-node": "^4.2.3",
"@smithy/util-defaults-mode-browser": "^4.3.41",
"@smithy/util-defaults-mode-node": "^4.2.44",
"@smithy/util-endpoints": "^3.3.3",
"@smithy/util-middleware": "^4.2.12",
"@smithy/util-retry": "^4.2.12",
"@smithy/util-stream": "^4.5.19",
"@smithy/util-utf8": "^4.2.2",
"@smithy/util-waiter": "^4.2.13",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@aws-sdk/client-secrets-manager": {
"version": "3.1005.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.1005.0.tgz",
"integrity": "sha512-RIsA66nM7FLFobJJnCx3HbkshcdMGzh+ZVYwkiwl8/PbBpDwr1xns1RIObbFOFrewUwKMzpJ/TjshMs2MeQY8w==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "^3.973.19",
"@aws-sdk/credential-provider-node": "^3.972.19",
"@aws-sdk/middleware-host-header": "^3.972.7",
"@aws-sdk/middleware-logger": "^3.972.7",
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
"@aws-sdk/middleware-user-agent": "^3.972.20",
"@aws-sdk/region-config-resolver": "^3.972.7",
"@aws-sdk/types": "^3.973.5",
"@aws-sdk/util-endpoints": "^3.996.4",
"@aws-sdk/util-user-agent-browser": "^3.972.7",
"@aws-sdk/util-user-agent-node": "^3.973.5",
"@smithy/config-resolver": "^4.4.10",
"@smithy/core": "^3.23.9",
"@smithy/fetch-http-handler": "^5.3.13",
"@smithy/hash-node": "^4.2.11",
"@smithy/invalid-dependency": "^4.2.11",
"@smithy/middleware-content-length": "^4.2.11",
"@smithy/middleware-endpoint": "^4.4.23",
"@smithy/middleware-retry": "^4.4.40",
"@smithy/middleware-serde": "^4.2.12",
"@smithy/middleware-stack": "^4.2.11",
"@smithy/node-config-provider": "^4.3.11",
"@smithy/node-http-handler": "^4.4.14",
"@smithy/protocol-http": "^5.3.11",
"@smithy/smithy-client": "^4.12.3",
"@smithy/types": "^4.13.0",
"@smithy/url-parser": "^4.2.11",
"@smithy/util-base64": "^4.3.2",
"@smithy/util-body-length-browser": "^4.2.2",
"@smithy/util-body-length-node": "^4.2.3",
"@smithy/util-defaults-mode-browser": "^4.3.39",
"@smithy/util-defaults-mode-node": "^4.2.42",
"@smithy/util-endpoints": "^3.3.2",
"@smithy/util-middleware": "^4.2.11",
"@smithy/util-retry": "^4.2.11",
"@smithy/util-utf8": "^4.2.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@aws-sdk/client-ssm": {
"version": "3.1005.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-ssm/-/client-ssm-3.1005.0.tgz",
"integrity": "sha512-4+fEslOguhf9Oc4CDOk1OAJFFoNTWyXYUwFxPwaBMp6xpEhBjztYBImYYve++2OC4Zqg7o8uK+G8MYb5090ncg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "^3.973.19",
"@aws-sdk/credential-provider-node": "^3.972.19",
"@aws-sdk/middleware-host-header": "^3.972.7",
"@aws-sdk/middleware-logger": "^3.972.7",
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
"@aws-sdk/middleware-user-agent": "^3.972.20",
"@aws-sdk/region-config-resolver": "^3.972.7",
"@aws-sdk/types": "^3.973.5",
"@aws-sdk/util-endpoints": "^3.996.4",
"@aws-sdk/util-user-agent-browser": "^3.972.7",
"@aws-sdk/util-user-agent-node": "^3.973.5",
"@smithy/config-resolver": "^4.4.10",
"@smithy/core": "^3.23.9",
"@smithy/fetch-http-handler": "^5.3.13",
"@smithy/hash-node": "^4.2.11",
"@smithy/invalid-dependency": "^4.2.11",
"@smithy/middleware-content-length": "^4.2.11",
"@smithy/middleware-endpoint": "^4.4.23",
"@smithy/middleware-retry": "^4.4.40",
"@smithy/middleware-serde": "^4.2.12",
"@smithy/middleware-stack": "^4.2.11",
"@smithy/node-config-provider": "^4.3.11",
"@smithy/node-http-handler": "^4.4.14",
"@smithy/protocol-http": "^5.3.11",
"@smithy/smithy-client": "^4.12.3",
"@smithy/types": "^4.13.0",
"@smithy/url-parser": "^4.2.11",
"@smithy/util-base64": "^4.3.2",
"@smithy/util-body-length-browser": "^4.2.2",
"@smithy/util-body-length-node": "^4.2.3",
"@smithy/util-defaults-mode-browser": "^4.3.39",
"@smithy/util-defaults-mode-node": "^4.2.42",
"@smithy/util-endpoints": "^3.3.2",
"@smithy/util-middleware": "^4.2.11",
"@smithy/util-retry": "^4.2.11",
"@smithy/util-utf8": "^4.2.2",
"@smithy/util-waiter": "^4.2.11",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@aws-sdk/client-sts": {
"version": "3.1005.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.1005.0.tgz",
"integrity": "sha512-TCCWkROc6akngO5595RBmD3Zeq9CFtoZa3TsugyvOoDEd0c/FFOnoAZ7TdTe3MLuvkbXH5yvN6hLyLQgytNIAg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "^3.973.19",
"@aws-sdk/credential-provider-node": "^3.972.19",
"@aws-sdk/middleware-host-header": "^3.972.7",
"@aws-sdk/middleware-logger": "^3.972.7",
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
"@aws-sdk/middleware-user-agent": "^3.972.20",
"@aws-sdk/region-config-resolver": "^3.972.7",
"@aws-sdk/types": "^3.973.5",
"@aws-sdk/util-endpoints": "^3.996.4",
"@aws-sdk/util-user-agent-browser": "^3.972.7",
"@aws-sdk/util-user-agent-node": "^3.973.5",
"@smithy/config-resolver": "^4.4.10",
"@smithy/core": "^3.23.9",
"@smithy/fetch-http-handler": "^5.3.13",
"@smithy/hash-node": "^4.2.11",
"@smithy/invalid-dependency": "^4.2.11",
"@smithy/middleware-content-length": "^4.2.11",
"@smithy/middleware-endpoint": "^4.4.23",
"@smithy/middleware-retry": "^4.4.40",
"@smithy/middleware-serde": "^4.2.12",
"@smithy/middleware-stack": "^4.2.11",
"@smithy/node-config-provider": "^4.3.11",
"@smithy/node-http-handler": "^4.4.14",
"@smithy/protocol-http": "^5.3.11",
"@smithy/smithy-client": "^4.12.3",
"@smithy/types": "^4.13.0",