-
Notifications
You must be signed in to change notification settings - Fork 277
/
package-lock.json
17071 lines (17071 loc) · 611 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": "web",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "web",
"version": "0.1.0",
"hasInstallScript": true,
"dependencies": {
"@aws-sdk/client-s3": "3.709.0",
"@aws-sdk/lib-storage": "3.709.0",
"@aws-sdk/s3-presigned-post": "3.709.0",
"@aws-sdk/s3-request-presigner": "3.709.0",
"@hookform/resolvers": "3.9.1",
"@oslojs/crypto": "1.0.1",
"@oslojs/encoding": "1.1.0",
"@radix-ui/react-alert-dialog": "1.1.2",
"@radix-ui/react-avatar": "1.1.1",
"@radix-ui/react-checkbox": "1.1.2",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-popover": "1.1.2",
"@radix-ui/react-scroll-area": "1.2.1",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-switch": "1.1.1",
"@radix-ui/react-tabs": "1.1.1",
"@radix-ui/react-toast": "1.2.2",
"@radix-ui/react-tooltip": "1.1.4",
"@react-email/components": "0.0.31",
"@t3-oss/env-nextjs": "0.11.1",
"@tiptap/extension-color": "2.10.3",
"@tiptap/extension-list-item": "2.10.3",
"@tiptap/extension-text-style": "2.10.3",
"@tiptap/react": "2.10.3",
"@tiptap/starter-kit": "2.10.3",
"arctic": "2.3.1",
"canvas-confetti": "1.9.3",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"dotenv": "16.4.7",
"drizzle-orm": "0.38.0",
"fumadocs-core": "^14.6.0",
"fumadocs-mdx": "^11.1.2",
"fumadocs-ui": "^14.6.0",
"lodash": "4.17.21",
"lucide-react": "0.468.0",
"next": "15.1.0",
"next-mdx-remote": "5.0.0",
"next-themes": "0.4.4",
"nextjs-toploader": "3.7.15",
"nprogress": "0.2.0",
"pg": "8.13.1",
"postgres": "^3.4.5",
"posthog-js": "1.195.0",
"react": "19.0.0",
"react-day-picker": "9.4.2",
"react-dom": "19.0.0",
"react-email": "3.0.4",
"react-hook-form": "7.54.0",
"resend": "4.0.1",
"sanitize-html": "2.13.1",
"server-only": "0.0.1",
"stripe": "17.4.0",
"tailwind-merge": "2.5.5",
"tailwindcss-animate": "1.0.7",
"unique-names-generator": "4.7.1",
"uuid": "11.0.3",
"vaul": "1.1.1",
"zod": "3.24.1",
"zsa": "0.6.0",
"zsa-react": "0.2.3"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.15",
"@types/canvas-confetti": "1.6.4",
"@types/lodash": "4.17.13",
"@types/mdx": "^2.0.13",
"@types/node": "22.10.2",
"@types/nprogress": "0.2.3",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@types/sanitize-html": "2.13.0",
"@types/uuid": "10.0.0",
"drizzle-kit": "0.30.0",
"eslint": "9.16.0",
"eslint-config-next": "15.1.0",
"postcss": "8.4.49",
"tailwindcss": "3.4.16",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"engines": {
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=9.0.0 <10.0.0"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"license": "Apache-2.0",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.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-s3": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.709.0.tgz",
"integrity": "sha512-IvC7coELoQ4YenTdULArVdL5yk6jNRVUALX1aqv9JlPdrXxb3Om6YrM9e7AlSTLxrULTsAe1ubm8i/DmcSY/Ng==",
"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/client-sso-oidc": "3.709.0",
"@aws-sdk/client-sts": "3.709.0",
"@aws-sdk/core": "3.709.0",
"@aws-sdk/credential-provider-node": "3.709.0",
"@aws-sdk/middleware-bucket-endpoint": "3.709.0",
"@aws-sdk/middleware-expect-continue": "3.709.0",
"@aws-sdk/middleware-flexible-checksums": "3.709.0",
"@aws-sdk/middleware-host-header": "3.709.0",
"@aws-sdk/middleware-location-constraint": "3.709.0",
"@aws-sdk/middleware-logger": "3.709.0",
"@aws-sdk/middleware-recursion-detection": "3.709.0",
"@aws-sdk/middleware-sdk-s3": "3.709.0",
"@aws-sdk/middleware-ssec": "3.709.0",
"@aws-sdk/middleware-user-agent": "3.709.0",
"@aws-sdk/region-config-resolver": "3.709.0",
"@aws-sdk/signature-v4-multi-region": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-endpoints": "3.709.0",
"@aws-sdk/util-user-agent-browser": "3.709.0",
"@aws-sdk/util-user-agent-node": "3.709.0",
"@aws-sdk/xml-builder": "3.709.0",
"@smithy/config-resolver": "^3.0.13",
"@smithy/core": "^2.5.5",
"@smithy/eventstream-serde-browser": "^3.0.14",
"@smithy/eventstream-serde-config-resolver": "^3.0.11",
"@smithy/eventstream-serde-node": "^3.0.13",
"@smithy/fetch-http-handler": "^4.1.2",
"@smithy/hash-blob-browser": "^3.1.10",
"@smithy/hash-node": "^3.0.11",
"@smithy/hash-stream-node": "^3.1.10",
"@smithy/invalid-dependency": "^3.0.11",
"@smithy/md5-js": "^3.0.11",
"@smithy/middleware-content-length": "^3.0.13",
"@smithy/middleware-endpoint": "^3.2.5",
"@smithy/middleware-retry": "^3.0.30",
"@smithy/middleware-serde": "^3.0.11",
"@smithy/middleware-stack": "^3.0.11",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/node-http-handler": "^3.3.2",
"@smithy/protocol-http": "^4.1.8",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"@smithy/url-parser": "^3.0.11",
"@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.30",
"@smithy/util-defaults-mode-node": "^3.0.30",
"@smithy/util-endpoints": "^2.1.7",
"@smithy/util-middleware": "^3.0.11",
"@smithy/util-retry": "^3.0.11",
"@smithy/util-stream": "^3.3.2",
"@smithy/util-utf8": "^3.0.0",
"@smithy/util-waiter": "^3.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/client-sso": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.709.0.tgz",
"integrity": "sha512-Qxeo8cN0jNy6Wnbqq4wucffAGJM6sJjofoTgNtPA6cC7sPYx7aYC6OAAAo6NaMRY+WywOKdS9Wgjx2QYRxKx7w==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.709.0",
"@aws-sdk/middleware-host-header": "3.709.0",
"@aws-sdk/middleware-logger": "3.709.0",
"@aws-sdk/middleware-recursion-detection": "3.709.0",
"@aws-sdk/middleware-user-agent": "3.709.0",
"@aws-sdk/region-config-resolver": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-endpoints": "3.709.0",
"@aws-sdk/util-user-agent-browser": "3.709.0",
"@aws-sdk/util-user-agent-node": "3.709.0",
"@smithy/config-resolver": "^3.0.13",
"@smithy/core": "^2.5.5",
"@smithy/fetch-http-handler": "^4.1.2",
"@smithy/hash-node": "^3.0.11",
"@smithy/invalid-dependency": "^3.0.11",
"@smithy/middleware-content-length": "^3.0.13",
"@smithy/middleware-endpoint": "^3.2.5",
"@smithy/middleware-retry": "^3.0.30",
"@smithy/middleware-serde": "^3.0.11",
"@smithy/middleware-stack": "^3.0.11",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/node-http-handler": "^3.3.2",
"@smithy/protocol-http": "^4.1.8",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"@smithy/url-parser": "^3.0.11",
"@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.30",
"@smithy/util-defaults-mode-node": "^3.0.30",
"@smithy/util-endpoints": "^2.1.7",
"@smithy/util-middleware": "^3.0.11",
"@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/client-sso-oidc": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.709.0.tgz",
"integrity": "sha512-1w6egz17QQy661lNCRmZZlqIANEbD6g2VFAQIJbVwSiu7brg+GUns+mT1eLLLHAMQc1sL0Ds8/ybSK2SrgGgIA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.709.0",
"@aws-sdk/credential-provider-node": "3.709.0",
"@aws-sdk/middleware-host-header": "3.709.0",
"@aws-sdk/middleware-logger": "3.709.0",
"@aws-sdk/middleware-recursion-detection": "3.709.0",
"@aws-sdk/middleware-user-agent": "3.709.0",
"@aws-sdk/region-config-resolver": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-endpoints": "3.709.0",
"@aws-sdk/util-user-agent-browser": "3.709.0",
"@aws-sdk/util-user-agent-node": "3.709.0",
"@smithy/config-resolver": "^3.0.13",
"@smithy/core": "^2.5.5",
"@smithy/fetch-http-handler": "^4.1.2",
"@smithy/hash-node": "^3.0.11",
"@smithy/invalid-dependency": "^3.0.11",
"@smithy/middleware-content-length": "^3.0.13",
"@smithy/middleware-endpoint": "^3.2.5",
"@smithy/middleware-retry": "^3.0.30",
"@smithy/middleware-serde": "^3.0.11",
"@smithy/middleware-stack": "^3.0.11",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/node-http-handler": "^3.3.2",
"@smithy/protocol-http": "^4.1.8",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"@smithy/url-parser": "^3.0.11",
"@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.30",
"@smithy/util-defaults-mode-node": "^3.0.30",
"@smithy/util-endpoints": "^2.1.7",
"@smithy/util-middleware": "^3.0.11",
"@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sts": "^3.709.0"
}
},
"node_modules/@aws-sdk/client-sts": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.709.0.tgz",
"integrity": "sha512-cBAvlPg6yslXNL385UUGFPw+XY+lA9BzioNdIFkMo3fEUlTShogTtiWz4LsyLHoN6LhKojssP9DSmmWKWjCZIw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/client-sso-oidc": "3.709.0",
"@aws-sdk/core": "3.709.0",
"@aws-sdk/credential-provider-node": "3.709.0",
"@aws-sdk/middleware-host-header": "3.709.0",
"@aws-sdk/middleware-logger": "3.709.0",
"@aws-sdk/middleware-recursion-detection": "3.709.0",
"@aws-sdk/middleware-user-agent": "3.709.0",
"@aws-sdk/region-config-resolver": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-endpoints": "3.709.0",
"@aws-sdk/util-user-agent-browser": "3.709.0",
"@aws-sdk/util-user-agent-node": "3.709.0",
"@smithy/config-resolver": "^3.0.13",
"@smithy/core": "^2.5.5",
"@smithy/fetch-http-handler": "^4.1.2",
"@smithy/hash-node": "^3.0.11",
"@smithy/invalid-dependency": "^3.0.11",
"@smithy/middleware-content-length": "^3.0.13",
"@smithy/middleware-endpoint": "^3.2.5",
"@smithy/middleware-retry": "^3.0.30",
"@smithy/middleware-serde": "^3.0.11",
"@smithy/middleware-stack": "^3.0.11",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/node-http-handler": "^3.3.2",
"@smithy/protocol-http": "^4.1.8",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"@smithy/url-parser": "^3.0.11",
"@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.30",
"@smithy/util-defaults-mode-node": "^3.0.30",
"@smithy/util-endpoints": "^2.1.7",
"@smithy/util-middleware": "^3.0.11",
"@smithy/util-retry": "^3.0.11",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/core": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.709.0.tgz",
"integrity": "sha512-7kuSpzdOTAE026j85wq/fN9UDZ70n0OHw81vFqMWwlEFtm5IQ/MRCLKcC4HkXxTdfy1PqFlmoXxWqeBa15tujw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/core": "^2.5.5",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/property-provider": "^3.1.11",
"@smithy/protocol-http": "^4.1.8",
"@smithy/signature-v4": "^4.2.4",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"@smithy/util-middleware": "^3.0.11",
"fast-xml-parser": "4.4.1",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-env": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.709.0.tgz",
"integrity": "sha512-ZMAp9LSikvHDFVa84dKpQmow6wsg956Um20cKuioPpX2GGreJFur7oduD+tRJT6FtIOHn+64YH+0MwiXLhsaIQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/property-provider": "^3.1.11",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-http": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.709.0.tgz",
"integrity": "sha512-lIS7XLwCOyJnLD70f+VIRr8DNV1HPQe9oN6aguYrhoczqz7vDiVZLe3lh714cJqq9rdxzFypK5DqKHmcscMEPQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/fetch-http-handler": "^4.1.2",
"@smithy/node-http-handler": "^3.3.2",
"@smithy/property-provider": "^3.1.11",
"@smithy/protocol-http": "^4.1.8",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"@smithy/util-stream": "^3.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.709.0.tgz",
"integrity": "sha512-qCF8IIGcPoUp+Ib3ANhbF5gElxFd+kIrtv2/1tKdvhudMANstQbMiWV0LTH47ZZR6c3as4iSrm09NZnpEoD/pA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.709.0",
"@aws-sdk/credential-provider-env": "3.709.0",
"@aws-sdk/credential-provider-http": "3.709.0",
"@aws-sdk/credential-provider-process": "3.709.0",
"@aws-sdk/credential-provider-sso": "3.709.0",
"@aws-sdk/credential-provider-web-identity": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/credential-provider-imds": "^3.2.8",
"@smithy/property-provider": "^3.1.11",
"@smithy/shared-ini-file-loader": "^3.1.12",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sts": "^3.709.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.709.0.tgz",
"integrity": "sha512-4HRX9KYWPSjO5O/Vg03YAsebKpvTjTvpK1n7zHYBmlLMBLxUrVsL1nNKKC5p2/7OW3RL8XR1ki3QkoV7kGRxUQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.709.0",
"@aws-sdk/credential-provider-http": "3.709.0",
"@aws-sdk/credential-provider-ini": "3.709.0",
"@aws-sdk/credential-provider-process": "3.709.0",
"@aws-sdk/credential-provider-sso": "3.709.0",
"@aws-sdk/credential-provider-web-identity": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/credential-provider-imds": "^3.2.8",
"@smithy/property-provider": "^3.1.11",
"@smithy/shared-ini-file-loader": "^3.1.12",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-process": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.709.0.tgz",
"integrity": "sha512-IAC+jPlGQII6jhIylHOwh3RgSobqlgL59nw2qYTURr8hMCI0Z1p5y2ee646HTVt4WeCYyzUAXfxr6YI/Vitv+Q==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/property-provider": "^3.1.11",
"@smithy/shared-ini-file-loader": "^3.1.12",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.709.0.tgz",
"integrity": "sha512-rYdTDOxazS2GdGScelsRK5CAkktRLCCdRjlwXaxrcW57j749hEqxcF5uTv9RD6WBwInfedcSywErNZB+hylQlg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-sso": "3.709.0",
"@aws-sdk/core": "3.709.0",
"@aws-sdk/token-providers": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/property-provider": "^3.1.11",
"@smithy/shared-ini-file-loader": "^3.1.12",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.709.0.tgz",
"integrity": "sha512-2lbDfE0IQ6gma/7BB2JpkjW5G0wGe4AS0x80oybYAYYviJmUtIR3Cn2pXun6bnAWElt4wYKl4su7oC36rs5rNA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/property-provider": "^3.1.11",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sts": "^3.709.0"
}
},
"node_modules/@aws-sdk/lib-storage": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.709.0.tgz",
"integrity": "sha512-TnP+QSsWdiaQYS5HuB3n9H947z49m6qSEv5fth4L9xinBldLepLyyF+cua3/GlagkWqpxcATISgR9pE1PB0mhQ==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/abort-controller": "^3.1.9",
"@smithy/middleware-endpoint": "^3.2.5",
"@smithy/smithy-client": "^3.5.0",
"buffer": "5.6.0",
"events": "3.3.0",
"stream-browserify": "3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.709.0"
}
},
"node_modules/@aws-sdk/middleware-bucket-endpoint": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.709.0.tgz",
"integrity": "sha512-03+tJOd7KIZOiqWH7Z8BOfQIWkKJgjcpKOJKZ6FR2KjWGUOE1G+bo11wF4UuHQ0RmpKnApt+pQghZmSnE7WEeg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-arn-parser": "3.693.0",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/protocol-http": "^4.1.8",
"@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-expect-continue": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.709.0.tgz",
"integrity": "sha512-Tbl/DFvE4rHl8lMb9IzetwK4tf5R3VeHZkvEXQalsWoK0tbEQ8kXWi7wAYO4qbE7bFVvaxKX+irjJjTxf3BrCQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/protocol-http": "^4.1.8",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-flexible-checksums": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.709.0.tgz",
"integrity": "sha512-wbYm9tkyCaqMeU82yjaXw7V5BxCSlSLNupENW63LC7Fvyo/aQzj6LjSMHcBpR2QwjBEhXCtF47L7aQ8SPTNhdw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/crc32": "5.2.0",
"@aws-crypto/crc32c": "5.2.0",
"@aws-crypto/util": "5.2.0",
"@aws-sdk/core": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/is-array-buffer": "^3.0.0",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/protocol-http": "^4.1.8",
"@smithy/types": "^3.7.2",
"@smithy/util-middleware": "^3.0.11",
"@smithy/util-stream": "^3.3.2",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-host-header": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.709.0.tgz",
"integrity": "sha512-8gQYCYAaIw4lOCd5WYdf15Y/61MgRsAnrb2eiTl+icMlUOOzl8aOl5iDwm/Idp0oHZTflwxM4XSvGXO83PRWcw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/protocol-http": "^4.1.8",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-location-constraint": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.709.0.tgz",
"integrity": "sha512-5YQWPXfZq7OE0jB2G0PP8K10GBod/YPJXb+1CfJS6FbQaglRoIm8KZmVEvJNnptSKyGtE62veeCcCQcfAUfFig==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-logger": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.709.0.tgz",
"integrity": "sha512-jDoGSccXv9zebnpUoisjWd5u5ZPIalrmm6TjvPzZ8UqzQt3Beiz0tnQwmxQD6KRc7ADweWP5Ntiqzbw9xpVajg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.709.0.tgz",
"integrity": "sha512-PObL/wLr4lkfbQ0yXUWaoCWu/jcwfwZzCjsUiXW/H6hW9b/00enZxmx7OhtJYaR6xmh/Lcx5wbhIoDCbzdv0tw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/protocol-http": "^4.1.8",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-sdk-s3": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.709.0.tgz",
"integrity": "sha512-FwtOG9t9xsLoLOQZ6qAdsWOjx9dsO6t28IjIDV1l6Ixiu2oC0Yks7goONjJUH0IDE4pDDDGzmuq0sn1XtHhheA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-arn-parser": "3.693.0",
"@smithy/core": "^2.5.5",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/protocol-http": "^4.1.8",
"@smithy/signature-v4": "^4.2.4",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
"@smithy/util-middleware": "^3.0.11",
"@smithy/util-stream": "^3.3.2",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-ssec": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.709.0.tgz",
"integrity": "sha512-2muiLe7YkmlwZp2SKz+goZrDThGfRq3o0FcJF3Puc0XGmcEPEDjih537mCoTrGgcXNFlBc7YChd84r3t72ySaQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.709.0.tgz",
"integrity": "sha512-ooc9ZJvgkjPhi9q05XwSfNTXkEBEIfL4hleo5rQBKwHG3aTHvwOM7LLzhdX56QZVa6sorPBp6fwULuRDSqiQHw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-endpoints": "3.709.0",
"@smithy/core": "^2.5.5",
"@smithy/protocol-http": "^4.1.8",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/region-config-resolver": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.709.0.tgz",
"integrity": "sha512-/NoCAMEVKAg3kBKOrNtgOfL+ECt6nrl+L7q2SyYmrcY4tVCmwuECVqewQaHc03fTnJijfKLccw0Fj+6wOCnB6w==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/node-config-provider": "^3.1.12",
"@smithy/types": "^3.7.2",
"@smithy/util-config-provider": "^3.0.0",
"@smithy/util-middleware": "^3.0.11",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/s3-presigned-post": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.709.0.tgz",
"integrity": "sha512-7CusASi87oWRFKmkwJ2xgv8TqD15AoY7hQYYxzxpHN5ronPxwxYOTq57l3OPxmew53mhqEDGrz+o4OPKI5QjtA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-s3": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-format-url": "3.709.0",
"@smithy/middleware-endpoint": "^3.2.5",
"@smithy/signature-v4": "^4.2.4",
"@smithy/types": "^3.7.2",
"@smithy/util-hex-encoding": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/s3-request-presigner": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.709.0.tgz",
"integrity": "sha512-WYmXU2ur/z6xBX9TcGwSWlSiS8rxrRl2f1HJXZzgSu9FWZ7fJssoQGvrk/w64wjNq1tEzKbd1iWXw9s9qexT3g==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/signature-v4-multi-region": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@aws-sdk/util-format-url": "3.709.0",
"@smithy/middleware-endpoint": "^3.2.5",
"@smithy/protocol-http": "^4.1.8",
"@smithy/smithy-client": "^3.5.0",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/signature-v4-multi-region": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.709.0.tgz",
"integrity": "sha512-m0vhJEy6SLbjL11K9cHzX/ZhCIj//1GkTbYk2d4tTQFSuPyJEkjmoeHk9dYm2mJy0wH48j29OJadI1JUsR5bOw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/middleware-sdk-s3": "3.709.0",
"@aws-sdk/types": "3.709.0",
"@smithy/protocol-http": "^4.1.8",
"@smithy/signature-v4": "^4.2.4",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-sdk/token-providers": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.709.0.tgz",
"integrity": "sha512-q5Ar6k71nci43IbULFgC8a89d/3EHpmd7HvBzqVGRcHnoPwh8eZDBfbBXKH83NGwcS1qPSRYiDbVfeWPm4/1jA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.709.0",
"@smithy/property-provider": "^3.1.11",
"@smithy/shared-ini-file-loader": "^3.1.12",
"@smithy/types": "^3.7.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@aws-sdk/client-sso-oidc": "^3.709.0"
}
},
"node_modules/@aws-sdk/types": {
"version": "3.709.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.709.0.tgz",