-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
7361 lines (6068 loc) · 320 KB
/
pnpm-lock.yaml
File metadata and controls
7361 lines (6068 loc) · 320 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
importers:
.:
dependencies:
'@heroui/react':
specifier: 2.8.0-beta.10
version: 2.8.0-beta.10(@types/react@19.1.8)(framer-motion@12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.11)
'@radix-ui/react-slot':
specifier: ^1.2.3
version: 1.2.3(@types/react@19.1.8)(react@19.1.0)
'@tanstack/react-query':
specifier: ^5.81.2
version: 5.81.2(react@19.1.0)
'@tanstack/react-router':
specifier: ^1.121.41
version: 1.121.41(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@tauri-apps/api':
specifier: ^2.6.0
version: 2.6.0
'@tauri-apps/plugin-deep-link':
specifier: ^2.4.0
version: 2.4.0
'@tauri-apps/plugin-dialog':
specifier: ^2.3.0
version: 2.3.0
'@tauri-apps/plugin-fs':
specifier: ^2.4.0
version: 2.4.0
'@tauri-apps/plugin-http':
specifier: ^2.5.0
version: 2.5.0
'@tauri-apps/plugin-log':
specifier: ^2.6.0
version: 2.6.0
'@tauri-apps/plugin-os':
specifier: ^2.3.0
version: 2.3.0
'@tauri-apps/plugin-shell':
specifier: ^2.3.0
version: 2.3.0
ahooks:
specifier: ^3.8.5
version: 3.8.5(react@19.1.0)
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
clsx:
specifier: ^2.1.1
version: 2.1.1
framer-motion:
specifier: 12.19.1
version: 12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
i18next:
specifier: ^25.2.1
version: 25.2.1(typescript@5.8.3)
jotai:
specifier: ^2.12.5
version: 2.12.5(@types/react@19.1.8)(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)
react-error-boundary:
specifier: ^6.0.0
version: 6.0.0(react@19.1.0)
react-i18next:
specifier: ^15.5.3
version: 15.5.3(i18next@25.2.1(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
react-icons:
specifier: ^5.5.0
version: 5.5.0(react@19.1.0)
react-markdown:
specifier: ^10.1.0
version: 10.1.0(@types/react@19.1.8)(react@19.1.0)
swr:
specifier: ^2.3.3
version: 2.3.3(react@19.1.0)
tailwind-merge:
specifier: ^3.3.1
version: 3.3.1
tailwind-variants:
specifier: ^1.0.0
version: 1.0.0(tailwindcss@4.1.11)
tailwindcss-animate:
specifier: ^1.0.7
version: 1.0.7(tailwindcss@4.1.11)
zod:
specifier: ^3.25.67
version: 3.25.67
devDependencies:
'@react-types/shared':
specifier: ^3.30.0
version: 3.30.0(react@19.1.0)
'@tailwindcss/vite':
specifier: ^4.1.11
version: 4.1.11(vite@7.0.0(jiti@2.4.2)(lightningcss@1.30.1)(sass-embedded@1.89.2)(tsx@4.19.3)(yaml@2.7.0))
'@tanstack/react-router-devtools':
specifier: ^1.121.41
version: 1.121.41(@tanstack/react-router@1.121.41(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tanstack/router-core@1.121.40)(csstype@3.1.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(solid-js@1.9.5)(tiny-invariant@1.3.3)
'@tanstack/router-plugin':
specifier: ^1.121.41
version: 1.121.41(@tanstack/react-router@1.121.41(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(vite@7.0.0(jiti@2.4.2)(lightningcss@1.30.1)(sass-embedded@1.89.2)(tsx@4.19.3)(yaml@2.7.0))
'@tauri-apps/cli':
specifier: ^2.6.1
version: 2.6.1
'@types/react':
specifier: ^19.1.8
version: 19.1.8
'@types/react-dom':
specifier: ^19.1.6
version: 19.1.6(@types/react@19.1.8)
'@vitejs/plugin-react-swc':
specifier: ^3.10.2
version: 3.10.2(vite@7.0.0(jiti@2.4.2)(lightningcss@1.30.1)(sass-embedded@1.89.2)(tsx@4.19.3)(yaml@2.7.0))
cross-env:
specifier: ^7.0.3
version: 7.0.3
globals:
specifier: ^16.2.0
version: 16.2.0
postcss:
specifier: ^8.5.6
version: 8.5.6
sass-embedded:
specifier: ^1.89.2
version: 1.89.2
tailwindcss:
specifier: 4.1.11
version: 4.1.11
typescript:
specifier: ^5.8.3
version: 5.8.3
unplugin-auto-import:
specifier: ^19.3.0
version: 19.3.0
vite:
specifier: ^7.0.0
version: 7.0.0(jiti@2.4.2)(lightningcss@1.30.1)(sass-embedded@1.89.2)(tsx@4.19.3)(yaml@2.7.0)
vite-plugin-sass-dts:
specifier: ^1.3.31
version: 1.3.31(postcss@8.5.6)(prettier@3.5.3)(sass-embedded@1.89.2)(vite@7.0.0(jiti@2.4.2)(lightningcss@1.30.1)(sass-embedded@1.89.2)(tsx@4.19.3)(yaml@2.7.0))
vite-plugin-svgr:
specifier: ^4.3.0
version: 4.3.0(rollup@4.44.0)(typescript@5.8.3)(vite@7.0.0(jiti@2.4.2)(lightningcss@1.30.1)(sass-embedded@1.89.2)(tsx@4.19.3)(yaml@2.7.0))
vite-tsconfig-paths:
specifier: ^5.1.4
version: 5.1.4(typescript@5.8.3)(vite@7.0.0(jiti@2.4.2)(lightningcss@1.30.1)(sass-embedded@1.89.2)(tsx@4.19.3)(yaml@2.7.0))
packages:
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.27.5':
resolution: {integrity: sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.27.4':
resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.27.5':
resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
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.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.27.1':
resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-member-expression-to-functions@7.27.1':
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
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-transforms@7.27.3':
resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
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-replace-supers@7.27.1':
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
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.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.27.6':
resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.27.5':
resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-syntax-jsx@7.27.1':
resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.27.1':
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-modules-commonjs@7.27.1':
resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-typescript@7.27.1':
resolution: {integrity: sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/preset-typescript@7.27.1':
resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.26.10':
resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
engines: {node: '>=6.9.0'}
'@babel/runtime@7.27.1':
resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
engines: {node: '>=6.9.0'}
'@babel/runtime@7.27.6':
resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.27.4':
resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==}
engines: {node: '>=6.9.0'}
'@babel/types@7.27.6':
resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==}
engines: {node: '>=6.9.0'}
'@bufbuild/protobuf@2.5.2':
resolution: {integrity: sha512-foZ7qr0IsUBjzWIq+SuBLfdQCpJ1j8cTuNNT4owngTHoN5KsJb8L9t65fzz7SCeSWzescoOil/0ldqiL041ABg==}
'@esbuild/aix-ppc64@0.25.1':
resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.25.1':
resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.25.1':
resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.25.1':
resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.25.1':
resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.25.1':
resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.25.1':
resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.25.1':
resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.25.1':
resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.25.1':
resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.25.1':
resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.25.1':
resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.25.1':
resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.25.1':
resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.25.1':
resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.25.1':
resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.25.1':
resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.25.1':
resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.25.1':
resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.25.1':
resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.25.1':
resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.25.1':
resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.25.1':
resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.25.1':
resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.25.1':
resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@formatjs/ecma402-abstract@2.3.3':
resolution: {integrity: sha512-pJT1OkhplSmvvr6i3CWTPvC/FGC06MbN5TNBfRO6Ox62AEz90eMq+dVvtX9Bl3jxCEkS0tATzDarRZuOLw7oFg==}
'@formatjs/fast-memoize@2.2.6':
resolution: {integrity: sha512-luIXeE2LJbQnnzotY1f2U2m7xuQNj2DA8Vq4ce1BY9ebRZaoPB1+8eZ6nXpLzsxuW5spQxr7LdCg+CApZwkqkw==}
'@formatjs/icu-messageformat-parser@2.11.1':
resolution: {integrity: sha512-o0AhSNaOfKoic0Sn1GkFCK4MxdRsw7mPJ5/rBpIqdvcC7MIuyUSW8WChUEvrK78HhNpYOgqCQbINxCTumJLzZA==}
'@formatjs/icu-skeleton-parser@1.8.13':
resolution: {integrity: sha512-N/LIdTvVc1TpJmMt2jVg0Fr1F7Q1qJPdZSCs19unMskCmVQ/sa0H9L8PWt13vq+gLdLg1+pPsvBLydL1Apahjg==}
'@formatjs/intl-localematcher@0.6.0':
resolution: {integrity: sha512-4rB4g+3hESy1bHSBG3tDFaMY2CH67iT7yne1e+0CLTsGLDcmoEWWpJjjpWVaYgYfYuohIRuo0E+N536gd2ZHZA==}
'@heroui/accordion@2.2.19-beta.2':
resolution: {integrity: sha512-HNxHZtFkNzNd21U9j+iLs083zFBb36OB6lSbjnO+E19DPkuLG5c191rAGuPWPXH5ZfPOQm+FB4c0mgdiVL4euA==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.22-beta.2':
resolution: {integrity: sha512-jBleMR6xlx89rdiMoOLlKj43MaSL4ohXiQNfqolz+siKQap2T1l4ufNhnEGzIEGkgIHvfMSJRgYCyJ95SNL6EQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/aria-utils@2.2.19-beta.2':
resolution: {integrity: sha512-QYsfZ2FEJxomeV9xX0CLLtNQyrAkS0Qnkn7BSVV3QvNdUrBM1ofXi33Y3V2XbJffFEM3nrJqESPdHWvwPOfdbg==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/autocomplete@2.3.23-beta.2':
resolution: {integrity: sha512-rofbrbcvFmH9UkdmfXXVcITeSezJ9DHDtkkBnHoadN6jR8bKK8ZurBgRFJ0fi7h1HsWtwAABS8+H5WE58vnkEg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.18-beta.2':
resolution: {integrity: sha512-KYUdjdblG1ZaunAacKnhGE5M5GV6IGhQHBEdMZB07foU+bv5eenDfKTeukOQtVTUZTsk6h35mAVQnzc9XERWVw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/badge@2.2.14-beta.2':
resolution: {integrity: sha512-gHh6MdhCQUHuLzS+K3aXpuw714KVY9alFtyLkW+E9rM3vOqYqWarsZLnbSL7VbHkbhOUsKSBDT9Fq0HH2cgIFQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/breadcrumbs@2.2.18-beta.2':
resolution: {integrity: sha512-Xl9g5/aLJQ/lCSXlpfUX1JQdIfvtcXynjlB+rdO8MIKx1HnPtTjf6fi4kgKzKy8Ru/lpv8784BM8iVcJfbbLCA==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/button@2.2.22-beta.2':
resolution: {integrity: sha512-4bbNN8BdcfMw+Bga7iuASxqsz0yD+aIT5GneuZBEGpegd3+1KnS3l00Ko/KEFVEqarA0aQtpfgAg4YPPowXuBg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.22-beta.2':
resolution: {integrity: sha512-PfVeHTofYv2Bih2pD9I/lt7sUv9bmeWnEJHN0yde2/T/1L096ZOXDSPk3G1RsGEwHkDbPsUJppmrfZ+qdIpGGw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.21-beta.2':
resolution: {integrity: sha512-FKONBih+g3u9ovMSa6r3oNk17Q5JuMlTKBi/Y4zj4eiyV+FI68tCGhI35vWKMKoWtMkWrCxTlIR1NrubLBK+Xw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.21-beta.2':
resolution: {integrity: sha512-b3k+Hb4osfY9QR6O+1WqcXntIQGl1yfdWs7SldAQdn0O65A/eq5AotmkDjZ4izse1iD0asWwrKlT+9V/vfdZfQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/chip@2.2.18-beta.2':
resolution: {integrity: sha512-j5PAGMi/OFDr2ydSXfpxRvK+VAZMb/T5WU8nTmel1FLSYRYqkicYl4VXLhq2eW0abzbYuMt5pkZ1Idww9qc3sg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/code@2.2.17-beta.2':
resolution: {integrity: sha512-2Ggr1QgzHitjeqQrQCB6X4g+EmfNJcyyQ1FZaGNtrU7qWvIJSnL6qnQzSHEWzv6nx0sUpYnoVeAnN5hwbXNPLA==}
peerDependencies:
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/date-input@2.3.21-beta.2':
resolution: {integrity: sha512-4cnhGLTpk0yzAX9xHG4w2ipTSngzEl9skkXIDScqM9hOxCx4T9t5FS/sOQlMW18wCQ9Z+G10nUqKOWv0Mt3zGw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/date-picker@2.3.22-beta.2':
resolution: {integrity: sha512-FpyHHUcvPXlmKDSpWXqsE/5Seg3DfEh0ByEBzPBBvYtBsQ+XBg8PiZdRFbt2jYL4kLcjckkEh9QTNHAEAt06ig==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.16-beta.2':
resolution: {integrity: sha512-BiJwg9Wth8rRDBWmVTKjOYW+nDWnYKqlsUqS59kuUs0pHOHHXUu800WOKasUI/dbYnVMCweYe+taLrikVRxxjA==}
peerDependencies:
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/dom-animation@2.1.10-beta.2':
resolution: {integrity: sha512-VWfPBhOsU77d+iYvWfMbdBB50FWJO4pAQiR6GrQ+ND8GoerZrJ5/c3o3HiyaiWGQRcM8LFxOiJzKaTLLD0lBog==}
peerDependencies:
framer-motion: '>=11.5.6 || >=12.0.0-alpha.1'
'@heroui/drawer@2.2.19-beta.2':
resolution: {integrity: sha512-hZXkeNjPcEW9g91zhdnVlUsgHF8sgfy98LO0vR80peXX7HWjEPs08jjMq2FIJRDq+5XEQBxMqURnU+VB1d0UCQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/dropdown@2.3.22-beta.2':
resolution: {integrity: sha512-EXbkOn7dc1ZAnf1ZkegWp+aMFQDHGKtNB90ouv+APAQ+Zude0newnKr4B2SMU/KzFVdwI0zqGOXKUD45MkFleg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.21-beta.2':
resolution: {integrity: sha512-5QLP6WrZsDVYqNA7duggxgYOCXvNfp3nMShbeq3ZQS7hwH/wmwCtoACasP3gbDHW+7xPNWZM8GT0jp0cGGCBvg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18'
react-dom: '>=18'
'@heroui/framer-utils@2.1.18-beta.2':
resolution: {integrity: sha512-0GFmdfufRabLom3KvFxu8oKcjzuuLlMkWQNw7x/NBnDE/t5bf40gzVDbBvZA7etSDKxvq/98WTUYHEEmrEKO3w==}
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.14-beta.2':
resolution: {integrity: sha512-Tf7iHh9jjefT31YOJtM0wSZmbJ61KyOpDQaDMf1f7arpF1ApDNigkCpJSYWSTTzZ0B1Sd2Poci1a0Rcd7QYU7Q==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/input-otp@2.1.21-beta.2':
resolution: {integrity: sha512-XITk8VRErrbat9gweVIFsPbAmKZfDRDXnDJ8hq/fR2dQfvdApaykDKzlCL15p0vIFvp2o/+1ScGfiAxGV0ppyg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18'
react-dom: '>=18'
'@heroui/input@2.4.22-beta.2':
resolution: {integrity: sha512-k4fo9zHIQuW9vnrQgBsuDczYkz4/g8i/Sn1NiWz1ybVe7F6rk/afsEildSh4I+nOxJ0fVRoWNJusL0kgBDwrbw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/kbd@2.2.18-beta.2':
resolution: {integrity: sha512-S3qhWJV6tkchg7pJr/Ou37eC+CyC7f2d6ZmgtHfZuoANHSR+MDZuAGekSlIgS2F9SLpUxDmyv0SPtjgjF/a8hQ==}
peerDependencies:
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/link@2.2.19-beta.2':
resolution: {integrity: sha512-/DeNq0EKpj1NyGD6RFJtz5WmxOQJV9WFXXge7Ito3OYgdJUf94ujMlF7p5YhXsVLkcZ4Zkeu/zHVSBTxa2TDNg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/listbox@2.3.21-beta.2':
resolution: {integrity: sha512-D9adixYFwTLzRco16YjHRWoymfpsUWu+el4hrIA+QJlld+V4fXt4aQ7XqReygbSgjaEhwcmC8gPnKNfTgd616g==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/menu@2.2.21-beta.2':
resolution: {integrity: sha512-8rjIh/5ZloRxpmswjsfXKikDsgknSTMFb/TvZwIVHOuR7TIPqNk2XN83m11EUFXd4YGf7ahjOD251VBFJC6gmg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/modal@2.2.19-beta.2':
resolution: {integrity: sha512-qAlmZFATOIwt6niotz8FQoDGWHexLcCpJi8OikESk48prVwUjMnUI4Pdizn6dS882nl1X9Q+A42j/9LO6182YA==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.20-beta.2':
resolution: {integrity: sha512-o7d3xDi1nIwXVD1ja1kICLrF/dY1usc6RtSWs3YHQJiELiB+t/hVUEZ1mv1L7wXa/n8JKqDY7ecdT7eq5Eg0Lw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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/number-input@2.0.12-beta.2':
resolution: {integrity: sha512-2mIwtyy/+OtRDY3AxyUXPFvJALbfBZrY66bYCxaxAnVgjTTD3s85R7lbO7jj+kPq07xOmo7eEK6BVqgtQf+yzQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/pagination@2.2.20-beta.2':
resolution: {integrity: sha512-mKmOJhB6al/WwiDn8MkpDQfDfPP5ET1rODnm9XE7yuK79Y84wypgaBIMrgXg/GmCh7Jbi0kMCd2P/I5AeGH5vA==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/popover@2.3.22-beta.2':
resolution: {integrity: sha512-L+WwBczzyTEy7mIJQ2rXJt5kzFkVMeU4iuuPN0zvwUdPfA54OsSAJ6x+wcLp/jAYRqhikmlz58zGw4ZjI4pcXw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.18-beta.2':
resolution: {integrity: sha512-aYOsn4d3j1RuRZHu3R/K3XQY/7LtmXUk61QDA17lchCsG/5q1sx3fJGXmTnwciMIZWk4gJx8IHuT7jq+QzM0dw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/radio@2.3.21-beta.2':
resolution: {integrity: sha512-n8FiFiUoMHNSReWSaOrhJ9r5gUd7nQLdlIVDF2aw2Ots/DHNbJzjNewPFqHZfvc0HZm0AABz9bM1bBANF3nsIg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/react-rsc-utils@2.1.9-beta.2':
resolution: {integrity: sha512-TuZGdd/EoZc3aM6Lbo5O6bbZf3yBhNrGknQyyMyqP84FFN0kIXdLhPl9j08Ua34vsLrbEx4wikzZx6jVPVAn8g==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/react-utils@2.1.12-beta.2':
resolution: {integrity: sha512-CYrtDVf3qH78ADSpLH1IUN8fpK9HgzWHzJi+SGeOxyt7VhiRbQycF4bErDYdZaJtTjZn9vsI3h1Mi+HUQHBn4w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/react@2.8.0-beta.10':
resolution: {integrity: sha512-yGlAdxXYSMMzSsuRRKvB6fMxeeqjH1KPAgpqUFO2B7/uuZeVTEWKeA9PyDH4w9pDmsizULBz2nvpiZ7Uw4cEkA==}
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.17-beta.2':
resolution: {integrity: sha512-93sGhATmpQB1nNhv6rSwoFdZgTHzj1Q5Q0ef3R3+QMiF+KS4znVry3ieeJ8K5YVEfTmJmcSjbSAEODJkhU/E6w==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.15-beta.2':
resolution: {integrity: sha512-EkxfvwxqWYFa2DZpdfd9+SQr2IwrgGHKX1IXF5YUtqoXHM71xZtIKyvUfs/HgCvkVkcrXUOMVbrFcUYJ8W73yQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/select@2.4.22-beta.2':
resolution: {integrity: sha512-aGrZg9TY6RzGH9w1ubT7UGGGSdCFG0eY72YYLqbigAAWZVwOqhjViU+Miowu/sc5/Wc6o2LHeZfS2MGmh8qSTw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.10-beta.2':
resolution: {integrity: sha512-vburW3cLQqIarx4QK8iInl7aqFJTc5nCRxok+ywkjqBzbj/xeUXKJHbF7R8PyI8r3urGs3qIofi2mYk83eJVXw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/shared-utils@2.1.10-beta.4':
resolution: {integrity: sha512-KlP/qfIS0gzLUdCkIs8/JNt1qtEDnTgqyaTOp6159pjKowJxlqOjmLVxGCK1Y9Fk+noNnJ+9UtD5pShPQNbKDw==}
'@heroui/skeleton@2.2.14-beta.2':
resolution: {integrity: sha512-rSD5Dlv0agvl2UKanik+iake0vzZV9U+vEqwewG9nzMjtN0BNUZBkxluFQuezWIrAQYUp+0Qh72uKNLy+Rx63w==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/slider@2.4.19-beta.2':
resolution: {integrity: sha512-V6mBDS43VvEjx91FBxMjmIvS+IpO+42enkuKJno7s7xcsOfbf/gm3+JDLh0em485Ge5OcPHpHAwcLj97B77dyw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/snippet@2.2.23-beta.2':
resolution: {integrity: sha512-RTcRFGvhixVMr/cs4jrWPkjgBTVYfqQ3LSOI4c+XGoATkHMXLPCNOP1u2skSadXDqWPoMdHp9RdItqB+xLRMZQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.17-beta.2':
resolution: {integrity: sha512-xA3Lgl8yitp1eptl82jOx87p/yA19De4BYXJAy+yUwOrSYwVKmS/7tx7kCMo6n+cebRLVcb7zwiHeR9PAsbNIg==}
peerDependencies:
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/spinner@2.2.19-beta.2':
resolution: {integrity: sha512-wJ0WfiESWdQBPAz1ONMn+Z3GvzCFSgDRyki+TDPjSQjL811A8CBJ/Wx+WfuuweFy1v3IvNzNh536dClZlxJ4nw==}
peerDependencies:
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/switch@2.2.20-beta.2':
resolution: {integrity: sha512-g2x9tFtBMZHcR3NI3mEiG2gf6n2PO/l5+7EHOpgtcXKKWIIxiUiebra443Kygn1BxSNetg0dPWGT4yXSqJL+Qg==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/system-rsc@2.3.16-beta.2':
resolution: {integrity: sha512-vTYwQK2w4lSCaveBgp2XNki/Qk4qi4TgxW99GXcQVFNiqHbnpAYulU1RqLZgtdk1p0o5G7In6mhJjax2s4h7qQ==}
peerDependencies:
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
'@heroui/system@2.4.18-beta.2':
resolution: {integrity: sha512-PKF0bHrx4CBhJ20qCVNfxuc3dfQInFBCSvK5ibLb+62CTB1npwcwcJ0nsnJJv0PHGd+6e8BMpUJlNN/lRiERDg==}
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.21-beta.2':
resolution: {integrity: sha512-Sqim7VxBTA0rI09QLnt4Li63TYbEWceaLQfoBxWWoFDWtivuAv+WCYj+baExGckl+ag1pOQhFg0jv1DTwWvkZQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.0'
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/tabs@2.2.19-beta.2':
resolution: {integrity: sha512-I/ZG/VfBkDt+c6H5FEVn4N8GGJc+ExTVZZhtYBfePwVjc0aCH3YpZ8toVvrinN6wof7kWx2D929/zMdI9J0yoQ==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.18-beta.2':
resolution: {integrity: sha512-gMAsElhNF4z8ZPl6dEea3yg55UcYAh4gmtAP9FhO3h1uhzw84T99lFkVoO7yloTalj+xNEoIlyfBb35N8DC5pA==}
peerDependencies:
tailwindcss: '>=4.0.0'
'@heroui/toast@2.0.12-beta.2':
resolution: {integrity: sha512-ZeaGAYv0QhpMG9WIikeHiA+0z2R4VOYgzBGCDqn5J5AzfdH7BPYJaldZk8zUV92TrA8f8NEuxeuw4vHg1yfCPw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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/tooltip@2.2.19-beta.2':
resolution: {integrity: sha512-VJUh/6IXU8hN3LOSnbw2fwxcyw3VBXqavCgXvZJZ66NrQTpBJn25pcLMbY4X80nleJX6kbfD62sz8UUMLPCbFw==}
peerDependencies:
'@heroui/system': '>=2.4.18-beta.0'
'@heroui/theme': '>=2.4.18-beta.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.14-beta.2':
resolution: {integrity: sha512-JgxqhYfk+MLr3MTAb/qAiTz3cXTG2ikrCyWAwZTkXqHUjbtOeFV2fJI46rIFiZ61IMYn7t0nkTlQ/PZKiNfOng==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-button@2.2.16-beta.2':
resolution: {integrity: sha512-FlCuZF7DQAnfNtxulu3aY07/4FbWIJL/ZX/iw95rk4g7DUNnLbYPnYlThEg9cExfvk1k+VUL2mm+lw9iJ+8H3w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-link@2.2.17-beta.2':
resolution: {integrity: sha512-4MvN0H8aYGyE6RKF9X+uWxgOTCEg2gEaY7Sk7N61jfT8xLQzHkKgg8WoOk6F4/NiFKEoILi68UxD8+fa7y+INA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-modal-overlay@2.2.15-beta.2':
resolution: {integrity: sha512-795MgzX1QsIZEoxLACnyvb3RBOmOovRfc3agpHmXL3OXY9y8wJK/iW9l0Ls41YF9fKJ4kSMX//VvLsz6hjfNug==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-multiselect@2.4.15-beta.2':
resolution: {integrity: sha512-d2RJepptG1LFRP1hden/Sv6IoJ74IH9yTkWcGZIlAfr5YE+AcT61EklLLqlLlIb+lRmuN4myj/ylSg5hceOJDw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
react-dom: '>=18 || >=19.0.0-rc.0'
'@heroui/use-aria-overlay@2.0.1-beta.4':
resolution: {integrity: sha512-hcXJG4jD5U7wUoZW5rkGQfexvC1DAd1kDrAu3Osz+XPbpPW2nVKDUioZaylpnJILKfmw4NC1hNIWXWfaLj62Cw==}
peerDependencies:
react: '>=18'
react-dom: '>=18'
'@heroui/use-callback-ref@2.1.8-beta.4':
resolution: {integrity: sha512-Elf7h9rM1oaptUorxvTi5a68k84BeA9DisRgbUF6Lnw9za4p2VQQ5KQ/uDb/I6h7i0kKwXTGg5HmKHtdev0V4A==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-clipboard@2.1.9-beta.4':
resolution: {integrity: sha512-mUgILqZtOm9kpcFFCgXoRQ3imv7e3nmcyWkd09xE1K7/gURuFXnMK77sHnS9qV6A2gnE5DwAOQGtlVRfGjOhNw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-data-scroll-overflow@2.2.11-beta.4':
resolution: {integrity: sha512-lqeBXDsp1lrXkkyuvUtgEIsUtuWN05zzRcb5fyX9sE4OTr+sWAHpoaoia3QPqhu4PtnSZ3radK8rHvGlfvI6wA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-disclosure@2.2.14-beta.2':
resolution: {integrity: sha512-B4cPqSv+nhuFmdKXfOYxaTKsfu23KvnRDhBEKIckwKQTPFgjgHswMA8Yd+jQm4PKbByW4Wkikc3eguHeQu6ncg==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-draggable@2.1.14-beta.2':
resolution: {integrity: sha512-7f3iwu51pxGrAnApBjOh/u6nOWsG3zEI2hbruNntP0K4zVFI5SX7HtF+AwelvQTUNEkga6Sr7BVtH10tYh57JA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-form-reset@2.0.0-beta.1':
resolution: {integrity: sha512-Di8809HG7ZTqJ+92MHlNgNT9n7VMWd0nT3Nq4lzlRv+l7Ku6U+doYGxKKej3wpdoEVrxKzH2juhj6SF1yUNWQQ==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-image@2.1.11-beta.2':
resolution: {integrity: sha512-zuBVsjU0VRkelIBC9BIYgoHKXyxgwTtZ+vtnL6RjmvBm9m7RDDJM5A2b5xyl9m78KF3T0ylIVScWiBTJzKqR1w==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-intersection-observer@2.2.14-beta.2':
resolution: {integrity: sha512-ZBqws//A0xYHC55v0LfsB21Svt7qi+uSgHdRPKD6yzl8fvE6vFy93FauHDAesREpSmK017y4Dsd60vxcr6thrg==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-is-mobile@2.2.11-beta.2':
resolution: {integrity: sha512-SY3DrkCIPM+mlYDDm+v/mummL8maP0EG9vvZtP/c6n7qIImshjRd/4Ik1KHtlYuxKO1xGqKm5N8Fmdy8IVLNYw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-is-mounted@2.1.8-beta.4':
resolution: {integrity: sha512-cx4axqJ1Fe0nQ7AkjWmJW7m+uwahLbbZDnMaeNf98uN822tAosDxuPRwdYlJJoul2W9vfdLG9tc1By6qoAETqg==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-measure@2.1.8-beta.4':
resolution: {integrity: sha512-joX8KNgOJ+dicYMWMagHYXdJyTxWSfTMzmsxMZx5Byx0SwfEqJb4xPDpU7oRNOkc1+2AcFPGTyxFQ+KCJGB5WA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-pagination@2.2.15-beta.2':
resolution: {integrity: sha512-kaP7JQi2Cno/AM3yavMtD0X87LYtNpica29PRRYBUSjf/Y6ncULP/fXX+wFUz90kvn3zcuIX1xHeOuoQMLE9fA==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-resize@2.1.8-beta.4':
resolution: {integrity: sha512-KHDK00TWS2qmRlgUawJGK0Rqcb+LV5FOfFnYkbCbNjrLCauURGcN5PJmvkUhixagw9EOdpWZmTP/dvdQ9XmvAw==}
peerDependencies:
react: '>=18 || >=19.0.0-rc.0'
'@heroui/use-safe-layout-effect@2.1.8-beta.4':
resolution: {integrity: sha512-B5plzjiecWz4Cd+HRwAH9NbuFS5258HCy3yKMsSeKqNmbH/zyXIQYZ+Yc/d8suSS+XvcWibxnAWLIa5pyHDHLw==}
peerDependencies: