-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
12892 lines (12892 loc) · 542 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": "trouble-shooting",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "trouble-shooting",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@slack/web-api": "^6.9.0",
"@tactful/channels": "^0.0.36",
"api": "^6.1.1",
"axios": "^1.4.0",
"confluence": "^0.0.0",
"confluence-api": "^1.4.0",
"cors": "^2.8.5",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^126.0.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"open": "^9.1.0",
"pg": "^8.11.3",
"slack": "^11.0.2",
"web": "^0.0.2"
}
},
"node_modules/@apidevtools/openapi-schemas": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@apidevtools/openapi-schemas/-/openapi-schemas-2.1.0.tgz",
"integrity": "sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==",
"engines": {
"node": ">=10"
}
},
"node_modules/@apidevtools/swagger-methods": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@apidevtools/swagger-methods/-/swagger-methods-3.0.2.tgz",
"integrity": "sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg=="
},
"node_modules/@aws-crypto/crc32": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/crc32/-/crc32-3.0.0.tgz",
"integrity": "sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==",
"dependencies": {
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/crc32/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/crc32c": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz",
"integrity": "sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==",
"dependencies": {
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/crc32c/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/ie11-detection": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz",
"integrity": "sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==",
"dependencies": {
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/ie11-detection/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/sha1-browser": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/sha1-browser/-/sha1-browser-3.0.0.tgz",
"integrity": "sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==",
"dependencies": {
"@aws-crypto/ie11-detection": "^3.0.0",
"@aws-crypto/supports-web-crypto": "^3.0.0",
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"@aws-sdk/util-locate-window": "^3.0.0",
"@aws-sdk/util-utf8-browser": "^3.0.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/sha1-browser/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/sha256-browser": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz",
"integrity": "sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==",
"dependencies": {
"@aws-crypto/ie11-detection": "^3.0.0",
"@aws-crypto/sha256-js": "^3.0.0",
"@aws-crypto/supports-web-crypto": "^3.0.0",
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"@aws-sdk/util-locate-window": "^3.0.0",
"@aws-sdk/util-utf8-browser": "^3.0.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/sha256-js": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz",
"integrity": "sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==",
"dependencies": {
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/sha256-js/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/supports-web-crypto": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz",
"integrity": "sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==",
"dependencies": {
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/util": {
"version": "3.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-crypto/util/-/util-3.0.0.tgz",
"integrity": "sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==",
"dependencies": {
"@aws-sdk/types": "^3.222.0",
"@aws-sdk/util-utf8-browser": "^3.0.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/util/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-sdk/client-s3": {
"version": "3.400.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/client-s3/-/client-s3-3.400.0.tgz",
"integrity": "sha512-lnv0pb79Czl8fCMs/z7yM56LvoKTri1I4jX/V33trHMFKPQDoy8i24wxG8+TZl3MUmnUyoQS7tlukh7IFkii1Q==",
"dependencies": {
"@aws-crypto/sha1-browser": "3.0.0",
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/client-sts": "3.398.0",
"@aws-sdk/credential-provider-node": "3.398.0",
"@aws-sdk/middleware-bucket-endpoint": "3.398.0",
"@aws-sdk/middleware-expect-continue": "3.398.0",
"@aws-sdk/middleware-flexible-checksums": "3.400.0",
"@aws-sdk/middleware-host-header": "3.398.0",
"@aws-sdk/middleware-location-constraint": "3.398.0",
"@aws-sdk/middleware-logger": "3.398.0",
"@aws-sdk/middleware-recursion-detection": "3.398.0",
"@aws-sdk/middleware-sdk-s3": "3.398.0",
"@aws-sdk/middleware-signing": "3.398.0",
"@aws-sdk/middleware-ssec": "3.398.0",
"@aws-sdk/middleware-user-agent": "3.398.0",
"@aws-sdk/signature-v4-multi-region": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@aws-sdk/util-endpoints": "3.398.0",
"@aws-sdk/util-user-agent-browser": "3.398.0",
"@aws-sdk/util-user-agent-node": "3.398.0",
"@aws-sdk/xml-builder": "3.310.0",
"@smithy/config-resolver": "^2.0.5",
"@smithy/eventstream-serde-browser": "^2.0.5",
"@smithy/eventstream-serde-config-resolver": "^2.0.5",
"@smithy/eventstream-serde-node": "^2.0.5",
"@smithy/fetch-http-handler": "^2.0.5",
"@smithy/hash-blob-browser": "^2.0.5",
"@smithy/hash-node": "^2.0.5",
"@smithy/hash-stream-node": "^2.0.5",
"@smithy/invalid-dependency": "^2.0.5",
"@smithy/md5-js": "^2.0.5",
"@smithy/middleware-content-length": "^2.0.5",
"@smithy/middleware-endpoint": "^2.0.5",
"@smithy/middleware-retry": "^2.0.5",
"@smithy/middleware-serde": "^2.0.5",
"@smithy/middleware-stack": "^2.0.0",
"@smithy/node-config-provider": "^2.0.5",
"@smithy/node-http-handler": "^2.0.5",
"@smithy/protocol-http": "^2.0.5",
"@smithy/smithy-client": "^2.0.5",
"@smithy/types": "^2.2.2",
"@smithy/url-parser": "^2.0.5",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
"@smithy/util-defaults-mode-browser": "^2.0.5",
"@smithy/util-defaults-mode-node": "^2.0.5",
"@smithy/util-retry": "^2.0.0",
"@smithy/util-stream": "^2.0.5",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.5",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/client-sso": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/client-sso/-/client-sso-3.398.0.tgz",
"integrity": "sha512-CygL0jhfibw4kmWXG/3sfZMFNjcXo66XUuPC4BqZBk8Rj5vFoxp1vZeMkDLzTIk97Nvo5J5Bh+QnXKhub6AckQ==",
"dependencies": {
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/middleware-host-header": "3.398.0",
"@aws-sdk/middleware-logger": "3.398.0",
"@aws-sdk/middleware-recursion-detection": "3.398.0",
"@aws-sdk/middleware-user-agent": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@aws-sdk/util-endpoints": "3.398.0",
"@aws-sdk/util-user-agent-browser": "3.398.0",
"@aws-sdk/util-user-agent-node": "3.398.0",
"@smithy/config-resolver": "^2.0.5",
"@smithy/fetch-http-handler": "^2.0.5",
"@smithy/hash-node": "^2.0.5",
"@smithy/invalid-dependency": "^2.0.5",
"@smithy/middleware-content-length": "^2.0.5",
"@smithy/middleware-endpoint": "^2.0.5",
"@smithy/middleware-retry": "^2.0.5",
"@smithy/middleware-serde": "^2.0.5",
"@smithy/middleware-stack": "^2.0.0",
"@smithy/node-config-provider": "^2.0.5",
"@smithy/node-http-handler": "^2.0.5",
"@smithy/protocol-http": "^2.0.5",
"@smithy/smithy-client": "^2.0.5",
"@smithy/types": "^2.2.2",
"@smithy/url-parser": "^2.0.5",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
"@smithy/util-defaults-mode-browser": "^2.0.5",
"@smithy/util-defaults-mode-node": "^2.0.5",
"@smithy/util-retry": "^2.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/client-sts": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/client-sts/-/client-sts-3.398.0.tgz",
"integrity": "sha512-/3Pa9wLMvBZipKraq3AtbmTfXW6q9kyvhwOno64f1Fz7kFb8ijQFMGoATS70B2pGEZTlxkUqJFWDiisT6Q6dFg==",
"dependencies": {
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/credential-provider-node": "3.398.0",
"@aws-sdk/middleware-host-header": "3.398.0",
"@aws-sdk/middleware-logger": "3.398.0",
"@aws-sdk/middleware-recursion-detection": "3.398.0",
"@aws-sdk/middleware-sdk-sts": "3.398.0",
"@aws-sdk/middleware-signing": "3.398.0",
"@aws-sdk/middleware-user-agent": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@aws-sdk/util-endpoints": "3.398.0",
"@aws-sdk/util-user-agent-browser": "3.398.0",
"@aws-sdk/util-user-agent-node": "3.398.0",
"@smithy/config-resolver": "^2.0.5",
"@smithy/fetch-http-handler": "^2.0.5",
"@smithy/hash-node": "^2.0.5",
"@smithy/invalid-dependency": "^2.0.5",
"@smithy/middleware-content-length": "^2.0.5",
"@smithy/middleware-endpoint": "^2.0.5",
"@smithy/middleware-retry": "^2.0.5",
"@smithy/middleware-serde": "^2.0.5",
"@smithy/middleware-stack": "^2.0.0",
"@smithy/node-config-provider": "^2.0.5",
"@smithy/node-http-handler": "^2.0.5",
"@smithy/protocol-http": "^2.0.5",
"@smithy/smithy-client": "^2.0.5",
"@smithy/types": "^2.2.2",
"@smithy/url-parser": "^2.0.5",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
"@smithy/util-defaults-mode-browser": "^2.0.5",
"@smithy/util-defaults-mode-node": "^2.0.5",
"@smithy/util-retry": "^2.0.0",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-env": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/credential-provider-env/-/credential-provider-env-3.398.0.tgz",
"integrity": "sha512-Z8Yj5z7FroAsR6UVML+XUdlpoqEe9Dnle8c2h8/xWwIC2feTfIBhjLhRVxfbpbM1pLgBSNEcZ7U8fwq5l7ESVQ==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.398.0.tgz",
"integrity": "sha512-AsK1lStK3nB9Cn6S6ODb1ktGh7SRejsNVQVKX3t5d3tgOaX+aX1Iwy8FzM/ZEN8uCloeRifUGIY9uQFygg5mSw==",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.398.0",
"@aws-sdk/credential-provider-process": "3.398.0",
"@aws-sdk/credential-provider-sso": "3.398.0",
"@aws-sdk/credential-provider-web-identity": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@smithy/credential-provider-imds": "^2.0.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/credential-provider-node/-/credential-provider-node-3.398.0.tgz",
"integrity": "sha512-odmI/DSKfuWUYeDnGTCEHBbC8/MwnF6yEq874zl6+owoVv0ZsYP8qBHfiJkYqrwg7wQ7Pi40sSAPC1rhesGwzg==",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.398.0",
"@aws-sdk/credential-provider-ini": "3.398.0",
"@aws-sdk/credential-provider-process": "3.398.0",
"@aws-sdk/credential-provider-sso": "3.398.0",
"@aws-sdk/credential-provider-web-identity": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@smithy/credential-provider-imds": "^2.0.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-process": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/credential-provider-process/-/credential-provider-process-3.398.0.tgz",
"integrity": "sha512-WrkBL1W7TXN508PA9wRXPFtzmGpVSW98gDaHEaa8GolAPHMPa5t2QcC/z/cFpglzrcVv8SA277zu9Z8tELdZhg==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.398.0.tgz",
"integrity": "sha512-2Dl35587xbnzR/GGZqA2MnFs8+kS4wbHQO9BioU0okA+8NRueohNMdrdQmQDdSNK4BfIpFspiZmFkXFNyEAfgw==",
"dependencies": {
"@aws-sdk/client-sso": "3.398.0",
"@aws-sdk/token-providers": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.398.0.tgz",
"integrity": "sha512-iG3905Alv9pINbQ8/MIsshgqYMbWx+NDQWpxbIW3W0MkSH3iAqdVpSCteYidYX9G/jv2Um1nW3y360ib20bvNg==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-bucket-endpoint": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.398.0.tgz",
"integrity": "sha512-+iDHiRofK/vIY94RWAXkSnR4rBPzc2dPHmLp+FDKywq1y708H9W7TOT37dpn+KSFeO4k2FfddFjzWBHsaeakCA==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@aws-sdk/util-arn-parser": "3.310.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/types": "^2.2.2",
"@smithy/util-config-provider": "^2.0.0",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-expect-continue": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.398.0.tgz",
"integrity": "sha512-d6he+Qqwh1yqml9duXSv5iKJ2lS0PVrF2UEsVew2GFxfUif0E/davTZJjvWtnelbuIGcTP+wDKVVjLwBN2sN/g==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-flexible-checksums": {
"version": "3.400.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.400.0.tgz",
"integrity": "sha512-lpsumd5/G+eAMTr61h/cJQZ8+i+xzC6OG3bvUcbRHqcjN49XgeNLcPfYcr6Rzf0QHxmuCN4te/4XGU3Fif2YVA==",
"dependencies": {
"@aws-crypto/crc32": "3.0.0",
"@aws-crypto/crc32c": "3.0.0",
"@aws-sdk/types": "3.398.0",
"@smithy/is-array-buffer": "^2.0.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/types": "^2.2.2",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-host-header": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-host-header/-/middleware-host-header-3.398.0.tgz",
"integrity": "sha512-m+5laWdBaxIZK2ko0OwcCHJZJ5V1MgEIt8QVQ3k4/kOkN9ICjevOYmba751pHoTnbOYB7zQd6D2OT3EYEEsUcA==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-location-constraint": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.398.0.tgz",
"integrity": "sha512-it+olJf1Lf2bmH8OL/N1jMOFB0zEVYs4rIzgFrluTRCuPatRuDi4LsXS8zqYxkBa05JE8JmqwW5gCzAmWyLLqw==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-logger": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-logger/-/middleware-logger-3.398.0.tgz",
"integrity": "sha512-CiJjW+FL12elS6Pn7/UVjVK8HWHhXMfvHZvOwx/Qkpy340sIhkuzOO6fZEruECDTZhl2Wqn81XdJ1ZQ4pRKpCg==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.398.0.tgz",
"integrity": "sha512-7QpOqPQAZNXDXv6vsRex4R8dLniL0E/80OPK4PPFsrCh9btEyhN9Begh4i1T+5lL28hmYkztLOkTQ2N5J3hgRQ==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-sdk-s3": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.398.0.tgz",
"integrity": "sha512-yweSMc/TyiFtqc52hFMKQJvTm3i1KCoW5mB3o/Sla6zsHBh+nS6TTaBmo+2kcDIR7AKODwW+FLCTHWiazb7J3Q==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@aws-sdk/util-arn-parser": "3.310.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-sdk-sts": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.398.0.tgz",
"integrity": "sha512-+JH76XHEgfVihkY+GurohOQ5Z83zVN1nYcQzwCFnCDTh4dG4KwhnZKG+WPw6XJECocY0R+H0ivofeALHvVWJtQ==",
"dependencies": {
"@aws-sdk/middleware-signing": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-signing": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-signing/-/middleware-signing-3.398.0.tgz",
"integrity": "sha512-O0KqXAix1TcvZBFt1qoFkHMUNJOSgjJTYS7lFTRKSwgsD27bdW2TM2r9R8DAccWFt5Amjkdt+eOwQMIXPGTm8w==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/signature-v4": "^2.0.0",
"@smithy/types": "^2.2.2",
"@smithy/util-middleware": "^2.0.0",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-ssec": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-ssec/-/middleware-ssec-3.398.0.tgz",
"integrity": "sha512-QtKr/hPcRugKSIZAH4+7hbUfdW7Lg+OQvD25nJn7ic1JHRZ+eDctEFxdsmnt68lE6aZxOcHCWHAW6/umcA93Dw==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.398.0.tgz",
"integrity": "sha512-nF1jg0L+18b5HvTcYzwyFgfZQQMELJINFqI0mi4yRKaX7T5a3aGp5RVLGGju/6tAGTuFbfBoEhkhU3kkxexPYQ==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@aws-sdk/util-endpoints": "3.398.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/signature-v4-multi-region": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.398.0.tgz",
"integrity": "sha512-8fTqTxRDWE03T7ClaWlCfbwuSae//01XMNVy2a9g5QgaelQh7ZZyU3ZIJiV8gIj8v6ZM0NGn9Bz1liI/vmNmcw==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/signature-v4": "^2.0.0",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"@aws-sdk/signature-v4-crt": "^3.118.0"
},
"peerDependenciesMeta": {
"@aws-sdk/signature-v4-crt": {
"optional": true
}
}
},
"node_modules/@aws-sdk/token-providers": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/token-providers/-/token-providers-3.398.0.tgz",
"integrity": "sha512-nrYgjzavGCKJL/48Vt0EL+OlIc5UZLfNGpgyUW9cv3XZwl+kXV0QB+HH0rHZZLfpbBgZ2RBIJR9uD5ieu/6hpQ==",
"dependencies": {
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/middleware-host-header": "3.398.0",
"@aws-sdk/middleware-logger": "3.398.0",
"@aws-sdk/middleware-recursion-detection": "3.398.0",
"@aws-sdk/middleware-user-agent": "3.398.0",
"@aws-sdk/types": "3.398.0",
"@aws-sdk/util-endpoints": "3.398.0",
"@aws-sdk/util-user-agent-browser": "3.398.0",
"@aws-sdk/util-user-agent-node": "3.398.0",
"@smithy/config-resolver": "^2.0.5",
"@smithy/fetch-http-handler": "^2.0.5",
"@smithy/hash-node": "^2.0.5",
"@smithy/invalid-dependency": "^2.0.5",
"@smithy/middleware-content-length": "^2.0.5",
"@smithy/middleware-endpoint": "^2.0.5",
"@smithy/middleware-retry": "^2.0.5",
"@smithy/middleware-serde": "^2.0.5",
"@smithy/middleware-stack": "^2.0.0",
"@smithy/node-config-provider": "^2.0.5",
"@smithy/node-http-handler": "^2.0.5",
"@smithy/property-provider": "^2.0.0",
"@smithy/protocol-http": "^2.0.5",
"@smithy/shared-ini-file-loader": "^2.0.0",
"@smithy/smithy-client": "^2.0.5",
"@smithy/types": "^2.2.2",
"@smithy/url-parser": "^2.0.5",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
"@smithy/util-defaults-mode-browser": "^2.0.5",
"@smithy/util-defaults-mode-node": "^2.0.5",
"@smithy/util-retry": "^2.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/types": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/types/-/types-3.398.0.tgz",
"integrity": "sha512-r44fkS+vsEgKCuEuTV+TIk0t0m5ZlXHNjSDYEUvzLStbbfUFiNus/YG4UCa0wOk9R7VuQI67badsvvPeVPCGDQ==",
"dependencies": {
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/util-arn-parser": {
"version": "3.310.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/util-arn-parser/-/util-arn-parser-3.310.0.tgz",
"integrity": "sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==",
"dependencies": {
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/util-endpoints": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/util-endpoints/-/util-endpoints-3.398.0.tgz",
"integrity": "sha512-Fy0gLYAei/Rd6BrXG4baspCnWTUSd0NdokU1pZh4KlfEAEN1i8SPPgfiO5hLk7+2inqtCmqxVJlfqbMVe9k4bw==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/util-locate-window": {
"version": "3.310.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/util-locate-window/-/util-locate-window-3.310.0.tgz",
"integrity": "sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==",
"dependencies": {
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/util-user-agent-browser": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.398.0.tgz",
"integrity": "sha512-A3Tzx1tkDHlBT+IgxmsMCHbV8LM7SwwCozq2ZjJRx0nqw3MCrrcxQFXldHeX/gdUMO+0Oocb7HGSnVODTq+0EA==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/types": "^2.2.2",
"bowser": "^2.11.0",
"tslib": "^2.5.0"
}
},
"node_modules/@aws-sdk/util-user-agent-node": {
"version": "3.398.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.398.0.tgz",
"integrity": "sha512-RTVQofdj961ej4//fEkppFf4KXqKGMTCqJYghx3G0C/MYXbg7MGl7LjfNGtJcboRE8pfHHQ/TUWBDA7RIAPPlQ==",
"dependencies": {
"@aws-sdk/types": "3.398.0",
"@smithy/node-config-provider": "^2.0.5",
"@smithy/types": "^2.2.2",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"aws-crt": ">=1.0.0"
},
"peerDependenciesMeta": {
"aws-crt": {
"optional": true
}
}
},
"node_modules/@aws-sdk/util-utf8-browser": {
"version": "3.259.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz",
"integrity": "sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==",
"dependencies": {
"tslib": "^2.3.1"
}
},
"node_modules/@aws-sdk/xml-builder": {
"version": "3.310.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@aws-sdk/xml-builder/-/xml-builder-3.310.0.tgz",
"integrity": "sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==",
"dependencies": {
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.22.10",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz",
"integrity": "sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==",
"dependencies": {
"@babel/highlight": "^7.22.10",
"chalk": "^2.4.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/code-frame/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/code-frame/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/code-frame/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/code-frame/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz",
"integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.22.10",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz",
"integrity": "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.5",
"chalk": "^2.4.2",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/@babel/runtime": {
"version": "7.22.11",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.11.tgz",
"integrity": "sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bugsnag/browser": {
"version": "5.2.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/browser/-/browser-5.2.0.tgz",
"integrity": "sha512-QImSbwVjcEbaUjCxNRVOELUahdHmRfkZ9o0UJpMDsfYNqpMpYzI7DdyH0BUnXv/yI4ymGpAQbFSEqVMTqSa9WA=="
},
"node_modules/@bugsnag/core": {
"version": "7.19.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/core/-/core-7.19.0.tgz",
"integrity": "sha512-2KGwdaLD9PhR7Wk7xPi3jGuGsKTatc/28U4TOZIDU3CgC2QhGjubwiXSECel5gwxhZ3jACKcMKSV2ovHhv1NrA==",
"peer": true,
"dependencies": {
"@bugsnag/cuid": "^3.0.0",
"@bugsnag/safe-json-stringify": "^6.0.0",
"error-stack-parser": "^2.0.3",
"iserror": "0.0.2",
"stack-generator": "^2.0.3"
}
},
"node_modules/@bugsnag/cuid": {
"version": "3.0.2",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/cuid/-/cuid-3.0.2.tgz",
"integrity": "sha512-cIwzC93r3PQ/INeuwtZwkZIG2K8WWN0rRLZQhu+mr48Ay+i6sEki4GYfTsflse7hZ1BeDWrNb/Q9vgY3B31xHQ==",
"peer": true
},
"node_modules/@bugsnag/js": {
"version": "5.2.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/js/-/js-5.2.0.tgz",
"integrity": "sha512-tL+Jr4DnQbCH+nLR6Kb9m5QbstIbmFbL9yKId2W3z0MvPxTg9vhRSlu35+99+04CRHrQu0VdY2n9RzDbD5kpgg==",
"dependencies": {
"@bugsnag/browser": "^5.2.0",
"@bugsnag/node": "^5.2.0"
}
},
"node_modules/@bugsnag/js/node_modules/@bugsnag/node": {
"version": "5.2.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/node/-/node-5.2.0.tgz",
"integrity": "sha512-2KqUcZ/uTkNP9G4aGW+sKhdce3Z68pg9I+LnjUDvpMEQ82O/zxy+NLkGTSz9hveNBdznJ1YoqjfoBdRnHkyRSw==",
"dependencies": {
"byline": "^5.0.0",
"error-stack-parser": "^2.0.2",
"iserror": "^0.0.2",
"pump": "^3.0.0",
"request": "^2.87.0",
"stack-generator": "^2.0.3"
}
},
"node_modules/@bugsnag/node": {
"version": "7.19.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/node/-/node-7.19.0.tgz",
"integrity": "sha512-c4snyxx5d/fsMogmgehFBGc//daH6+4XCplia4zrEQYltjaQ+l8ud0dPx623DgJl/2j1+2zlRc7y7IHSd7Gm5w==",
"peer": true,
"dependencies": {
"@bugsnag/core": "^7.19.0",
"byline": "^5.0.0",
"error-stack-parser": "^2.0.2",
"iserror": "^0.0.2",
"pump": "^3.0.0",
"stack-generator": "^2.0.3"
}
},
"node_modules/@bugsnag/plugin-express": {
"version": "5.2.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/plugin-express/-/plugin-express-5.2.0.tgz",
"integrity": "sha512-P3GZ36lI1LQ3RaZ/D9lcnAAcFrg6nlrKrhIUipNBcvwMO9nYUE5YWS40Q98sdaVaGd/qrd0I4RnFHeeFDOr+Og==",
"dependencies": {
"iserror": "^0.0.2"
},
"peerDependencies": {
"@bugsnag/node": "* || >=5.0.0-alpha.0"
}
},
"node_modules/@bugsnag/safe-json-stringify": {
"version": "6.0.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@bugsnag/safe-json-stringify/-/safe-json-stringify-6.0.0.tgz",
"integrity": "sha512-htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA==",
"peer": true
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@dabh/diagnostics": {
"version": "2.0.3",
"resolved": "https://tactful-409160330780.d.codeartifact.eu-west-1.amazonaws.com/npm/ucx-repo/@dabh/diagnostics/-/diagnostics-2.0.3.tgz",
"integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==",
"dependencies": {
"colorspace": "1.1.x",
"enabled": "2.0.x",
"kuler": "^2.0.0"
}
},
"node_modules/@discordjs/builders": {
"version": "1.6.5",
"resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.6.5.tgz",
"integrity": "sha512-SdweyCs/+mHj+PNhGLLle7RrRFX9ZAhzynHahMCLqp5Zeq7np7XC6/mgzHc79QoVlQ1zZtOkTTiJpOZu5V8Ufg==",
"dependencies": {
"@discordjs/formatters": "^0.3.2",
"@discordjs/util": "^1.0.1",
"@sapphire/shapeshift": "^3.9.2",
"discord-api-types": "0.37.50",
"fast-deep-equal": "^3.1.3",
"ts-mixer": "^6.0.3",
"tslib": "^2.6.1"
},
"engines": {
"node": ">=16.11.0"
}
},
"node_modules/@discordjs/collection": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.3.tgz",
"integrity": "sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==",
"engines": {