-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
27231 lines (21980 loc) · 904 KB
/
pnpm-lock.yaml
File metadata and controls
27231 lines (21980 loc) · 904 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
fast-xml-parser: ^4.3.2
prismjs: ^1.29.0
tough-cookie: ^4.1.3
jsdom: 22.1.0
node-notifier: 10.0.1
node-fetch: 2.6.7
rollup: ^3.29.4
importers:
.:
devDependencies:
concurrently:
specifier: ^9.2.1
version: 9.2.1
dotenv-cli:
specifier: ^7.4.2
version: 7.4.4
turbo:
specifier: 2.5.8
version: 2.5.8
apps/docs:
dependencies:
'@docusaurus/core':
specifier: 3.7.0
version: 3.7.0(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(eslint@9.39.3(jiti@2.6.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
'@docusaurus/plugin-google-gtag':
specifier: ^3.7.0
version: 3.9.2(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
'@docusaurus/plugin-ideal-image':
specifier: ^3.7.0
version: 3.9.2(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
'@docusaurus/plugin-pwa':
specifier: ^3.7.0
version: 3.9.2(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(eslint@9.39.3(jiti@2.6.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(@types/babel__core@7.20.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
'@docusaurus/preset-classic':
specifier: 3.7.0
version: 3.7.0(@algolia/client-search@5.42.0)(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(@types/react@19.2.14)(eslint@9.39.3(jiti@2.6.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)(typescript@5.6.3)
'@docusaurus/theme-common':
specifier: ^3.7.0
version: 3.9.2(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(eslint@9.39.3(jiti@2.6.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@docusaurus/theme-mermaid':
specifier: ^3.7.0
version: 3.9.2(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(eslint@9.39.3(jiti@2.6.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@mdx-js/react@3.1.1(@types/react@19.2.14)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
'@mdx-js/react':
specifier: ^3.0.0
version: 3.1.1(@types/react@19.2.14)(react@18.3.1)
clsx:
specifier: ^2.0.0
version: 2.1.1
cors:
specifier: ^2.8.5
version: 2.8.6
dotenv:
specifier: ^16.5.0
version: 16.6.1
express:
specifier: ^5.1.0
version: 5.2.1
prism-react-renderer:
specifier: ^2.3.0
version: 2.4.1(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
react-toastify:
specifier: ^11.0.3
version: 11.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
upup-react-file-uploader:
specifier: workspace:*
version: link:../../packages/upup
devDependencies:
'@docusaurus/module-type-aliases':
specifier: 3.7.0
version: 3.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@docusaurus/tsconfig':
specifier: 3.7.0
version: 3.7.0
'@docusaurus/types':
specifier: 3.7.0
version: 3.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@eslint/compat':
specifier: ^1.2.5
version: 1.4.1(eslint@9.39.3(jiti@2.6.1))
'@eslint/js':
specifier: ^9.19.0
version: 9.39.3
eslint:
specifier: ^9.19.0
version: 9.39.3(jiti@2.6.1)
eslint-plugin-react:
specifier: ^7.37.4
version: 7.37.5(eslint@9.39.3(jiti@2.6.1))
globals:
specifier: ^15.14.0
version: 15.15.0
husky:
specifier: ^9.1.7
version: 9.1.7
typescript:
specifier: ~5.6.2
version: 5.6.3
typescript-eslint:
specifier: ^8.22.0
version: 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.6.3)
apps/landing:
dependencies:
'@material-tailwind/react':
specifier: ^2.1.9
version: 2.1.10(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@stackblitz/sdk':
specifier: ^1.11.0
version: 1.11.0
'@types/gtag.js':
specifier: ^0.0.20
version: 0.0.20
clsx:
specifier: ^2.1.1
version: 2.1.1
framer-motion:
specifier: ^12.8.0
version: 12.34.3(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
gray-matter:
specifier: ^4.0.3
version: 4.0.3
gsap:
specifier: ^3.13.0
version: 3.14.2
lucide-react:
specifier: ^0.503.0
version: 0.503.0(react@19.2.4)
next:
specifier: 16.1.6
version: 16.1.6(@playwright/test@1.58.2)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
postprocessing:
specifier: ^6.37.6
version: 6.38.3(three@0.178.0)
prettier-plugin-tailwindcss:
specifier: ^0.5.14
version: 0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.0.3)(typescript@5.9.3))(prettier@3.0.3)
react:
specifier: ^19.2.0
version: 19.2.4
react-dom:
specifier: ^19.2.0
version: 19.2.4(react@19.2.4)
react-icons:
specifier: ^5.5.0
version: 5.5.0(react@19.2.4)
react-toastify:
specifier: ^11.0.5
version: 11.0.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-tooltip:
specifier: ^5.29.1
version: 5.30.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
three:
specifier: ^0.178.0
version: 0.178.0
upup-react-file-uploader:
specifier: workspace:*
version: link:../../packages/upup
devDependencies:
'@eslint/eslintrc':
specifier: ^3
version: 3.3.4
'@tailwindcss/forms':
specifier: ^0.5.7
version: 0.5.11(tailwindcss@3.4.19(yaml@2.8.1))
'@tailwindcss/postcss':
specifier: ^4
version: 4.2.1
'@tailwindcss/typography':
specifier: ^0.5.16
version: 0.5.19(tailwindcss@3.4.19(yaml@2.8.1))
'@types/node':
specifier: ^20
version: 20.19.33
'@types/react':
specifier: ^19
version: 19.2.14
'@types/react-dom':
specifier: ^19
version: 19.2.3(@types/react@19.2.14)
'@types/three':
specifier: ^0.178.1
version: 0.178.1
autoprefixer:
specifier: ^10.4.19
version: 10.4.24(postcss@8.5.6)
eslint:
specifier: ^9
version: 9.39.3(jiti@1.21.7)
eslint-config-next:
specifier: 16.1.6
version: 16.1.6(@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.3(jiti@1.21.7))(typescript@5.9.3)
eslint-plugin-react:
specifier: ^7.37.4
version: 7.37.5(eslint@9.39.3(jiti@1.21.7))
react-syntax-highlighter:
specifier: ^15.6.1
version: 15.6.6(react@19.2.4)
tailwindcss:
specifier: ^3.4.3
version: 3.4.19(yaml@2.8.1)
tailwindcss-elevation:
specifier: ^2.0.0
version: 2.0.0(tailwindcss@3.4.19(yaml@2.8.1))
typescript:
specifier: ^5
version: 5.9.3
typescript-eslint:
specifier: ^8.46.2
version: 8.56.1(eslint@9.39.3(jiti@1.21.7))(typescript@5.9.3)
packages/upup:
dependencies:
'@aws-sdk/client-s3':
specifier: ^3.689.0
version: 3.997.0
'@aws-sdk/s3-request-presigner':
specifier: ^3.689.0
version: 3.997.0
'@aws-sdk/xhr-http-handler':
specifier: ^3.451.0
version: 3.997.0
'@azure/identity':
specifier: ^4.5.0
version: 4.13.0
'@azure/msal-browser':
specifier: ^3.5.0
version: 3.30.0
'@azure/storage-blob':
specifier: ^12.25.0
version: 12.31.0
'@google-cloud/storage':
specifier: ^7.14.0
version: 7.19.0
'@microsoft/microsoft-graph-client':
specifier: ^3.0.7
version: 3.0.7(@azure/identity@4.13.0)(@azure/msal-browser@3.30.0)
'@types/gapi':
specifier: ^0.0.47
version: 0.0.47
babel-plugin-module-resolver:
specifier: ^5.0.0
version: 5.0.2
clsx:
specifier: ^2.1.1
version: 2.1.1
cors:
specifier: ^2.8.5
version: 2.8.6
dropbox:
specifier: ^10.34.0
version: 10.34.0(@types/node-fetch@2.6.13)
express:
specifier: ^5.1.0
version: 5.2.1
framer-motion:
specifier: ^12.0.6
version: 12.34.3(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
load-script:
specifier: ^2.0.0
version: 2.0.0
pako:
specifier: ^2.1.0
version: 2.1.0
react-icons:
specifier: ^4.12.0
version: 4.12.0(react@19.2.4)
react-webcam:
specifier: ^7.2.0
version: 7.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
tailwind-merge:
specifier: ^2.6.0
version: 2.6.1
truncate:
specifier: ^3.0.0
version: 3.0.0
use-debounce:
specifier: ^10.0.4
version: 10.1.0(react@19.2.4)
uuid:
specifier: ^9.0.1
version: 9.0.1
devDependencies:
'@babel/core':
specifier: ^7.23.3
version: 7.29.0
'@babel/plugin-proposal-optional-chaining':
specifier: ^7.21.0
version: 7.21.0(@babel/core@7.29.0)
'@babel/preset-env':
specifier: ^7.23.3
version: 7.29.0(@babel/core@7.29.0)
'@babel/preset-react':
specifier: ^7.23.3
version: 7.28.5(@babel/core@7.29.0)
'@babel/preset-typescript':
specifier: ^7.23.3
version: 7.28.5(@babel/core@7.29.0)
'@changesets/cli':
specifier: ^2.26.2
version: 2.29.8(@types/node@20.19.33)
'@chromatic-com/storybook':
specifier: ^3
version: 3.2.7(react@19.2.4)(storybook@8.6.17(prettier@3.0.3))
'@emotion/is-prop-valid':
specifier: ^1.3.1
version: 1.4.0
'@eslint/compat':
specifier: ^1.2.5
version: 1.4.1(eslint@9.39.3(jiti@2.6.1))
'@eslint/js':
specifier: ^9.19.0
version: 9.39.3
'@playwright/test':
specifier: ^1.47.2
version: 1.58.2
'@rollup/plugin-alias':
specifier: ^5.1.1
version: 5.1.1(rollup@3.29.5)
'@rollup/plugin-node-resolve':
specifier: ^16.0.0
version: 16.0.3(rollup@3.29.5)
'@rollup/plugin-replace':
specifier: ^6.0.2
version: 6.0.3(rollup@3.29.5)
'@size-limit/preset-small-lib':
specifier: ^10.0.3
version: 10.0.3(size-limit@10.0.3)
'@storybook/addon-docs':
specifier: ^8.5.2
version: 8.6.17(@types/react@19.2.14)(storybook@8.6.17(prettier@3.0.3))
'@storybook/addon-essentials':
specifier: ^8.5.2
version: 8.6.14(@types/react@19.2.14)(storybook@8.6.17(prettier@3.0.3))
'@storybook/addon-interactions':
specifier: ^8.5.2
version: 8.6.14(storybook@8.6.17(prettier@3.0.3))
'@storybook/addon-links':
specifier: ^8.5.2
version: 8.6.17(react@19.2.4)(storybook@8.6.17(prettier@3.0.3))
'@storybook/addon-styling-webpack':
specifier: ^1.0.1
version: 1.0.1(storybook@8.6.17(prettier@3.0.3))(webpack@5.89.0(esbuild@0.27.3))
'@storybook/addon-themes':
specifier: ^8.5.2
version: 8.6.17(storybook@8.6.17(prettier@3.0.3))
'@storybook/addon-webpack5-compiler-babel':
specifier: ^3.0.5
version: 3.0.6(webpack@5.89.0(esbuild@0.27.3))
'@storybook/blocks':
specifier: ^8.5.2
version: 8.6.14(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@8.6.17(prettier@3.0.3))
'@storybook/react':
specifier: ^8.5.2
version: 8.6.17(@storybook/test@8.6.15(storybook@8.6.17(prettier@3.0.3)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@8.6.17(prettier@3.0.3))(typescript@5.9.3)
'@storybook/react-webpack5':
specifier: ^8.5.2
version: 8.6.17(@storybook/test@8.6.15(storybook@8.6.17(prettier@3.0.3)))(esbuild@0.27.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(storybook@8.6.17(prettier@3.0.3))(typescript@5.9.3)
'@storybook/test':
specifier: ^8.5.2
version: 8.6.15(storybook@8.6.17(prettier@3.0.3))
'@tailwindcss/container-queries':
specifier: ^0.1.1
version: 0.1.1(tailwindcss@3.4.19(yaml@2.8.1))
'@testing-library/jest-dom':
specifier: ^6.6.3
version: 6.9.1
'@testing-library/react':
specifier: ^16.0.1
version: 16.3.2(@testing-library/dom@10.4.0)(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@testing-library/user-event':
specifier: ^14.5.2
version: 14.6.1(@testing-library/dom@10.4.0)
'@types/jest':
specifier: 29.5.11
version: 29.5.11
'@types/node':
specifier: ^20.10.0
version: 20.19.33
'@types/pako':
specifier: ^2.0.3
version: 2.0.4
'@types/react':
specifier: '>=16.8.0'
version: 19.2.14
'@types/react-dom':
specifier: '>=16.8.0'
version: 19.2.3(@types/react@19.2.14)
'@types/uuid':
specifier: ^9.0.7
version: 9.0.8
'@typescript-eslint/eslint-plugin':
specifier: ^8.22.0
version: 8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: ^8.22.0
version: 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)
autoprefixer:
specifier: ^10.4.20
version: 10.4.24(postcss@8.5.6)
babel-loader:
specifier: ^9.1.3
version: 9.2.1(@babel/core@7.29.0)(webpack@5.89.0(esbuild@0.27.3))
concurrently:
specifier: ^9.2.1
version: 9.2.1
css-loader:
specifier: ^7.1.2
version: 7.1.4(webpack@5.89.0(esbuild@0.27.3))
dotenv:
specifier: ^17.2.1
version: 17.3.1
eslint:
specifier: ^9.19.0
version: 9.39.3(jiti@2.6.1)
eslint-config-prettier:
specifier: ^10.0.1
version: 10.1.8(eslint@9.39.3(jiti@2.6.1))
eslint-plugin-prettier:
specifier: ^5.2.3
version: 5.5.5(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.3(jiti@2.6.1)))(eslint@9.39.3(jiti@2.6.1))(prettier@3.0.3)
eslint-plugin-react:
specifier: ^7.37.4
version: 7.37.5(eslint@9.39.3(jiti@2.6.1))
eslint-plugin-react-hooks:
specifier: ^5.1.0
version: 5.2.0(eslint@9.39.3(jiti@2.6.1))
globals:
specifier: ^15.14.0
version: 15.15.0
highlight.js:
specifier: 10.7.3
version: 10.7.3
husky:
specifier: ^8.0.3
version: 8.0.3
identity-obj-proxy:
specifier: ^3.0.0
version: 3.0.0
jest:
specifier: 29.7.0
version: 29.7.0(@types/node@20.19.33)
jest-canvas-mock:
specifier: ^2.5.2
version: 2.5.2
jest-environment-jsdom:
specifier: 29.7.0
version: 29.7.0
lowlight:
specifier: 1.20.0
version: 1.20.0
postcss:
specifier: ^8.5.2
version: 8.5.6
postcss-cli:
specifier: ^11.0.1
version: 11.0.1(jiti@2.6.1)(postcss@8.5.6)
postcss-loader:
specifier: ^8.1.1
version: 8.2.1(postcss@8.5.6)(typescript@5.9.3)(webpack@5.89.0(esbuild@0.27.3))
postcss-prefix-selector:
specifier: ^2.1.1
version: 2.1.1(postcss@8.5.6)
prettier:
specifier: 3.0.3
version: 3.0.3
prettier-plugin-organize-imports:
specifier: ^3.2.4
version: 3.2.4(prettier@3.0.3)(typescript@5.9.3)
prettier-plugin-tailwindcss:
specifier: ^0.5.7
version: 0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.0.3)(typescript@5.9.3))(prettier@3.0.3)
react:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
version: 19.2.4
react-dom:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
version: 19.2.4(react@19.2.4)
react-syntax-highlighter:
specifier: 15.4.5
version: 15.4.5(react@19.2.4)
remark-gfm:
specifier: ^4.0.0
version: 4.0.1
rollup-plugin-analyzer:
specifier: ^4.0.0
version: 4.0.0
rollup-plugin-postcss:
specifier: ^4.0.2
version: 4.0.2(postcss@8.5.6)
size-limit:
specifier: ^10.0.3
version: 10.0.3
storybook:
specifier: ^8.5.2
version: 8.6.17(prettier@3.0.3)
style-loader:
specifier: ^4.0.0
version: 4.0.0(webpack@5.89.0(esbuild@0.27.3))
tailwindcss:
specifier: ^3.4.17
version: 3.4.19(yaml@2.8.1)
ts-jest:
specifier: 29.1.1
version: 29.1.1(@babel/core@7.29.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.0))(esbuild@0.27.3)(jest@29.7.0(@types/node@20.19.33))(typescript@5.9.3)
tslib:
specifier: ^2.6.2
version: 2.8.1
tsup:
specifier: ^8.4.0
version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.1)
typescript:
specifier: ^5.3.2
version: 5.9.3
typescript-eslint:
specifier: ^8.21.0
version: 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)
webpack:
specifier: 5.89.0
version: 5.89.0(esbuild@0.27.3)
zod:
specifier: ^3.22.4
version: 3.25.76
packages:
'@adobe/css-tools@4.4.4':
resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
'@algolia/abtesting@1.8.0':
resolution: {integrity: sha512-Hb4BkGNnvgCj3F9XzqjiFTpA5IGkjOXwGAOV13qtc27l2qNF8X9rzSp1H5hu8XewlC0DzYtQtZZIOYzRZDyuXg==}
engines: {node: '>= 14.0.0'}
'@algolia/autocomplete-core@1.17.9':
resolution: {integrity: sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==}
'@algolia/autocomplete-plugin-algolia-insights@1.17.9':
resolution: {integrity: sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==}
peerDependencies:
search-insights: '>= 1 < 3'
'@algolia/autocomplete-preset-algolia@1.17.9':
resolution: {integrity: sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/autocomplete-shared@1.17.9':
resolution: {integrity: sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/client-abtesting@5.42.0':
resolution: {integrity: sha512-JLyyG7bb7XOda+w/sp8ch7rEVy6LnWs3qtxr6VJJ2XIINqGsY6U+0L3aJ6QFliBRNUeEAr2QBDxSm8u9Sal5uA==}
engines: {node: '>= 14.0.0'}
'@algolia/client-analytics@5.42.0':
resolution: {integrity: sha512-SkCrvtZpdSWjNq9NGu/TtOg4TbzRuUToXlQqV6lLePa2s/WQlEyFw7QYjrz4itprWG9ASuH+StDlq7n49F2sBA==}
engines: {node: '>= 14.0.0'}
'@algolia/client-common@5.42.0':
resolution: {integrity: sha512-6iiFbm2tRn6B2OqFv9XDTcw5LdWPudiJWIbRk+fsTX+hkPrPm4e1/SbU+lEYBciPoaTShLkDbRge4UePEyCPMQ==}
engines: {node: '>= 14.0.0'}
'@algolia/client-insights@5.42.0':
resolution: {integrity: sha512-iEokmw2k6FBa8g/TT7ClyEriaP/FUEmz3iczRoCklEHWSgoABMkaeYrxRXrA2yx76AN+gyZoC8FX0iCJ55dsOg==}
engines: {node: '>= 14.0.0'}
'@algolia/client-personalization@5.42.0':
resolution: {integrity: sha512-ivVniRqX2ARd+jGvRHTxpWeOtO9VT+rK+OmiuRgkSunoTyxk0vjeDO7QkU7+lzBOXiYgakNjkZrBtIpW9c+muw==}
engines: {node: '>= 14.0.0'}
'@algolia/client-query-suggestions@5.42.0':
resolution: {integrity: sha512-9+BIw6rerUfA+eLMIS2lF4mgoeBGTCIHiqb35PLn3699Rm3CaJXz03hChdwAWcA6SwGw0haYXYJa7LF0xI6EpA==}
engines: {node: '>= 14.0.0'}
'@algolia/client-search@5.42.0':
resolution: {integrity: sha512-NZR7yyHj2WzK6D5X8gn+/KOxPdzYEXOqVdSaK/biU8QfYUpUuEA0sCWg/XlO05tPVEcJelF/oLrrNY3UjRbOww==}
engines: {node: '>= 14.0.0'}
'@algolia/events@4.0.1':
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
'@algolia/ingestion@1.42.0':
resolution: {integrity: sha512-MBkjRymf4BT6VOvMpJlg6kq8K+PkH9q+N+K4YMNdzTXlL40YwOa1wIWQ5LxP/Jhlz64kW5g9/oaMWY06Sy9dcw==}
engines: {node: '>= 14.0.0'}
'@algolia/monitoring@1.42.0':
resolution: {integrity: sha512-kmLs7YfjT4cpr4FnhhRmnoSX4psh9KYZ9NAiWt/YcUV33m0B/Os5L4QId30zVXkOqAPAEpV5VbDPWep+/aoJdQ==}
engines: {node: '>= 14.0.0'}
'@algolia/recommend@5.42.0':
resolution: {integrity: sha512-U5yZ8+Jj+A4ZC0IMfElpPcddQ9NCoawD1dKyWmjHP49nzN2Z4284IFVMAJWR6fq/0ddGf4OMjjYO9cnF8L+5tw==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-browser-xhr@5.42.0':
resolution: {integrity: sha512-EbuxgteaYBlKgc2Fs3JzoPIKAIaevAIwmv1F+fakaEXeibG4pkmVNsyTUjpOZIgJ1kXeqNvDrcjRb6g3vYBJ9A==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-fetch@5.42.0':
resolution: {integrity: sha512-4vnFvY5Q8QZL9eDNkywFLsk/eQCRBXCBpE8HWs8iUsFNHYoamiOxAeYMin0W/nszQj6abc+jNxMChHmejO+ftQ==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-node-http@5.42.0':
resolution: {integrity: sha512-gkLNpU+b1pCIwk1hKTJz2NWQPT8gsfGhQasnZ5QVv4jd79fKRL/1ikd86P0AzuIQs9tbbhlMwxsSTyJmlq502w==}
engines: {node: '>= 14.0.0'}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@antfu/install-pkg@1.1.0':
resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
'@antfu/utils@9.3.0':
resolution: {integrity: sha512-9hFT4RauhcUzqOE4f1+frMKLZrgNog5b06I7VmZQV1BkvwvqrbC8EBZf3L1eEL2AKb6rNKjER0sEvJiSP1FXEA==}
'@apideck/better-ajv-errors@0.3.6':
resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
'@aws-crypto/crc32@5.2.0':
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
engines: {node: '>=16.0.0'}
'@aws-crypto/crc32c@5.2.0':
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
'@aws-crypto/sha1-browser@5.2.0':
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
'@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
'@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-s3@3.997.0':
resolution: {integrity: sha512-a4z12iq/bJVJXfVOOKsYMDhxZwf+n8xieCuW+zI07qtRAuMiKr2vUtHPBbKncrF+hqnsq/Wmh48bu2yziGhIbg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/core@3.973.13':
resolution: {integrity: sha512-eCFiLyBhJR7c/i8hZOETdzj2wsLFzi2L/w9/jajOgwmGqO8xrUExqkTZqdjROkwU62owqeqSuw4sIzlCv1E/ww==}
engines: {node: '>=20.0.0'}
'@aws-sdk/crc64-nvme@3.972.1':
resolution: {integrity: sha512-CmT9RrQol36hUdvp4dk+BRV47JBRIE+I46yAOKyb/SoMH7mKOBwk6jUpFZhF8B+LCnWnefnM6jT/WsfQ5M1kCQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-env@3.972.11':
resolution: {integrity: sha512-hbyoFuVm3qOAGfIPS9t7jCs8GFLFoaOs8ZmYp/chqciuHDyEGv+J365ip7YSvXSrxxUbeW9NyB1hTLt40NBMRg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-http@3.972.13':
resolution: {integrity: sha512-a864QxQWFkdCZ5wQF0QZNKTbqAc/DFQNeARp4gOyZZdql5RHjj4CppUSfwAzS9cpw2IPY3eeJjWqLZ1QiDB/6w==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-ini@3.972.11':
resolution: {integrity: sha512-kvPFn626ABLzxmjFMoqMRtmFKMeiUdWPhwxhmuPu233tqHnNuXzHv0MtrZlkzHd+rwlh9j0zCbQo89B54wIazQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-login@3.972.11':
resolution: {integrity: sha512-stdy09EpBTmsxGiXe1vB5qtXNww9wact36/uWLlSV0/vWbCOUAY2JjhPXoDVLk8n+E6r0M5HeZseLk+iTtifxg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-node@3.972.12':
resolution: {integrity: sha512-gMWGnHbNSKWRj+PAiuSg0EDpEwpyIgk0v9U6EuZ1C/5/BUv25Way+E+UFB7r+YYkscuBJMJ+ai8E2K0Q8dx50g==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-process@3.972.11':
resolution: {integrity: sha512-B049fvbv41vf0Fs5bCtbzHpruBDp61sPiFDxUmkAJ/zvgSAturpj2rqzV1rj2clg4mb44Uxp9rgpcODexNFlFA==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-sso@3.972.11':
resolution: {integrity: sha512-vX9z8skN8vPtamVWmSCm4KQohub+1uMuRzIo4urZ2ZUMBAl1bqHatVD/roCb3qRfAyIGvZXCA/AWS03BQRMyCQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-web-identity@3.972.11':
resolution: {integrity: sha512-VR2Ju/QBdOjnWNIYuxRml63eFDLGc6Zl8aDwLi1rzgWo3rLBgtaWhWVBAijhVXzyPdQIOqdL8hvll5ybqumjeQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-bucket-endpoint@3.972.4':
resolution: {integrity: sha512-4W+1SPx5eWetSurqk7WNnldNr++k4UYcP2XmPnCf8yLFdUZ4NKKJA3j+zVuWmhOu7xKmEAyo9j3f+cy22CEVKg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-expect-continue@3.972.4':
resolution: {integrity: sha512-lxU2ieIWtK9nqWxA+W4ldev31tRPjkkdt+QDBWGiwUNJsNwSJFVhkuIV9cbBPxTCT0nmYyJwvJ/2TYYJLMwmMA==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-flexible-checksums@3.972.11':
resolution: {integrity: sha512-niA/vhtS/xR4hEHIsPLEvgsccpqve+uJ4Gtizctsa21HfHmIZi5bWJD8kPcN+SfAgrlnuBG2YKFX0rRbzylg7A==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-host-header@3.972.4':
resolution: {integrity: sha512-4q2Vg7/zOB10huDBLjzzTwVjBpG22X3J3ief2XrJEgTaANZrNfA3/cGbCVNAibSbu/nIYA7tDk8WCdsIzDDc4Q==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-location-constraint@3.972.4':
resolution: {integrity: sha512-EP1qs0JV2smcKhZpwDMuzMBx9Q5qyU/RuZ02/qh/yBA3jnZKuNhB1lsQKkicvXg7LOeoqyxXLKOP/PJOugX8yg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-logger@3.972.4':
resolution: {integrity: sha512-xFqPvTysuZAHSkdygT+ken/5rzkR7fhOoDPejAJQslZpp0XBepmCJnDOqA57ERtCTBpu8wpjTFI1ETd4S0AXEw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-recursion-detection@3.972.4':
resolution: {integrity: sha512-tVbRaayUZ7y2bOb02hC3oEPTqQf2A0HpPDwdMl1qTmye/q8Mq1F1WiIoFkQwG/YQFvbyErYIDMbYzIlxzzLtjQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-sdk-s3@3.972.13':
resolution: {integrity: sha512-rGBz1n6PFxg1+5mnN1/IczesPwx0W39DZt2JPjqPiZAZ7LAqH8FS4AsawSNZqr+UFJfqtTXYpeLQnMfbMAgHhg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-ssec@3.972.4':
resolution: {integrity: sha512-jzysKNnfwqjTOeF4s1QcxYQ8WB1ZIw/KMhOAX2UGYsmpVPHZ1cV6IYRfBQnt0qnDYom1pU3b5jOG8TA9n6LAbQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-user-agent@3.972.13':
resolution: {integrity: sha512-p1kVYbzBxRmhuOHoL/ANJPCedqUxnVgkEjxPoxt5pQv/yzppHM7aBWciYEE9TZY59M421D3GjLfZIZBoEFboVQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/nested-clients@3.996.1':
resolution: {integrity: sha512-XHVLFRGkuV2gh2uwBahCt65ALMb5wMpqplXEZIvFnWOCPlk60B7h7M5J9Em243K8iICDiWY6KhBEqVGfjTqlLA==}
engines: {node: '>=20.0.0'}
'@aws-sdk/region-config-resolver@3.972.4':
resolution: {integrity: sha512-3GrJYv5eI65oCKveBZP7Q246dVP+tqeys9aKMB0dfX1glUWfppWlxIu52derqdNb9BX9lxYmeiaBcBIqOAYSgQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/s3-request-presigner@3.997.0':
resolution: {integrity: sha512-C5tV0o3OATA9lBnTYIBgKonj6gTIo1KSbmUu/FFgVN8mZvTMbJqdXqf/c83EDAFHNED+0I5zcjl9GkSGZTz7Sg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/signature-v4-multi-region@3.996.1':
resolution: {integrity: sha512-Mj4npuEtVHFjGZHTBwhBvBzmgKHY7UsfroZWWzjpVP5YJaMTPeihsotuQLba5uQthEZyaeWs6dTu3Shr0qKFFw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/token-providers@3.997.0':
resolution: {integrity: sha512-UdG36F7lU9aTqGFRieEyuRUJlgEJBqKeKKekC0esH21DbUSKhPR1kZBah214kYasIaWe1hLJLaqUigoTa5hZAQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/types@3.973.2':
resolution: {integrity: sha512-maTZwGsALtnAw4TJr/S6yERAosTwPduu0XhUV+SdbvRZtCOgSgk1ttL2R0XYzvkYSpvbtJocn77tBXq2AKglBw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/util-arn-parser@3.972.2':
resolution: {integrity: sha512-VkykWbqMjlSgBFDyrY3nOSqupMc6ivXuGmvci6Q3NnLq5kC+mKQe2QBZ4nrWRE/jqOxeFP2uYzLtwncYYcvQDg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/util-endpoints@3.996.1':
resolution: {integrity: sha512-7cJyd+M5i0IoqWkJa1KFx8KNCGIx+Ywu+lT53KpqX7ReVwz03DCKUqvZ/y65vdKwo9w9/HptSAeLDluO5MpGIg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/util-format-url@3.972.4':
resolution: {integrity: sha512-rPm9g4WvgTz4ko5kqseIG5Vp5LUAbWBBDalm4ogHLMc0i20ChwQWqwuTUPJSu8zXn43jIM0xO2KZaYQsFJb+ew==}
engines: {node: '>=20.0.0'}
'@aws-sdk/util-locate-window@3.893.0':
resolution: {integrity: sha512-T89pFfgat6c8nMmpI8eKjBcDcgJq36+m9oiXbcUzeU55MP9ZuGgBomGjGnHaEyF36jenW9gmg3NfZDm0AO2XPg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-user-agent-browser@3.972.4':
resolution: {integrity: sha512-GHb+8XHv6hfLWKQKAKaSOm+vRvogg07s+FWtbR3+eCXXPSFn9XVmiYF4oypAxH7dGIvoxkVG/buHEnzYukyJiA==}
'@aws-sdk/util-user-agent-node@3.972.12':
resolution: {integrity: sha512-c1n3wBK6te+Vd9qU86nF8AsYuiBsxLn0AADGWyFX7vEADr3btaAg5iPQT6GYj6rvzSOEVVisvaAatOWInlJUbQ==}
engines: {node: '>=20.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/xhr-http-handler@3.997.0':
resolution: {integrity: sha512-+1QM3DZKiCeJ6TbuHzhDvU6hfvYT0SC+MDiUdviKDcraxV4jersj4bWYEALOBreJWVdMYh+9mGuEoU/sBp42MA==}
'@aws-sdk/xml-builder@3.972.6':
resolution: {integrity: sha512-YrXu+UnfC8IdARa4ZkrpcyuRmA/TVgYW6Lcdtvi34NQgRjM1hTirNirN+rGb+s/kNomby8oJiIAu0KNbiZC7PA==}
engines: {node: '>=20.0.0'}
'@aws/lambda-invoke-store@0.2.3':
resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
engines: {node: '>=18.0.0'}
'@azure/abort-controller@2.1.2':
resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==}
engines: {node: '>=18.0.0'}
'@azure/core-auth@1.10.1':
resolution: {integrity: sha512-ykRMW8PjVAn+RS6ww5cmK9U2CyH9p4Q88YJwvUslfuMmN98w/2rdGRLPqJYObapBCdzBVeDgYWdJnFPFb7qzpg==}
engines: {node: '>=20.0.0'}
'@azure/core-client@1.10.1':
resolution: {integrity: sha512-Nh5PhEOeY6PrnxNPsEHRr9eimxLwgLlpmguQaHKBinFYA/RU9+kOYVOQqOrTsCL+KSxrLLl1gD8Dk5BFW/7l/w==}
engines: {node: '>=20.0.0'}
'@azure/core-http-compat@2.3.1':
resolution: {integrity: sha512-az9BkXND3/d5VgdRRQVkiJb2gOmDU8Qcq4GvjtBmDICNiQ9udFmDk4ZpSB5Qq1OmtDJGlQAfBaS4palFsazQ5g==}
engines: {node: '>=20.0.0'}
'@azure/core-lro@2.7.2':
resolution: {integrity: sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw==}
engines: {node: '>=18.0.0'}
'@azure/core-paging@1.6.2':
resolution: {integrity: sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA==}
engines: {node: '>=18.0.0'}
'@azure/core-rest-pipeline@1.22.1':
resolution: {integrity: sha512-UVZlVLfLyz6g3Hy7GNDpooMQonUygH7ghdiSASOOHy97fKj/mPLqgDX7aidOijn+sCMU+WU8NjlPlNTgnvbcGA==}
engines: {node: '>=20.0.0'}
'@azure/core-tracing@1.3.1':
resolution: {integrity: sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==}
engines: {node: '>=20.0.0'}
'@azure/core-util@1.13.1':
resolution: {integrity: sha512-XPArKLzsvl0Hf0CaGyKHUyVgF7oDnhKoP85Xv6M4StF/1AhfORhZudHtOyf2s+FcbuQ9dPRAjB8J2KvRRMUK2A==}
engines: {node: '>=20.0.0'}
'@azure/core-xml@1.5.0':
resolution: {integrity: sha512-D/sdlJBMJfx7gqoj66PKVmhDDaU6TKA49ptcolxdas29X7AfvLTmfAGLjAcIMBK7UZ2o4lygHIqVckOlQU3xWw==}
engines: {node: '>=20.0.0'}
'@azure/identity@4.13.0':
resolution: {integrity: sha512-uWC0fssc+hs1TGGVkkghiaFkkS7NkTxfnCH+Hdg+yTehTpMcehpok4PgUKKdyCH+9ldu6FhiHRv84Ntqj1vVcw==}
engines: {node: '>=20.0.0'}
'@azure/logger@1.3.0':
resolution: {integrity: sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==}
engines: {node: '>=20.0.0'}
'@azure/msal-browser@3.30.0':
resolution: {integrity: sha512-I0XlIGVdM4E9kYP5eTjgW8fgATdzwxJvQ6bm2PNiHaZhEuUz47NYw1xHthC9R+lXz4i9zbShS0VdLyxd7n0GGA==}
engines: {node: '>=0.8.0'}
'@azure/msal-browser@4.26.1':
resolution: {integrity: sha512-GGCIsZXxyNm5QcQZ4maA9q+9UWmM+/87G+ybvPkrE32el1URSa9WYt0t67ks3/P0gspZX9RoEqyLqJ/X/JDnBQ==}
engines: {node: '>=0.8.0'}
'@azure/msal-common@14.16.1':
resolution: {integrity: sha512-nyxsA6NA4SVKh5YyRpbSXiMr7oQbwark7JU9LMeg6tJYTSPyAGkdx61wPT4gyxZfxlSxMMEyAsWaubBlNyIa1w==}
engines: {node: '>=0.8.0'}
'@azure/msal-common@15.13.1':
resolution: {integrity: sha512-vQYQcG4J43UWgo1lj7LcmdsGUKWYo28RfEvDQAEMmQIMjSFufvb+pS0FJ3KXmrPmnWlt1vHDl3oip6mIDUQ4uA==}
engines: {node: '>=0.8.0'}
'@azure/msal-node@3.8.1':
resolution: {integrity: sha512-HszfqoC+i2C9+BRDQfuNUGp15Re7menIhCEbFCQ49D3KaqEDrgZIgQ8zSct4T59jWeUIL9N/Dwiv4o2VueTdqQ==}
engines: {node: '>=16'}
'@azure/storage-blob@12.31.0':
resolution: {integrity: sha512-DBgNv10aCSxopt92DkTDD0o9xScXeBqPKGmR50FPZQaEcH4JLQ+GEOGEDv19V5BMkB7kxr+m4h6il/cCDPvmHg==}
engines: {node: '>=20.0.0'}
'@azure/storage-common@12.3.0':
resolution: {integrity: sha512-/OFHhy86aG5Pe8dP5tsp+BuJ25JOAl9yaMU3WZbkeoiFMHFtJ7tu5ili7qEdBXNW9G5lDB19trwyI6V49F/8iQ==}
engines: {node: '>=20.0.0'}
'@babel/code-frame@7.29.0':
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.29.0':
resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.29.0':
resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.29.1':
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.28.6':
resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.28.5':
resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-class-features-plugin@7.28.6':
resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.28.5':
resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.6.6':
resolution: {integrity: sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.28.5':
resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.28.6':
resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-module-transforms@7.28.6':
resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.27.1':
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.27.1':
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.28.6':
resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.27.1':
resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.27.1':
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.28.6':
resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}