generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package-lock.json
8350 lines (8350 loc) · 332 KB
/
package-lock.json
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-secrets-manager-read-action",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "aws-secrets-manager-read-action",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@aws-sdk/client-secrets-manager": "3.693.0"
},
"devDependencies": {
"@types/node": "^20.17.6",
"@typescript-eslint/parser": "^8.14.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.0.2",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@actions/core": {
"version": "1.11.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@actions/core/-/core-1.11.1.tgz",
"integrity": "sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==",
"dependencies": {
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.0.1"
}
},
"node_modules/@actions/exec": {
"version": "1.1.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@actions/exec/-/exec-1.1.1.tgz",
"integrity": "sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==",
"dependencies": {
"@actions/io": "^1.0.1"
}
},
"node_modules/@actions/http-client": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz",
"integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==",
"dependencies": {
"tunnel": "^0.0.6"
}
},
"node_modules/@actions/io": {
"version": "1.1.3",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@actions/io/-/io-1.1.3.tgz",
"integrity": "sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q=="
},
"node_modules/@aws-crypto/sha256-browser": {
"version": "5.2.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
"integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
"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://packages.atlassian.com/api/npm/npm-remote/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
"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://packages.atlassian.com/api/npm/npm-remote/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
"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://packages.atlassian.com/api/npm/npm-remote/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
"dependencies": {
"@smithy/util-buffer-from": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-crypto/sha256-js": {
"version": "5.2.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
"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/sha256-js/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-crypto/supports-web-crypto": {
"version": "5.2.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
"dependencies": {
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-crypto/util": {
"version": "5.2.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-crypto/util/-/util-5.2.0.tgz",
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
"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://packages.atlassian.com/api/npm/npm-remote/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
"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://packages.atlassian.com/api/npm/npm-remote/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
"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://packages.atlassian.com/api/npm/npm-remote/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
"dependencies": {
"@smithy/util-buffer-from": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/util/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/client-secrets-manager": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.693.0.tgz",
"integrity": "sha512-PiXkl64LYhwZQ2zPQhxwpnLwGS7Lw8asFCj29SxEaYRnYra3ajE5d+Yvv68qC+diUNkeZh6k6zn7nEOZ4rWEwA==",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/client-sso-oidc": "3.693.0",
"@aws-sdk/client-sts": "3.693.0",
"@aws-sdk/core": "3.693.0",
"@aws-sdk/credential-provider-node": "3.693.0",
"@aws-sdk/middleware-host-header": "3.693.0",
"@aws-sdk/middleware-logger": "3.693.0",
"@aws-sdk/middleware-recursion-detection": "3.693.0",
"@aws-sdk/middleware-user-agent": "3.693.0",
"@aws-sdk/region-config-resolver": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@aws-sdk/util-endpoints": "3.693.0",
"@aws-sdk/util-user-agent-browser": "3.693.0",
"@aws-sdk/util-user-agent-node": "3.693.0",
"@smithy/config-resolver": "^3.0.11",
"@smithy/core": "^2.5.2",
"@smithy/fetch-http-handler": "^4.1.0",
"@smithy/hash-node": "^3.0.9",
"@smithy/invalid-dependency": "^3.0.9",
"@smithy/middleware-content-length": "^3.0.11",
"@smithy/middleware-endpoint": "^3.2.2",
"@smithy/middleware-retry": "^3.0.26",
"@smithy/middleware-serde": "^3.0.9",
"@smithy/middleware-stack": "^3.0.9",
"@smithy/node-config-provider": "^3.1.10",
"@smithy/node-http-handler": "^3.3.0",
"@smithy/protocol-http": "^4.1.6",
"@smithy/smithy-client": "^3.4.3",
"@smithy/types": "^3.7.0",
"@smithy/url-parser": "^3.0.9",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
"@smithy/util-defaults-mode-browser": "^3.0.26",
"@smithy/util-defaults-mode-node": "^3.0.26",
"@smithy/util-endpoints": "^2.1.5",
"@smithy/util-middleware": "^3.0.9",
"@smithy/util-retry": "^3.0.9",
"@smithy/util-utf8": "^3.0.0",
"@types/uuid": "^9.0.1",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/client-secrets-manager/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/client-sso": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/client-sso/-/client-sso-3.693.0.tgz",
"integrity": "sha512-QEynrBC26x6TG9ZMzApR/kZ3lmt4lEIs2D+cHuDxt6fDGzahBUsQFBwJqhizzsM97JJI5YvmJhmihoYjdSSaXA==",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.693.0",
"@aws-sdk/middleware-host-header": "3.693.0",
"@aws-sdk/middleware-logger": "3.693.0",
"@aws-sdk/middleware-recursion-detection": "3.693.0",
"@aws-sdk/middleware-user-agent": "3.693.0",
"@aws-sdk/region-config-resolver": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@aws-sdk/util-endpoints": "3.693.0",
"@aws-sdk/util-user-agent-browser": "3.693.0",
"@aws-sdk/util-user-agent-node": "3.693.0",
"@smithy/config-resolver": "^3.0.11",
"@smithy/core": "^2.5.2",
"@smithy/fetch-http-handler": "^4.1.0",
"@smithy/hash-node": "^3.0.9",
"@smithy/invalid-dependency": "^3.0.9",
"@smithy/middleware-content-length": "^3.0.11",
"@smithy/middleware-endpoint": "^3.2.2",
"@smithy/middleware-retry": "^3.0.26",
"@smithy/middleware-serde": "^3.0.9",
"@smithy/middleware-stack": "^3.0.9",
"@smithy/node-config-provider": "^3.1.10",
"@smithy/node-http-handler": "^3.3.0",
"@smithy/protocol-http": "^4.1.6",
"@smithy/smithy-client": "^3.4.3",
"@smithy/types": "^3.7.0",
"@smithy/url-parser": "^3.0.9",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
"@smithy/util-defaults-mode-browser": "^3.0.26",
"@smithy/util-defaults-mode-node": "^3.0.26",
"@smithy/util-endpoints": "^2.1.5",
"@smithy/util-middleware": "^3.0.9",
"@smithy/util-retry": "^3.0.9",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/client-sso-oidc": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.693.0.tgz",
"integrity": "sha512-UEDbYlYtK/e86OOMyFR4zEPyenIxDzO2DRdz3fwVW7RzZ94wfmSwBh/8skzPTuY1G7sI064cjHW0b0QG01Sdtg==",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.693.0",
"@aws-sdk/credential-provider-node": "3.693.0",
"@aws-sdk/middleware-host-header": "3.693.0",
"@aws-sdk/middleware-logger": "3.693.0",
"@aws-sdk/middleware-recursion-detection": "3.693.0",
"@aws-sdk/middleware-user-agent": "3.693.0",
"@aws-sdk/region-config-resolver": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@aws-sdk/util-endpoints": "3.693.0",
"@aws-sdk/util-user-agent-browser": "3.693.0",
"@aws-sdk/util-user-agent-node": "3.693.0",
"@smithy/config-resolver": "^3.0.11",
"@smithy/core": "^2.5.2",
"@smithy/fetch-http-handler": "^4.1.0",
"@smithy/hash-node": "^3.0.9",
"@smithy/invalid-dependency": "^3.0.9",
"@smithy/middleware-content-length": "^3.0.11",
"@smithy/middleware-endpoint": "^3.2.2",
"@smithy/middleware-retry": "^3.0.26",
"@smithy/middleware-serde": "^3.0.9",
"@smithy/middleware-stack": "^3.0.9",
"@smithy/node-config-provider": "^3.1.10",
"@smithy/node-http-handler": "^3.3.0",
"@smithy/protocol-http": "^4.1.6",
"@smithy/smithy-client": "^3.4.3",
"@smithy/types": "^3.7.0",
"@smithy/url-parser": "^3.0.9",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
"@smithy/util-defaults-mode-browser": "^3.0.26",
"@smithy/util-defaults-mode-node": "^3.0.26",
"@smithy/util-endpoints": "^2.1.5",
"@smithy/util-middleware": "^3.0.9",
"@smithy/util-retry": "^3.0.9",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sts": "^3.693.0"
}
},
"node_modules/@aws-sdk/client-sso-oidc/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/client-sso/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/client-sts": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/client-sts/-/client-sts-3.693.0.tgz",
"integrity": "sha512-4S2y7VEtvdnjJX4JPl4kDQlslxXEZFnC50/UXVUYSt/AMc5A/GgspFNA5FVz4E3Gwpfobbf23hR2NBF8AGvYoQ==",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/client-sso-oidc": "3.693.0",
"@aws-sdk/core": "3.693.0",
"@aws-sdk/credential-provider-node": "3.693.0",
"@aws-sdk/middleware-host-header": "3.693.0",
"@aws-sdk/middleware-logger": "3.693.0",
"@aws-sdk/middleware-recursion-detection": "3.693.0",
"@aws-sdk/middleware-user-agent": "3.693.0",
"@aws-sdk/region-config-resolver": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@aws-sdk/util-endpoints": "3.693.0",
"@aws-sdk/util-user-agent-browser": "3.693.0",
"@aws-sdk/util-user-agent-node": "3.693.0",
"@smithy/config-resolver": "^3.0.11",
"@smithy/core": "^2.5.2",
"@smithy/fetch-http-handler": "^4.1.0",
"@smithy/hash-node": "^3.0.9",
"@smithy/invalid-dependency": "^3.0.9",
"@smithy/middleware-content-length": "^3.0.11",
"@smithy/middleware-endpoint": "^3.2.2",
"@smithy/middleware-retry": "^3.0.26",
"@smithy/middleware-serde": "^3.0.9",
"@smithy/middleware-stack": "^3.0.9",
"@smithy/node-config-provider": "^3.1.10",
"@smithy/node-http-handler": "^3.3.0",
"@smithy/protocol-http": "^4.1.6",
"@smithy/smithy-client": "^3.4.3",
"@smithy/types": "^3.7.0",
"@smithy/url-parser": "^3.0.9",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
"@smithy/util-defaults-mode-browser": "^3.0.26",
"@smithy/util-defaults-mode-node": "^3.0.26",
"@smithy/util-endpoints": "^2.1.5",
"@smithy/util-middleware": "^3.0.9",
"@smithy/util-retry": "^3.0.9",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/client-sts/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/core": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/core/-/core-3.693.0.tgz",
"integrity": "sha512-v6Z/kWmLFqRLDPEwl9hJGhtTgIFHjZugSfF1Yqffdxf4n1AWgtHS7qSegakuMyN5pP4K2tvUD8qHJ+gGe2Bw2A==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/core": "^2.5.2",
"@smithy/node-config-provider": "^3.1.10",
"@smithy/property-provider": "^3.1.9",
"@smithy/protocol-http": "^4.1.6",
"@smithy/signature-v4": "^4.2.2",
"@smithy/smithy-client": "^3.4.3",
"@smithy/types": "^3.7.0",
"@smithy/util-middleware": "^3.0.9",
"fast-xml-parser": "4.4.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/core/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/credential-provider-env": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/credential-provider-env/-/credential-provider-env-3.693.0.tgz",
"integrity": "sha512-hMUZaRSF7+iBKZfBHNLihFs9zvpM1CB8MBOTnTp5NGCVkRYF3SB2LH+Kcippe0ats4qCyB1eEoyQX99rERp2iQ==",
"dependencies": {
"@aws-sdk/core": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/property-provider": "^3.1.9",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-env/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/credential-provider-http": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/credential-provider-http/-/credential-provider-http-3.693.0.tgz",
"integrity": "sha512-sL8MvwNJU7ZpD7/d2VVb3by1GknIJUxzTIgYtVkDVA/ojo+KRQSSHxcj0EWWXF5DTSh2Tm+LrEug3y1ZyKHsDA==",
"dependencies": {
"@aws-sdk/core": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/fetch-http-handler": "^4.1.0",
"@smithy/node-http-handler": "^3.3.0",
"@smithy/property-provider": "^3.1.9",
"@smithy/protocol-http": "^4.1.6",
"@smithy/smithy-client": "^3.4.3",
"@smithy/types": "^3.7.0",
"@smithy/util-stream": "^3.3.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-http/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.693.0.tgz",
"integrity": "sha512-kvaa4mXhCCOuW7UQnBhYqYfgWmwy7WSBSDClutwSLPZvgrhYj2l16SD2lN4IfYdxARYMJJ1lFYp3/jJG/9Yk4Q==",
"dependencies": {
"@aws-sdk/core": "3.693.0",
"@aws-sdk/credential-provider-env": "3.693.0",
"@aws-sdk/credential-provider-http": "3.693.0",
"@aws-sdk/credential-provider-process": "3.693.0",
"@aws-sdk/credential-provider-sso": "3.693.0",
"@aws-sdk/credential-provider-web-identity": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/credential-provider-imds": "^3.2.6",
"@smithy/property-provider": "^3.1.9",
"@smithy/shared-ini-file-loader": "^3.1.10",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sts": "^3.693.0"
}
},
"node_modules/@aws-sdk/credential-provider-ini/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/credential-provider-node": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/credential-provider-node/-/credential-provider-node-3.693.0.tgz",
"integrity": "sha512-42WMsBjTNnjYxYuM3qD/Nq+8b7UdMopUq5OduMDxoM3mFTV6PXMMnfI4Z1TNnR4tYRvPXAnuNltF6xmjKbSJRA==",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.693.0",
"@aws-sdk/credential-provider-http": "3.693.0",
"@aws-sdk/credential-provider-ini": "3.693.0",
"@aws-sdk/credential-provider-process": "3.693.0",
"@aws-sdk/credential-provider-sso": "3.693.0",
"@aws-sdk/credential-provider-web-identity": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/credential-provider-imds": "^3.2.6",
"@smithy/property-provider": "^3.1.9",
"@smithy/shared-ini-file-loader": "^3.1.10",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-node/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/credential-provider-process": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/credential-provider-process/-/credential-provider-process-3.693.0.tgz",
"integrity": "sha512-cvxQkrTWHHjeHrPlj7EWXPnFSq8x7vMx+Zn1oTsMpCY445N9KuzjfJTkmNGwU2GT6rSZI9/0MM02aQvl5bBBTQ==",
"dependencies": {
"@aws-sdk/core": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/property-provider": "^3.1.9",
"@smithy/shared-ini-file-loader": "^3.1.10",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-process/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/credential-provider-sso": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.693.0.tgz",
"integrity": "sha512-479UlJxY+BFjj3pJFYUNC0DCMrykuG7wBAXfsvZqQxKUa83DnH5Q1ID/N2hZLkxjGd4ZW0AC3lTOMxFelGzzpQ==",
"dependencies": {
"@aws-sdk/client-sso": "3.693.0",
"@aws-sdk/core": "3.693.0",
"@aws-sdk/token-providers": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/property-provider": "^3.1.9",
"@smithy/shared-ini-file-loader": "^3.1.10",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-sso/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.693.0.tgz",
"integrity": "sha512-8LB210Pr6VeCiSb2hIra+sAH4KUBLyGaN50axHtIgufVK8jbKIctTZcVY5TO9Se+1107TsruzeXS7VeqVdJfFA==",
"dependencies": {
"@aws-sdk/core": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/property-provider": "^3.1.9",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sts": "^3.693.0"
}
},
"node_modules/@aws-sdk/credential-provider-web-identity/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/middleware-host-header": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/middleware-host-header/-/middleware-host-header-3.693.0.tgz",
"integrity": "sha512-BCki6sAZ5jYwIN/t3ElCiwerHad69ipHwPsDCxJQyeiOnJ8HG+lEpnVIfrnI8A0fLQNSF3Gtx6ahfBpKiv1Oug==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/protocol-http": "^4.1.6",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-host-header/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/middleware-logger": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/middleware-logger/-/middleware-logger-3.693.0.tgz",
"integrity": "sha512-dXnXDPr+wIiJ1TLADACI1g9pkSB21KkMIko2u4CJ2JCBoxi5IqeTnVoa6YcC8GdFNVRl+PorZ3Zqfmf1EOTC6w==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-logger/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.693.0.tgz",
"integrity": "sha512-0LDmM+VxXp0u3rG0xQRWD/q6Ubi7G8I44tBPahevD5CaiDZTkmNTrVUf0VEJgVe0iCKBppACMBDkLB0/ETqkFw==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/protocol-http": "^4.1.6",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-recursion-detection/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.693.0.tgz",
"integrity": "sha512-/KUq/KEpFFbQmNmpp7SpAtFAdViquDfD2W0QcG07zYBfz9MwE2ig48ALynXm5sMpRmnG7sJXjdvPtTsSVPfkiw==",
"dependencies": {
"@aws-sdk/core": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@aws-sdk/util-endpoints": "3.693.0",
"@smithy/core": "^2.5.2",
"@smithy/protocol-http": "^4.1.6",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-user-agent/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/region-config-resolver": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/region-config-resolver/-/region-config-resolver-3.693.0.tgz",
"integrity": "sha512-YLUkMsUY0GLW/nfwlZ69cy1u07EZRmsv8Z9m0qW317/EZaVx59hcvmcvb+W4bFqj5E8YImTjoGfE4cZ0F9mkyw==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/node-config-provider": "^3.1.10",
"@smithy/types": "^3.7.0",
"@smithy/util-config-provider": "^3.0.0",
"@smithy/util-middleware": "^3.0.9",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/region-config-resolver/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/token-providers": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/token-providers/-/token-providers-3.693.0.tgz",
"integrity": "sha512-nDBTJMk1l/YmFULGfRbToOA2wjf+FkQT4dMgYCv+V9uSYsMzQj8A7Tha2dz9yv4vnQgYaEiErQ8d7HVyXcVEoA==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/property-provider": "^3.1.9",
"@smithy/shared-ini-file-loader": "^3.1.10",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sso-oidc": "^3.693.0"
}
},
"node_modules/@aws-sdk/token-providers/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/types": {
"version": "3.692.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/types/-/types-3.692.0.tgz",
"integrity": "sha512-RpNvzD7zMEhiKgmlxGzyXaEcg2khvM7wd5sSHVapOcrde1awQSOMGI4zKBQ+wy5TnDfrm170ROz/ERLYtrjPZA==",
"dependencies": {
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/types/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/util-endpoints": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/util-endpoints/-/util-endpoints-3.693.0.tgz",
"integrity": "sha512-eo4F6DRQ/kxS3gxJpLRv+aDNy76DxQJL5B3DPzpr9Vkq0ygVoi4GT5oIZLVaAVIJmi6k5qq9dLsYZfWLUxJJSg==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/types": "^3.7.0",
"@smithy/util-endpoints": "^2.1.5",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/util-endpoints/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/util-locate-window": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/util-locate-window/-/util-locate-window-3.693.0.tgz",
"integrity": "sha512-ttrag6haJLWABhLqtg1Uf+4LgHWIMOVSYL+VYZmAp2v4PUGOwWmWQH0Zk8RM7YuQcLfH/EoR72/Yxz6A4FKcuw==",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/util-locate-window/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/util-user-agent-browser": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.693.0.tgz",
"integrity": "sha512-6EUfuKOujtddy18OLJUaXfKBgs+UcbZ6N/3QV4iOkubCUdeM1maIqs++B9bhCbWeaeF5ORizJw5FTwnyNjE/mw==",
"dependencies": {
"@aws-sdk/types": "3.692.0",
"@smithy/types": "^3.7.0",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-sdk/util-user-agent-browser/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@aws-sdk/util-user-agent-node": {
"version": "3.693.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.693.0.tgz",
"integrity": "sha512-td0OVX8m5ZKiXtecIDuzY3Y3UZIzvxEr57Hp21NOwieqKCG2UeyQWWeGPv0FQaU7dpTkvFmVNI+tx9iB8V/Nhg==",
"dependencies": {
"@aws-sdk/middleware-user-agent": "3.693.0",
"@aws-sdk/types": "3.692.0",
"@smithy/node-config-provider": "^3.1.10",
"@smithy/types": "^3.7.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"aws-crt": ">=1.0.0"
},
"peerDependenciesMeta": {
"aws-crt": {
"optional": true
}
}
},
"node_modules/@aws-sdk/util-user-agent-node/node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/@babel/runtime": {
"version": "7.20.13",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz",
"integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==",
"dev": true,
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
"integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
"dev": true,
"dependencies": {
"eslint-visitor-keys": "^3.4.3"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.12.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
"integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.57.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@eslint/js/-/js-8.57.1.tgz",
"integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@github/browserslist-config": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@github/browserslist-config/-/browserslist-config-1.0.0.tgz",
"integrity": "sha512-gIhjdJp/c2beaIWWIlsXdqXVRUz3r2BxBCpfz/F3JXHvSAQ1paMYjLH+maEATtENg+k5eLV7gA+9yPp762ieuw==",
"dev": true
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.13.0",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
"integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
"deprecated": "Use @eslint/config-array instead",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.3",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.3",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
"integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
"deprecated": "Use @eslint/object-schema instead",
"dev": true
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@pkgr/core": {
"version": "0.1.1",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@pkgr/core/-/core-0.1.1.tgz",
"integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==",
"dev": true,
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/unts"
}
},
"node_modules/@smithy/abort-controller": {
"version": "3.1.8",
"resolved": "https://packages.atlassian.com/api/npm/npm-remote/@smithy/abort-controller/-/abort-controller-3.1.8.tgz",
"integrity": "sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==",
"dependencies": {
"@smithy/types": "^3.7.1",