-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
8320 lines (6815 loc) · 370 KB
/
pnpm-lock.yaml
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
importers:
.:
dependencies:
'@heroui/react':
specifier: 2.6.12
version: 2.6.12(@types/react@19.0.8)(framer-motion@11.18.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.9(@swc/helpers@0.5.15))(@types/node@22.10.9)(typescript@5.7.3)))
'@heroui/use-infinite-scroll':
specifier: 2.2.2
version: 2.2.2(react@19.0.0)
'@heroui/use-theme':
specifier: 2.1.1
version: 2.1.1(react@19.0.0)
'@tailwindcss/typography':
specifier: ^0.5.16
version: 0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.9(@swc/helpers@0.5.15))(@types/node@22.10.9)(typescript@5.7.3)))
'@tanstack/react-query':
specifier: ^5.63.0
version: 5.64.2(react@19.0.0)
framer-motion:
specifier: ^11.16.1
version: 11.18.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
github-markdown-css:
specifier: ^5.8.1
version: 5.8.1
highlight.js:
specifier: ^11.11.1
version: 11.11.1
react:
specifier: ^19.0.0
version: 19.0.0
react-dom:
specifier: ^19.0.0
version: 19.0.0(react@19.0.0)
react-markdown:
specifier: ^9.0.3
version: 9.0.3(@types/react@19.0.8)(react@19.0.0)
react-router-dom:
specifier: ^7.1.1
version: 7.1.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react-toastify:
specifier: ^11.0.3
version: 11.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
rehype-raw:
specifier: ^7.0.0
version: 7.0.0
remark-gfm:
specifier: ^4.0.0
version: 4.0.0
tailwind-variants:
specifier: ^0.3.0
version: 0.3.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.9(@swc/helpers@0.5.15))(@types/node@22.10.9)(typescript@5.7.3)))
use-dark-mode:
specifier: ^2.3.1
version: 2.3.1(react@19.0.0)
devDependencies:
'@eslint/js':
specifier: ^9.17.0
version: 9.18.0
'@tanstack/eslint-plugin-query':
specifier: ^5.62.16
version: 5.64.2(eslint@9.18.0(jiti@1.21.7))(typescript@5.7.3)
'@types/node':
specifier: ^22.10.5
version: 22.10.9
'@types/react':
specifier: ^19.0.4
version: 19.0.8
'@types/react-dom':
specifier: ^19.0.2
version: 19.0.3(@types/react@19.0.8)
'@types/react-router-dom':
specifier: ^5.3.3
version: 5.3.3
'@vitejs/plugin-react-swc':
specifier: ^3.7.2
version: 3.7.2(@swc/helpers@0.5.15)(vite@6.0.11(@types/node@22.10.9)(jiti@1.21.7)(yaml@2.7.0))
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.5.1)
eslint:
specifier: ^9.17.0
version: 9.18.0(jiti@1.21.7)
eslint-plugin-react:
specifier: ^7.37.3
version: 7.37.4(eslint@9.18.0(jiti@1.21.7))
eslint-plugin-react-hooks:
specifier: ^5.1.0
version: 5.1.0(eslint@9.18.0(jiti@1.21.7))
eslint-plugin-react-refresh:
specifier: ^0.4.16
version: 0.4.18(eslint@9.18.0(jiti@1.21.7))
globals:
specifier: ^15.14.0
version: 15.14.0
postcss:
specifier: ^8.4.49
version: 8.5.1
tailwindcss:
specifier: ^3.4.17
version: 3.4.17(ts-node@10.9.2(@swc/core@1.10.9(@swc/helpers@0.5.15))(@types/node@22.10.9)(typescript@5.7.3))
ts-node:
specifier: ^10.9.2
version: 10.9.2(@swc/core@1.10.9(@swc/helpers@0.5.15))(@types/node@22.10.9)(typescript@5.7.3)
typescript:
specifier: ^5.7.3
version: 5.7.3
typescript-eslint:
specifier: ^8.19.1
version: 8.21.0(eslint@9.18.0(jiti@1.21.7))(typescript@5.7.3)
vite:
specifier: ^6.0.7
version: 6.0.11(@types/node@22.10.9)(jiti@1.21.7)(yaml@2.7.0)
packages:
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
'@esbuild/aix-ppc64@0.24.2':
resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.24.2':
resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.24.2':
resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.24.2':
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.24.2':
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.24.2':
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.24.2':
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.24.2':
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.24.2':
resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.24.2':
resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.24.2':
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.24.2':
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.24.2':
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.24.2':
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.24.2':
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.24.2':
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.24.2':
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.24.2':
resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.24.2':
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.24.2':
resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.24.2':
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.24.2':
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.24.2':
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.24.2':
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.24.2':
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/config-array@0.19.1':
resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.10.0':
resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.2.0':
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.18.0':
resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.5':
resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/plugin-kit@0.2.5':
resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@formatjs/ecma402-abstract@2.3.2':
resolution: {integrity: sha512-6sE5nyvDloULiyOMbOTJEEgWL32w+VHkZQs8S02Lnn8Y/O5aQhjOEXwWzvR7SsBE/exxlSpY2EsWZgqHbtLatg==}
'@formatjs/fast-memoize@2.2.6':
resolution: {integrity: sha512-luIXeE2LJbQnnzotY1f2U2m7xuQNj2DA8Vq4ce1BY9ebRZaoPB1+8eZ6nXpLzsxuW5spQxr7LdCg+CApZwkqkw==}
'@formatjs/icu-messageformat-parser@2.11.0':
resolution: {integrity: sha512-Hp81uTjjdTk3FLh/dggU5NK7EIsVWc5/ZDWrIldmf2rBuPejuZ13CZ/wpVE2SToyi4EiroPTQ1XJcJuZFIxTtw==}
'@formatjs/icu-skeleton-parser@1.8.12':
resolution: {integrity: sha512-QRAY2jC1BomFQHYDMcZtClqHR55EEnB96V7Xbk/UiBodsuFc5kujybzt87+qj1KqmJozFhk6n4KiT1HKwAkcfg==}
'@formatjs/intl-localematcher@0.5.10':
resolution: {integrity: sha512-af3qATX+m4Rnd9+wHcjJ4w2ijq+rAVP3CCinJQvFv1kgSu1W6jypUmvleJxcewdxmutM8dmIRZFxO/IQBZmP2Q==}
'@heroui/accordion@2.2.7':
resolution: {integrity: sha512-RXj7btZtHBRn3PodJx+x+2vN2/l+USjiDYmWTmd2+ouLyltm3EgVYgNBqE54pQe1rNOeV7IC0B4mZYSyVAjPvg==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/alert@2.2.9':
resolution: {integrity: sha512-BGGzgCuqVa+CmqCqIM4Gz6Jd/ZZridSDF6qmfyF2cVx82R5oSOJ9KoKA4PvBVzLVLOerU5ZmjP1wnN+dPHFH4A==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/aria-utils@2.2.7':
resolution: {integrity: sha512-HVkOI7NIbQloj2M1p3KVOLQ5E2PSf5YqoSspasLtWvN6VTC0bYVfDDcJnZ9DWG4LlUoeZu751O9Um7ipBEQFhA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/autocomplete@2.3.9':
resolution: {integrity: sha512-tOeF4RR8nsyv1yVnjsTenu9bVvugkfUzspEBXm0PlD5QZwr2a2LBv15FLr/xrSYHUf2CpvDckJSf+Fcc6xWPDQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/avatar@2.2.6':
resolution: {integrity: sha512-favn6wiQs4zGvrdbOxHPT686rQzrdk1wdY5uUJJyF5T7AQVw4Juov2Tp4LM4MMoBBhDzN+LmpW/UTCttXiV4EQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/badge@2.2.5':
resolution: {integrity: sha512-9R1rTbgi0hVyjJ/iGxpViWjgAhmzyBTmaxsUeDtk36lzzoYV9Ks5hEB8vqYQMedqWxjwcumgPmgzCEha5qbMuw==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/breadcrumbs@2.2.6':
resolution: {integrity: sha512-HW8rjR2yj1VKIjgmKBomqFFgd3B8eIJ6vVUVyCAU2VGIv85ySDCvKYExFo6XqNn9l0UCx6pzIZ2aKlDqyH4R7w==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/button@2.2.9':
resolution: {integrity: sha512-tXHFmDlbjXKxtQja7ciYykyLbWZyYMFBiesBRdbldZNk+xTt6HcTDxn7G/alTwkktYVCyRojldVW5G6dsdiVgA==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/calendar@2.2.9':
resolution: {integrity: sha512-hYKUJO2hv6bLWrtj2g1efpwxvAxwlwyy+SR4o8Zy2KHzY1NP4lOAmoPsD6DD8mCFmKzHuZEFnBg5ElyXhRX4SQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/card@2.2.9':
resolution: {integrity: sha512-rNWdrsR9e/7zsC7ZceUirftKOFrwiLQWqRk4NGKanTGo/0lBlQOVPrZBWHNJtd3ylVMoRHqF4nH65dII9SIc4Q==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/checkbox@2.3.8':
resolution: {integrity: sha512-X+kRR0YLJlRJIfwEJ5XAn9WsPvTZ8p725hQX3kRW0Oq2vjvZmC9d0DUaYPd0Mn4fvn1JtM/Xa9330kQiPicZIg==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.3'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/chip@2.2.6':
resolution: {integrity: sha512-rzWauGkCQed3vRg6UoN+/Ezkv56mzYnWKvLzVHd2riX3ir0o0pEVa0kFz/SZMl1XNouMJVZZIVdrvH+0UcPoSg==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/code@2.2.6':
resolution: {integrity: sha512-BwI9qknGSxtih6thFgyzaxDliK9sPiFt64qH63TtptDWiDayf+8XH8iSuJgUveAfaViqlCjUYhia0ZE5SGSpHg==}
peerDependencies:
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/date-input@2.3.8':
resolution: {integrity: sha512-YJCJa2bL73ybwP2FYV74vJJ4Bk6kea1ENswvGsWHYpme4SNcxJwPyMe2DXq060lCWnYLfiSm6ycaMpag3ULv8g==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/date-picker@2.3.9':
resolution: {integrity: sha512-DZBZoCJ/RLG126PKPIvL9rhceycN9RzZMHfo37YHFW6d2989dN+4mhF5b4/SL6bkGKX0Y+IU/JW1/1JvuJ0uQA==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/divider@2.2.5':
resolution: {integrity: sha512-yCIpP9IkHT4T7Nw87Oj/uAuxbp9AyHHAN+YAcPIGgCjp9Q59eJHNfm05FF6Xtkahpqp17HCOMB7U5wgJeIz4Ng==}
peerDependencies:
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/dom-animation@2.1.1':
resolution: {integrity: sha512-7+sZXkJrM3FHvcxc5Ul2vwUDsSpFP3qAifJYfc7ZcinsYLtKEtBH1ElBwmZt5XCM8DvZThR2RTYB3/j+MTyWvg==}
peerDependencies:
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
'@heroui/drawer@2.2.7':
resolution: {integrity: sha512-S2beQWrpJDzjjg3SbbNa5n8YIz9GNqASDyeDjmfgMi5ui2SdNtwL/rs5XqvSaTg3PGOPg0+KJmVcVc2Y+zSACQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/dropdown@2.3.9':
resolution: {integrity: sha512-pHQzAk6YsspqiF9aMroc2+XQg72SY0i2e7GbWpfoW4dposBCGoVAOcL4SVyMxs1wYbeByRURufTvlIZqU6ba1g==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/form@2.1.8':
resolution: {integrity: sha512-lWQpOh4F2/TLngUy6gmxW86iRpp1YKnnGApct+UHAq0P/ZGlAk5lvu0oQPQWCOcOQXo/0SrY1ihNuwKvPB6t8g==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18'
react-dom: '>=18'
'@heroui/framer-utils@2.1.6':
resolution: {integrity: sha512-HmIq9QsOjDi3zAglZKSn9TbfPvgMwAfSdVfyD8w476b5QoljBul6+XKsTZkso6v6zT6WU/5niQu1mnFvCHWb6w==}
peerDependencies:
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/image@2.2.5':
resolution: {integrity: sha512-oR37yFhAgMjnSyNV3eoD17zswN782R/4n0dW9pWk6JnlPi2A6gvnpnbo9EIP3f245UchkGkTC3fLb+IzoB1t3w==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/input-otp@2.1.8':
resolution: {integrity: sha512-8vdFQArCJ8pRDiwJt7n1zcJ0gxnFm2c9X/5wanXuOPTZdmGwpz/8FYoDrFcDU14bcwmL4V/PtQHlmZXLlCTT0w==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18'
react-dom: '>=18'
'@heroui/input@2.4.8':
resolution: {integrity: sha512-618kHtnjsAnh2ozBwffeB1nV2MdpzitAraqBnCEQXONEI61s0CWcwNUYts+g0ZJ3Y7uT7K3wXe5WnnCC+Ar9tA==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/kbd@2.2.6':
resolution: {integrity: sha512-eP4VI9seKqpaQqpepJ6aSBRSkyfoMzY7+zyFQN7zRRkWBI/lOx4qOrRh92EuLFvLHyYIfn5+C2FxIGn1I1jowA==}
peerDependencies:
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/link@2.2.7':
resolution: {integrity: sha512-yX3kAMa1jxRYAGDbkOcdtFoHd9IteiubQZfSCJdEsyUkCYQGh0a/EXHbhOhzDgoR15kVhjbpid8gvqFYsmgAIQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/listbox@2.3.9':
resolution: {integrity: sha512-MjGn+bRevD5u4DUoUvZYp/1vqDNP9TYXd0gsTpZ5SXX2//KfCRKrf/hxBPmwSA9ZzomfzCsFHBDT4zZ/Gb5dpQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/menu@2.2.9':
resolution: {integrity: sha512-OYplfK4otgIWwecPuZ84kyVf8aroyYCaF2u9rIbvCzy1VQi1+mTtuMjF2mqIRzFn/fXj6H3QWD95BC4A515eXw==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/modal@2.2.7':
resolution: {integrity: sha512-kCx7VBYAwm+27dglJJYS8cRzjcANQl8cD5kWgyuAtCEDJoKgnIrS99otFKveyJ2Khfp/7XjB2sc2wQxjN82rig==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/navbar@2.2.8':
resolution: {integrity: sha512-5sHfizA0L0a1CxBl7YQ8tBred7nEMLKZguTsTtR1AsDT3B1+BtegEbbaDKsgScS2hkSq0lC2I0wgSN0mGUNCHQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/pagination@2.2.8':
resolution: {integrity: sha512-4M0Jl7nNvrGanmH1qRitC0KI7UsC7uUYf8+qGb8NG2ql8tTNQ523qn9x703joFqJ8V9O/dNeasHbw/2QZWLeeg==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/popover@2.3.9':
resolution: {integrity: sha512-3TntESGLtVhiZeKBPe8FX4FyUAdlO/0jnaon6fwCWo5d6YZalFqK23dJmUwHdcF99WndAennRSQDZg3kl90NuA==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/progress@2.2.6':
resolution: {integrity: sha512-iio1vYYB4Av3pJT4c5kf15FPPmC/KkaOfSU9/0Dkd/yAWQ+yMPtx1fL9aut9BRVSJDBpf9zmpw5RV6bbk5mXnA==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/radio@2.3.8':
resolution: {integrity: sha512-RebXV0ZYQGhsp2jnWjWg8yyFJrbY9IRDooVcEts+u0tK6LilVu+AAIqxsbCn7zmfZ3imQZLR+BcefJ46BmAe9Q==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.3'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/react-rsc-utils@2.1.1':
resolution: {integrity: sha512-+U/OPqE4HpjRObBhSSLqtUMV5/G+rnf5Xd+ntP1gzC0HTVzN9WG9rRSNyhy7b+fAWGOR2kqOaon1LDZE6zmK6A==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/react-utils@2.1.3':
resolution: {integrity: sha512-qROTzQ6V02RTjcaI30hfpyIykKF0jm1SJHOx0sLsHoR94wlVvN55BnJxrg7i560H3C6UIMChu1aR6E7bGU1CeA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/react@2.6.12':
resolution: {integrity: sha512-UFkj6+0PO8OWv3vFBq/gXxMaGapdi0oM95zhPxE7mu4R9Tcbo8D2wB1fofxVxmv1Z2hW7JizC+GaM17Qrh3YNw==}
peerDependencies:
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/ripple@2.2.7':
resolution: {integrity: sha512-I9ZvCbNQgDMpvRYmr58lrlDfAhzNY9uZELoUqxAAprr0Y1N32WL+nC2bpHc3cKIzV/kKfSbfzNY9rqt3xtAciA==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/scroll-shadow@2.3.5':
resolution: {integrity: sha512-eKCYJDNjWAyWAm3k3BEz6GKgnfb+Frn9zqr/Zo8JbXZ7jNPt2emtJXx6/OluZ1cX2nhgJ2UNpEgC29g/9leOzw==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/select@2.4.9':
resolution: {integrity: sha512-dUjug76DlreKX3A30RLKJ7dKkuqjJ+MAoDUXKXVbo4hSIFrTGMWep7j+/NSSiS+JJ9Ogr+bLljlXoOsVtdg9Ow==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/shared-icons@2.1.1':
resolution: {integrity: sha512-D3bm4AilRVphGHAAsZyIiTFWvYux4u+fm3Ktq1nUP+o7yXfk/l+7jE+TbVD3LbLzCdmJzqICZ4pcPZfcLygIKw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/shared-utils@2.1.2':
resolution: {integrity: sha512-i058k/jP1FsZIJlMrpMTchnGH+jx07yhvZjC9zsxvQX/zlRcoRMpxAC5qi6/p2UYrnFDjiPY0WWuDdCML7Gtew==}
'@heroui/skeleton@2.2.5':
resolution: {integrity: sha512-SkzLG51ufFrYPNJmxzF5R4Vuek9pZV3piNlypOrILA7H8Wib1ym/ty+udxRcLavF8HfDR1YLU6XZOAxP6WiyeQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/slider@2.4.7':
resolution: {integrity: sha512-lW/thI3NzflEnrc5l0m3j1BqcfVLltD1J9ANT1MYd8kMl6x4ljhR5ZUaU2xhfNTiF8apYfCN68Ctr1wuUxNxUg==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/snippet@2.2.10':
resolution: {integrity: sha512-92fjQSlpUGpxx2H1RkiHIwgitoSXzc2a1SrkrQpIkwL3xssmhzm5nuxrkv8p/xJgWEFl9CTxQBgDoZIwgoLWbQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/spacer@2.2.6':
resolution: {integrity: sha512-XE0ssIzZ/qwq/dbatvwu8Qez7OnodyBxVvEa2lejxhOZJ6tmqc/izQHPzRUxGutRZDBf2YZ/uDa9S3aROLbXlg==}
peerDependencies:
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/spinner@2.2.6':
resolution: {integrity: sha512-M6KpTlJdFQxA+dMOMIC7Xibzkzy/m2kSx7xgLyZ/6ka2jlFtC/D+8X3XAK3kF0smFiDAjrF6DbksmbBcFIemlQ==}
peerDependencies:
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/switch@2.2.8':
resolution: {integrity: sha512-e/n+lZn7UXS6fm3mVPISvRVaU8gfJuKIoF3e8otOA3dKtBIiCXr50K689gkWi3Mw3CKZvTbN3sGerTIArOmS2w==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.3'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/system-rsc@2.3.5':
resolution: {integrity: sha512-hu5HqpxUtwCTrkAhUS01wd2k6Io0Y9R9ELeXcMa9aj7j8Gr9vXjWYbmVdeJKB2oxMgEm/bwZvx8vZaskfQHRtQ==}
peerDependencies:
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
'@heroui/system@2.4.6':
resolution: {integrity: sha512-0UCBa09bDvJbvuTT+APizETZJccVDPGKemjcRpArHvoKb9ckhBnod/77Srh9cXkNjTcQErkFR60Ht7aEIsoAiA==}
peerDependencies:
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/table@2.2.8':
resolution: {integrity: sha512-7w6CbfOxViSYDz9sUmJE2Vyc0TtI+8uNPgLlWRjqHv6QQosHPiNM9mn5jHhII0KPs+rX+sU7xDcWHzEzYMZBQA==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/tabs@2.2.7':
resolution: {integrity: sha512-hdSAEU4sD4yKIoUJZ6QwEJrGLjQWl+x2YlQgJLk0+SCt/gapJXxswyFpKAsi95Agqb5OhTnjF5iwenWxm/YxeQ==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/theme@2.4.5':
resolution: {integrity: sha512-lAgDAjC7CwxHkdnaJhzERAK2bckwhDysKJIox4WXeoLFbbCWYcYnR7+FCuIPNMelJXK5rvULIlHDMQRfDpPXyg==}
peerDependencies:
tailwindcss: '>=3.4.0'
'@heroui/tooltip@2.2.7':
resolution: {integrity: sha512-vWhW3bz9m7tQy8MPlVlxx6Gs3wLbkfJ9u7nGztYs95DBvQpz2fZ8g8iw0ztzTY/1lFQKIN0HPTAPpIz1b7HZsg==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-accordion@2.2.2':
resolution: {integrity: sha512-PSKdBbyKIAFTEafkV+8QJIo6p6P8JDA0DAijh2tZrZb+SdaoNJc6KripKjSjlXIrEvUSjitCZK6za3hExt8fbQ==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-button@2.2.4':
resolution: {integrity: sha512-UAZPz3hymuYAIPmHiR/b17ZGVPHxlGfb3jkMLRqHR+R60PokSHrbZZ2P3QYOXQ2NP6h9fMRJhhdU94XwwNAoHw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-link@2.2.5':
resolution: {integrity: sha512-jsEhQy7hRzsgQqw4O814bgFZxe1pnMPFyTt85bc6egKJi67ErILvIir0126eUy2M1AJeSONvaabLLFrHyMT2Cg==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-modal-overlay@2.2.3':
resolution: {integrity: sha512-60p6vAK20BDO13HoXOIjauT/IZz1vvy0QZT42ske9j4F51jjs9oNX7SVV3qtYQq3FF/RQBr1nGt5Q+dNTmzmpg==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-multiselect@2.4.3':
resolution: {integrity: sha512-BE5HzfPg6avtuEDoISBQsWvNvzIT6/BO+jAQFLxm3WksFpFttlaaRl+lqvuKKvekhcMYl39rbc16KOPxhu589A==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/use-callback-ref@2.1.1':
resolution: {integrity: sha512-yOz2543MHNULa/1ZIQS7MVn04ivOrrGi69sYHE0QxU26egvfyvWfDIFpMqUSB3hqIfcTyrtkU8KfO1h2/Uj9ug==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-clipboard@2.1.2':
resolution: {integrity: sha512-D0TG7QtS7QetDJAb6h4AnxXcjgFcK1Ldt+H+W3ZPfjANGSGeQTh4WgO4jiTbETJMF8V6Xbplu9IUd6daC+J/YA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-data-scroll-overflow@2.2.2':
resolution: {integrity: sha512-DzGUchHhd8jDuZim5wNRyZ/yQQH9/Vwdxhe0qLt/1L0qKCfpybWMnUP10jdZ0RZPZYZfYt9dy35X686NY5FvKw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-disclosure@2.2.2':
resolution: {integrity: sha512-r2uavW9yvL2SBcOb01dFl6c+wJxVU55VsLYd5OdUQBU05wqMHuvFKZg3M4/GPwftYxnyyT0tEt7AcsXNPfR2+w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-draggable@2.1.2':
resolution: {integrity: sha512-+Yj3hyCp6BpUjxwH3EMjjqro8QuJcTQPQbO8oJ93cKUzQq5t9FXRlANBw1CrGRpmjtchXCEiZzCEFzP8JrPrDA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-image@2.1.2':
resolution: {integrity: sha512-ogpInDRCPbbqErEdm4rKlcZKRZal+BC44TE3kW+WXxC85tdJrq4831JaQ8qlywlSfPM/DD2YTBqoSfT7wa6KMA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-infinite-scroll@2.2.2':
resolution: {integrity: sha512-EDAybnltu/H3CrbjIxYDJGHNtBwcRve/IcrGu0mYygXB1dmV5H0IKh0f8o+2bSkm7mpg4YirlxeI6UbEMLOp2w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-intersection-observer@2.2.2':
resolution: {integrity: sha512-LH1QHBwmw2MtaejG37hVQ7f5yGfyjcayMRsvTi3x099VfH3p4uAiAQTn4u0HTUil/xMriPUAWFnhtTxpuUIBcA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-is-mobile@2.2.2':
resolution: {integrity: sha512-zqQVEvsGSlQJrk0wct9A5r3nqNeCIMiI1AiqW3ED8C58wpfLZTJweOBBwqRGpJXgielKh716AxT7H/zkEV9SoQ==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-is-mounted@2.1.1':
resolution: {integrity: sha512-Z5nXvxVjePXE2JgMLcMGjabfma+py/r+qGB9MKbT2V2zyrGZ/8R7c/MQJflGW7w/bFGgqjI55OG3UfNhScHu1w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-measure@2.1.1':
resolution: {integrity: sha512-hHfIjdREQ2coE3M7T+bBtx4pX5qYrrCv7katCw8tlHkv90wShEeUcF9pun2Om7a4fW0hdMM/Ll+gkJ5dw+FV9g==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-pagination@2.2.3':
resolution: {integrity: sha512-ocmAc0cYDwe+QQZGvggcB4bEQ8nQBeBR+1gvIoWVqMQmjEmkRP57qbADUebpYCL515laxC35n1zQjxeln7pt1w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-safe-layout-effect@2.1.1':
resolution: {integrity: sha512-5852e3gpo6cI2o3LBvG5m2M2JnrwhaoGk9KuemWMgJze9PD0Cy5ikJZMZ1aDevUalenYoxlHhKJ9NYqF/1Kb6w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-scroll-position@2.1.1':
resolution: {integrity: sha512-OqQeqrIwpfnANKilbUBvLPp16v1igIokJX5cOCs25aFHBDovrz351ghYMP+sPgzTdA1suVqmQHF+bkGa5bqEQw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-theme@2.1.1':
resolution: {integrity: sha512-EzQvjHsYNUYq+UQllRCWnFnVwxUdEycCnIL3zI8h3QhQWwtYUpzR2EUtvVTSwKmDsqEqQIv7DgJyllc7/+/G/Q==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-update-effect@2.1.1':
resolution: {integrity: sha512-1JI0iFz7zunF85/DS2bG/bSAZXWq31QnGZ59EER4Hu49Ohti0YvDWi8gjSyw9n7lFf8z6VRP7IW8j+PKZWN6dg==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/user@2.2.6':
resolution: {integrity: sha512-X4wOhfOtD1WsKXXrm8lCx+0Dto4LriWC1VSdcUw1rjij+INHAPW76bGPFUlw39J5qHDN5Fvid483QXy0zkFO5Q==}
peerDependencies:
'@heroui/system': '>=2.4.0'
'@heroui/theme': '>=2.4.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
'@humanfs/node@0.16.6':
resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/retry@0.3.1':
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
'@humanwhocodes/retry@0.4.1':
resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
engines: {node: '>=18.18'}
'@internationalized/date@3.6.0':
resolution: {integrity: sha512-+z6ti+CcJnRlLHok/emGEsWQhe7kfSmEW+/6qCzvKY67YPh7YOBfvc7+/+NXq+zJlbArg30tYpqLjNgcAYv2YQ==}
'@internationalized/date@3.7.0':
resolution: {integrity: sha512-VJ5WS3fcVx0bejE/YHfbDKR/yawZgKqn/if+oEeLqNwBtPzVB06olkfcnojTmEMX+gTpH+FlQ69SHNitJ8/erQ==}
'@internationalized/message@3.1.6':
resolution: {integrity: sha512-JxbK3iAcTIeNr1p0WIFg/wQJjIzJt9l/2KNY/48vXV7GRGZSv3zMxJsce008fZclk2cDC8y0Ig3odceHO7EfNQ==}
'@internationalized/number@3.6.0':
resolution: {integrity: sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==}
'@internationalized/string@3.2.5':
resolution: {integrity: sha512-rKs71Zvl2OKOHM+mzAFMIyqR5hI1d1O6BBkMK2/lkfg3fkmVh9Eeg0awcA8W2WqYqDOv6a86DIOlFpggwLtbuw==}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
'@jridgewell/gen-mapping@0.3.8':
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
'@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
'@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
'@react-aria/breadcrumbs@3.5.19':
resolution: {integrity: sha512-mVngOPFYVVhec89rf/CiYQGTfaLRfHFtX+JQwY7sNYNqSA+gO8p4lNARe3Be6bJPgH+LUQuruIY9/ZDL6LT3HA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/button@3.11.0':
resolution: {integrity: sha512-b37eIV6IW11KmNIAm65F3SEl2/mgj5BrHIysW6smZX3KoKWTGYsYfcQkmtNgY0GOSFfDxMCoolsZ6mxC00nSDA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/calendar@3.6.0':
resolution: {integrity: sha512-tZ3nd5DP8uxckbj83Pt+4RqgcTWDlGi7njzc7QqFOG2ApfnYDUXbIpb/Q4KY6JNlJskG8q33wo0XfOwNy8J+eg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/checkbox@3.15.0':
resolution: {integrity: sha512-z/8xd4em7o0MroBXwkkwv7QRwiJaA1FwqMhRUb7iqtBGP2oSytBEDf0N7L09oci32a1P4ZPz2rMK5GlLh/PD6g==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/combobox@3.11.0':
resolution: {integrity: sha512-s88YMmPkMO1WSoiH1KIyZDLJqUwvM2wHXXakj3cYw1tBHGo4rOUFq+JWQIbM5EDO4HOR4AUUqzIUd0NO7t3zyg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/datepicker@3.12.0':
resolution: {integrity: sha512-VYNXioLfddIHpwQx211+rTYuunDmI7VHWBRetCpH3loIsVFuhFSRchTQpclAzxolO3g0vO7pMVj9VYt7Swp6kg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/dialog@3.5.20':
resolution: {integrity: sha512-l0GZVLgeOd3kL3Yj8xQW7wN3gn9WW3RLd/SGI9t7ciTq+I/FhftjXCWzXLlOCCTLMf+gv7eazecECtmoWUaZWQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/focus@3.19.0':
resolution: {integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/focus@3.19.1':
resolution: {integrity: sha512-bix9Bu1Ue7RPcYmjwcjhB14BMu2qzfJ3tMQLqDc9pweJA66nOw8DThy3IfVr8Z7j2PHktOLf9kcbiZpydKHqzg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/form@3.0.11':
resolution: {integrity: sha512-oXzjTiwVuuWjZ8muU0hp3BrDH5qjVctLOF50mjPvqUbvXQTHhoDxWweyIXPQjGshaqBd2w4pWaE4A2rG2O/apw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@react-aria/form@3.0.12':
resolution: {integrity: sha512-8uvPYEd3GDyGt5NRJIzdWW1Ry5HLZq37vzRZKUW8alZ2upFMH3KJJG55L9GP59KiF6zBrYBebvI/YK1Ye1PE1g==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1