-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
7085 lines (6392 loc) · 276 KB
/
pnpm-lock.yaml
File metadata and controls
7085 lines (6392 loc) · 276 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: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@heroui/react':
specifier: ^2.8.4
version: 2.8.4(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)(tailwindcss@4.1.5)
'@heroui/spinner':
specifier: ^2.2.23
version: 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@prisma/client':
specifier: 6.16.2
version: 6.16.2(prisma@6.16.2)(typescript@5.9.2)
bcrypt:
specifier: ^6.0.0
version: 6.0.0
lucide-react:
specifier: ^0.544.0
version: 0.544.0(react@19.1.0)
next-auth:
specifier: ^4.24.11
version: 4.24.11(next@15.3.0)(react-dom@19.1.0)(react@19.1.0)
react-toastify:
specifier: ^11.0.5
version: 11.0.5(react-dom@19.1.0)(react@19.1.0)
devDependencies:
'@types/bcrypt':
specifier: ^6.0.0
version: 6.0.0
'@types/express':
specifier: ^5.0.3
version: 5.0.3
prettier:
specifier: ^3.6.0
version: 3.6.0
prettier-plugin-tailwindcss:
specifier: ^0.6.11
version: 0.6.11(prettier@3.6.0)
turbo:
specifier: ^2.5.4
version: 2.5.4
apps/bank-webhook:
dependencies:
'@repo/db':
specifier: workspace:*
version: link:../../packages/db
'@repo/zod-schema':
specifier: workspace:*
version: link:../../packages/zod-schemas
express:
specifier: ^5.1.0
version: 5.1.0
devDependencies:
'@repo/typescript-config':
specifier: workspace:*
version: link:../../packages/typescript-config
typescript:
specifier: latest
version: 5.9.2
apps/user-app:
dependencies:
'@repo/db':
specifier: workspace:*
version: link:../../packages/db
'@repo/ui':
specifier: workspace:*
version: link:../../packages/ui
'@repo/zod-schema':
specifier: workspace:*
version: link:../../packages/zod-schemas
next:
specifier: ^15.3.0
version: 15.3.0(react-dom@19.1.0)(react@19.1.0)
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
devDependencies:
'@next/eslint-plugin-next':
specifier: ^15.3.0
version: 15.3.0
'@repo/eslint-config':
specifier: workspace:*
version: link:../../packages/eslint-config
'@repo/tailwind-config':
specifier: workspace:*
version: link:../../packages/tailwind-config
'@repo/typescript-config':
specifier: workspace:*
version: link:../../packages/typescript-config
'@tailwindcss/postcss':
specifier: ^4.1.5
version: 4.1.5
'@types/node':
specifier: ^22.15.30
version: 22.15.30
'@types/react':
specifier: ^19.1.0
version: 19.1.0
'@types/react-dom':
specifier: ^19.1.1
version: 19.1.1(@types/react@19.1.0)
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.5.3)
eslint:
specifier: ^9.30.0
version: 9.30.0
postcss:
specifier: ^8.5.3
version: 8.5.3
tailwindcss:
specifier: ^4.1.5
version: 4.1.5
typescript:
specifier: 5.8.2
version: 5.8.2
packages/db:
dependencies:
'@prisma/client':
specifier: 6.16.2
version: 6.16.2(prisma@6.16.2)(typescript@5.9.2)
devDependencies:
'@repo/typescript-config':
specifier: workspace:*
version: link:../typescript-config
prisma:
specifier: 6.16.2
version: 6.16.2(typescript@5.9.2)
typescript:
specifier: latest
version: 5.9.2
packages/eslint-config:
devDependencies:
'@eslint/js':
specifier: ^9.30.0
version: 9.30.0
'@next/eslint-plugin-next':
specifier: ^15.3.0
version: 15.3.0
eslint:
specifier: ^9.30.0
version: 9.30.0
eslint-config-prettier:
specifier: ^10.1.1
version: 10.1.1(eslint@9.30.0)
eslint-plugin-only-warn:
specifier: ^1.1.0
version: 1.1.0
eslint-plugin-react:
specifier: ^7.37.4
version: 7.37.4(eslint@9.30.0)
eslint-plugin-react-hooks:
specifier: ^5.2.0
version: 5.2.0(eslint@9.30.0)
eslint-plugin-turbo:
specifier: ^2.5.0
version: 2.5.0(eslint@9.30.0)(turbo@2.5.4)
globals:
specifier: ^16.3.0
version: 16.3.0
typescript:
specifier: ^5.8.2
version: 5.8.2
typescript-eslint:
specifier: ^8.35.0
version: 8.35.0(eslint@9.30.0)(typescript@5.8.2)
packages/tailwind-config:
devDependencies:
postcss:
specifier: ^8.5.3
version: 8.5.3
tailwindcss:
specifier: ^4.1.5
version: 4.1.5
packages/typescript-config: {}
packages/ui:
dependencies:
react:
specifier: ^19
version: 19.0.0
devDependencies:
'@repo/eslint-config':
specifier: workspace:*
version: link:../eslint-config
'@repo/tailwind-config':
specifier: workspace:*
version: link:../tailwind-config
'@repo/typescript-config':
specifier: workspace:*
version: link:../typescript-config
'@tailwindcss/cli':
specifier: ^4.1.5
version: 4.1.5
'@types/react':
specifier: ^19.1.0
version: 19.1.0
eslint:
specifier: ^9.30.0
version: 9.30.0
tailwindcss:
specifier: ^4.1.5
version: 4.1.5
typescript:
specifier: 5.8.2
version: 5.8.2
packages/zod-schemas:
dependencies:
zod:
specifier: ^4.1.11
version: 4.1.11
devDependencies:
'@repo/typescript-config':
specifier: workspace:*
version: link:../typescript-config
prisma:
specifier: 6.16.2
version: 6.16.2(typescript@5.9.3)
typescript:
specifier: latest
version: 5.9.3
packages:
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
dev: true
/@babel/runtime@7.28.4:
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
dev: false
/@emnapi/runtime@1.4.3:
resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
requiresBuild: true
dependencies:
tslib: 2.8.1
dev: false
optional: true
/@eslint-community/eslint-utils@4.7.0(eslint@9.30.0):
resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 9.30.0
eslint-visitor-keys: 3.4.3
dev: true
/@eslint-community/regexpp@4.12.1:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
/@eslint/config-array@0.21.0:
resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
'@eslint/object-schema': 2.1.6
debug: 4.4.1
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
dev: true
/@eslint/config-helpers@0.3.0:
resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: true
/@eslint/core@0.14.0:
resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
'@types/json-schema': 7.0.15
dev: true
/@eslint/core@0.15.1:
resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
'@types/json-schema': 7.0.15
dev: true
/@eslint/eslintrc@3.3.1:
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
ajv: 6.12.6
debug: 4.4.1
espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
dev: true
/@eslint/js@9.30.0:
resolution: {integrity: sha512-Wzw3wQwPvc9sHM+NjakWTcPx11mbZyiYHuwWa/QfZ7cIRX7WK54PSk7bdyXDaoaopUcMatv1zaQvOAAO8hCdww==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: true
/@eslint/object-schema@2.1.6:
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: true
/@eslint/plugin-kit@0.3.3:
resolution: {integrity: sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
'@eslint/core': 0.15.1
levn: 0.4.1
dev: true
/@formatjs/ecma402-abstract@2.3.4:
resolution: {integrity: sha512-qrycXDeaORzIqNhBOx0btnhpD1c+/qFIHAN9znofuMJX6QBwtbrmlpWfD4oiUUD2vJUOIYFA/gYtg2KAMGG7sA==}
dependencies:
'@formatjs/fast-memoize': 2.2.7
'@formatjs/intl-localematcher': 0.6.1
decimal.js: 10.6.0
tslib: 2.8.1
dev: false
/@formatjs/fast-memoize@2.2.7:
resolution: {integrity: sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==}
dependencies:
tslib: 2.8.1
dev: false
/@formatjs/icu-messageformat-parser@2.11.2:
resolution: {integrity: sha512-AfiMi5NOSo2TQImsYAg8UYddsNJ/vUEv/HaNqiFjnI3ZFfWihUtD5QtuX6kHl8+H+d3qvnE/3HZrfzgdWpsLNA==}
dependencies:
'@formatjs/ecma402-abstract': 2.3.4
'@formatjs/icu-skeleton-parser': 1.8.14
tslib: 2.8.1
dev: false
/@formatjs/icu-skeleton-parser@1.8.14:
resolution: {integrity: sha512-i4q4V4qslThK4Ig8SxyD76cp3+QJ3sAqr7f6q9VVfeGtxG9OhiAk3y9XF6Q41OymsKzsGQ6OQQoJNY4/lI8TcQ==}
dependencies:
'@formatjs/ecma402-abstract': 2.3.4
tslib: 2.8.1
dev: false
/@formatjs/intl-localematcher@0.6.1:
resolution: {integrity: sha512-ePEgLgVCqi2BBFnTMWPfIghu6FkbZnnBVhO2sSxvLfrdFw7wCHAHiDoM2h4NRgjbaY7+B7HgOLZGkK187pZTZg==}
dependencies:
tslib: 2.8.1
dev: false
/@heroui/accordion@2.2.23(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-eXokso461YdSkJ6t3fFxBq2xkxCcZPbXECwanNHaLZPBh1QMaVdtCEZZxVB4HeoMRmZchRHWbUrbiz/l+A9hZQ==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/aria-utils': 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/divider': 2.2.19(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/dom-animation': 2.1.10(framer-motion@12.23.22)
'@heroui/framer-utils': 2.1.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-aria-accordion': 2.2.17(react-dom@19.1.0)(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-stately/tree': 3.9.2(react@19.1.0)
'@react-types/accordion': 3.0.0-alpha.26(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/alert@2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-ngyPzbRrW3ZNgwb6DlsvdCboDeHrncN4Q1bvdwFKIn2uHYRF2pEJgBhWuqpCVDaIwGhypGMXrBFFwIvdCNF+Zw==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.19'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/button': 2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@react-stately/utils': 3.10.8(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- framer-motion
dev: false
/@heroui/aria-utils@2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-RF5vWZdBdQIGfQ5GgPt3XTsNDodLJ87criWUVt7qOox+lmJrSkYPmHgA1bEZxJdd3aCwLCJbcBGqP7vW3+OVCQ==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@react-aria/utils': 3.30.1(react-dom@19.1.0)(react@19.1.0)
'@react-stately/collections': 3.12.7(react@19.1.0)
'@react-types/overlays': 3.9.1(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- '@heroui/theme'
- framer-motion
dev: false
/@heroui/autocomplete@2.3.28(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-7z55VHlCG6Gh7IKypJdc7YIO45rR05nMAU0fu5D2ZbcsjBN1ie+ld2M57ypamK/DVD7TyauWvFZt55LcWN5ejQ==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/aria-utils': 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/button': 2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/form': 2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/input': 2.4.27(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/listbox': 2.3.25(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/popover': 2.3.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/scroll-shadow': 2.3.17(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-safe-layout-effect': 2.1.8(react@19.1.0)
'@react-aria/combobox': 3.13.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/i18n': 3.12.12(react-dom@19.1.0)(react@19.1.0)
'@react-stately/combobox': 3.11.1(react@19.1.0)
'@react-types/combobox': 3.13.8(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- '@types/react'
dev: false
/@heroui/avatar@2.2.21(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-oer+CuEAQpvhLzyBmO3eWhsdbWzcyIDn8fkPl4D2AMfpNP8ve82ysXEC+DLcoOEESS3ykkHsp4C0MPREgC3QgA==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-image': 2.1.12(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/badge@2.2.16(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-gW0aVdic+5jwDhifIB8TWJ6170JOOzLn7Jkomj2IsN2G+oVrJ7XdJJGr2mYkoeNXAwYlYVyXTANV+zPSGKbx7A==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/breadcrumbs@2.2.21(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-CB/RNyng37thY8eCbCsIHVV/hMdND4l+MapJOcCi6ffbKT0bebC+4ukcktcdZ/WucAn2qZdl4NfdyIuE0ZqjyQ==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@react-aria/breadcrumbs': 3.5.28(react-dom@19.1.0)(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-types/breadcrumbs': 3.7.16(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/button@2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-Z4Kp7M444pgzKCUDTZX8Q5GnxOxqIJnAB58+8g5ETlA++Na+qqXwAXADmAPIrBB7uqoRUrsP7U/bpp5SiZYJ2A==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/ripple': 2.2.19(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/spinner': 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-aria-button': 2.2.19(react-dom@19.1.0)(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/calendar@2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-jCFc+JSl/yQqAVi5TladdYpiX0vf72Sy2vuCTN+HdcpH3SFkJgPLlbt6ib+pbAi14hGbUdJ+POmBC19URZ/g7g==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/button': 2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/dom-animation': 2.1.10(framer-motion@12.23.22)
'@heroui/framer-utils': 2.1.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-aria-button': 2.2.19(react-dom@19.1.0)(react@19.1.0)
'@internationalized/date': 3.9.0
'@react-aria/calendar': 3.9.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/i18n': 3.12.12(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-aria/visually-hidden': 3.8.27(react-dom@19.1.0)(react@19.1.0)
'@react-stately/calendar': 3.8.4(react@19.1.0)
'@react-stately/utils': 3.10.8(react@19.1.0)
'@react-types/button': 3.14.0(react@19.1.0)
'@react-types/calendar': 3.7.4(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
scroll-into-view-if-needed: 3.0.10
dev: false
/@heroui/card@2.2.24(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-kv4xLJTNYSar3YjiziA71VSZbco0AQUiZAuyP9rZ8XSht8HxLQsVpM6ywFa+/SGTGAh5sIv0qCYCpm0m4BrSxw==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/ripple': 2.2.19(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-aria-button': 2.2.19(react-dom@19.1.0)(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/checkbox@2.3.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-i3f6pYNclFN/+CHhgF1xWjBaHNEbb2HoZaM3Q2zLVTzDpBx0893Vu3iDkH6wwx71ze8N/Y0cqZWFxR5v+IQUKg==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/form': 2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-callback-ref': 2.1.8(react@19.1.0)
'@heroui/use-safe-layout-effect': 2.1.8(react@19.1.0)
'@react-aria/checkbox': 3.16.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-stately/checkbox': 3.7.1(react@19.1.0)
'@react-stately/toggle': 3.9.1(react@19.1.0)
'@react-types/checkbox': 3.10.1(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/chip@2.2.21(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-vE1XbVL4U92RjuXZWnQgcPIFQ9amLEDCVTK5IbCF2MJ7Xr6ofDj6KTduauCCH1H40p9y1zk6+fioqvxDEoCgDw==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/code@2.2.20(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-Bd0fwvBv3K1NGjjlKxbHxCIXjQ0Ost6m3z5P295JZ5yf9RIub4ztLqYx2wS0cRJ7z/AjqF6YBQlhCMt76cuEsQ==}
peerDependencies:
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system-rsc': 2.3.19(@heroui/theme@2.4.22)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/date-input@2.3.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-iF3YRZYSk37oEzVSop9hHd8VoNTJ3lIO06Oq/Lj64HGinuK06/PZrFhEWqKKZ472RctzLTmPbAjeXuhHh2mgMg==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/form': 2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@internationalized/date': 3.9.0
'@react-aria/datepicker': 3.15.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/i18n': 3.12.12(react-dom@19.1.0)(react@19.1.0)
'@react-stately/datepicker': 3.15.1(react@19.1.0)
'@react-types/datepicker': 3.13.1(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/date-picker@2.3.27(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-FoiORJ6e8cXyoqBn5mvXaBUocW3NNXTV07ceJhqyu0GVS+jV0J0bPZBg4G8cz7BjaU+8cquHsFQanz73bViH3g==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/aria-utils': 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/button': 2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/calendar': 2.2.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/date-input': 2.3.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/form': 2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/popover': 2.3.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@internationalized/date': 3.9.0
'@react-aria/datepicker': 3.15.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/i18n': 3.12.12(react-dom@19.1.0)(react@19.1.0)
'@react-stately/datepicker': 3.15.1(react@19.1.0)
'@react-stately/utils': 3.10.8(react@19.1.0)
'@react-types/datepicker': 3.13.1(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/divider@2.2.19(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-FHoXojco23o/A9GJU6K2iJ3uAvcV7AJ4ppAKIGaKS4weJnYOsh5f9NE2RL3NasmIjk3DLMERDjVVuPyDdJ+rpw==}
peerDependencies:
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-rsc-utils': 2.1.9(react@19.1.0)
'@heroui/system-rsc': 2.3.19(@heroui/theme@2.4.22)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@react-types/shared': 3.32.0(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/dom-animation@2.1.10(framer-motion@12.23.22):
resolution: {integrity: sha512-dt+0xdVPbORwNvFT5pnqV2ULLlSgOJeqlg/DMo97s9RWeD6rD4VedNY90c8C9meqWqGegQYBQ9ztsfX32mGEPA==}
peerDependencies:
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
dependencies:
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
dev: false
/@heroui/drawer@2.2.23(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-43/Aoi7Qi4YXmVXXy43v2pyLmi4ZW32nXSnbU5xdKhMb0zFNThAH0/eJmHdtW8AUjei2W1wTmMpGn/WHCYVXOA==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/framer-utils': 2.1.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/modal': 2.2.23(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- framer-motion
dev: false
/@heroui/dropdown@2.3.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-ZuOawL7OnsC5qykYixADfaeSqZleFg4IwZnDN6cd17bXErxPnBYBVnQSnHRsyCUJm7gYiVcDXljNKwp/2reahg==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/aria-utils': 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/menu': 2.2.25(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/popover': 2.3.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/menu': 3.19.1(react-dom@19.1.0)(react@19.1.0)
'@react-stately/menu': 3.9.7(react@19.1.0)
'@react-types/menu': 3.10.4(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/form@2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-vBlae4k59GjD36Ho8P8rL78W9djWPPejav0ocv0PjfqlEnmXLa1Wrel/3zTAOcFVI7uKBio3QdU78IIEPM82sw==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18'
react-dom: '>=18'
dependencies:
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@react-stately/form': 3.2.1(react@19.1.0)
'@react-types/form': 3.7.15(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/framer-utils@2.1.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-f5qlpdWToEp1re9e4Wje2/FCaGWRdkqs9U80qfjFHmZFaWHBGLBX1k8G5p7aw3lOaf+pqDcC2sIldNav57Xfpw==}
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'
dependencies:
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/use-measure': 2.1.8(react@19.1.0)
framer-motion: 12.23.22(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- '@heroui/theme'
dev: false
/@heroui/image@2.2.16(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-dy3c4qoCqNbJmOoDP2dyth+ennSNXoFOH0Wmd4i1TF5f20LCJSRZbEjqp9IiVetZuh+/yw+edzFMngmcqZdTNw==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-image': 2.1.12(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/input-otp@2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-eVVSOvwTiuVmq/hXWDYuq9ICR59R7TuWi55dDG/hd5WN6jIBJsNkmt7MmYVaSNNISyzi27hPEK43/bvK4eO9FA==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18'
react-dom: '>=18'
dependencies:
'@heroui/form': 2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-form-reset': 2.0.1(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/form': 3.1.1(react-dom@19.1.0)(react@19.1.0)
'@react-stately/form': 3.2.1(react@19.1.0)
'@react-stately/utils': 3.10.8(react@19.1.0)
'@react-types/textfield': 3.12.5(react@19.1.0)
input-otp: 1.4.1(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/input@2.4.27(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-sLGw7r+BXyB1MllKNKmn0xLvSW0a1l+3gXefnUCXGSvI3bwrLvk3hUgbkVSJRnxSChU41yXaYDRcHL39t7yzuQ==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.19'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/form': 2.1.26(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-safe-layout-effect': 2.1.8(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-aria/textfield': 3.18.1(react-dom@19.1.0)(react@19.1.0)
'@react-stately/utils': 3.10.8(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
'@react-types/textfield': 3.12.5(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
react-textarea-autosize: 8.5.9(react@19.1.0)
transitivePeerDependencies:
- '@types/react'
dev: false
/@heroui/kbd@2.2.21(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-4AY0Q+jwDbY9ehhu0Vv68QIiSCnFEMPYpaPHVLNR/9rEJDN/BS+j4FyUfxjnyjD7EKa8CNs6Y7O0VnakUXGg+g==}
peerDependencies:
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system-rsc': 2.3.19(@heroui/theme@2.4.22)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/link@2.2.22(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-INWjrLwlxSU5hN0qr1lCZ1GN9Tf3X8WMTUQnPmvbqbJkPgQjqfIcO2dJyUkV3X0PiSB9QbPMlfU4Sx+loFKq4g==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-icons': 2.1.10(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-aria-link': 2.2.20(react-dom@19.1.0)(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-types/link': 3.6.4(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
dev: false
/@heroui/listbox@2.3.25(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-KaLLCpf7EPhDMamjJ7dBQK2SKo8Qrlh6lTLCbZrCAuUGiBooCc80zWJa55XiDiaZhfQC/TYeoe5MMnw4yr5xmw==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/aria-utils': 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/divider': 2.2.19(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-is-mobile': 2.2.12(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-aria/listbox': 3.14.8(react-dom@19.1.0)(react@19.1.0)
'@react-stately/list': 3.13.0(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
'@tanstack/react-virtual': 3.11.3(react-dom@19.1.0)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- framer-motion
dev: false
/@heroui/menu@2.2.25(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-BxHD/5IvmvhzM78KVrEkkcQFie0WF2yXq7FXsGa17UHBji32D38JKgGCnJMMoko1H3cG4p5ihZjT7O7NH5rdvQ==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
dependencies:
'@heroui/aria-utils': 2.2.23(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/divider': 2.2.19(@heroui/theme@2.4.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)
'@heroui/shared-utils': 2.1.11
'@heroui/system': 2.4.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/theme': 2.4.22(tailwindcss@4.1.5)
'@heroui/use-is-mobile': 2.2.12(react@19.1.0)
'@react-aria/focus': 3.21.1(react-dom@19.1.0)(react@19.1.0)
'@react-aria/interactions': 3.25.5(react-dom@19.1.0)(react@19.1.0)
'@react-aria/menu': 3.19.1(react-dom@19.1.0)(react@19.1.0)
'@react-stately/tree': 3.9.2(react@19.1.0)
'@react-types/menu': 3.10.4(react@19.1.0)
'@react-types/shared': 3.32.0(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- framer-motion
dev: false
/@heroui/modal@2.2.23(@heroui/system@2.4.22)(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0):
resolution: {integrity: sha512-IOvcyX9ugEmsHhtizxP/rVHGWCO+I0zWxwzcuA+BjX8jcWYrseiyoPMPsxsjSfX2tfBY4b2empT08BsWH1n+Wg==}
peerDependencies:
'@heroui/system': '>=2.4.18'
'@heroui/theme': '>=2.4.17'
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'
dependencies:
'@heroui/dom-animation': 2.1.10(framer-motion@12.23.22)
'@heroui/framer-utils': 2.1.22(@heroui/theme@2.4.22)(framer-motion@12.23.22)(react-dom@19.1.0)(react@19.1.0)
'@heroui/react-utils': 2.1.13(react@19.1.0)