-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
8117 lines (8117 loc) · 296 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "ai-medical-assistant",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ai-medical-assistant",
"version": "0.1.0",
"dependencies": {
"@nextui-org/react": "^2.3.5",
"framer-motion": "^11.1.7",
"next": "14.2.2",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@babel/runtime": {
"version": "7.24.4",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.4.tgz",
"integrity": "sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==",
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"license": "MIT",
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.10.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.57.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
"integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.18.2",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.2.tgz",
"integrity": "sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==",
"dependencies": {
"@formatjs/intl-localematcher": "0.5.4",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/fast-memoize": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz",
"integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-messageformat-parser": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.6.tgz",
"integrity": "sha512-etVau26po9+eewJKYoiBKP6743I1br0/Ie00Pb/S/PtmYfmjTcOn2YCh2yNkSZI12h6Rg+BOgQYborXk46BvkA==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.18.2",
"@formatjs/icu-skeleton-parser": "1.8.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.0.tgz",
"integrity": "sha512-QWLAYvM0n8hv7Nq5BEs4LKIjevpVpbGLAJgOaYzg9wABEoX1j0JO1q2/jVkO6CVlq0dbsxZCngS5aXbysYueqA==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.18.2",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.4.tgz",
"integrity": "sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.14",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
"integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.2",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
"integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@internationalized/date": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.5.2.tgz",
"integrity": "sha512-vo1yOMUt2hzp63IutEaTUxROdvQg1qlMRsbCvbay2AK2Gai7wIgCyK5weEX3nHkiLgo4qCXHijFNC/ILhlRpOQ==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/message": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.2.tgz",
"integrity": "sha512-MHAWsZWz8jf6jFPZqpTudcCM361YMtPIRu9CXkYmKjJ/0R3pQRScV5C0zS+Qi50O5UAm8ecKhkXx6mWDDcF6/g==",
"dependencies": {
"@swc/helpers": "^0.5.0",
"intl-messageformat": "^10.1.0"
}
},
"node_modules/@internationalized/number": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.5.1.tgz",
"integrity": "sha512-N0fPU/nz15SwR9IbfJ5xaS9Ss/O5h1sVXMZf43vc9mxEG48ovglvvzBjF53aHlq20uoR6c+88CrIXipU/LSzwg==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/string": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.2.1.tgz",
"integrity": "sha512-vWQOvRIauvFMzOO+h7QrdsJmtN1AXAFVcaLWP9AseRN2o7iHceZ6bIXhBD4teZl8i91A3gxKnWBlGgjCwU6MFQ==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"license": "ISC",
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
"license": "MIT",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"license": "MIT",
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
"integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.15",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@next/env": {
"version": "14.2.2",
"resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.2.tgz",
"integrity": "sha512-sk72qRfM1Q90XZWYRoJKu/UWlTgihrASiYw/scb15u+tyzcze3bOuJ/UV6TBOQEeUaxOkRqGeuGUdiiuxc5oqw==",
"license": "MIT"
},
"node_modules/@next/eslint-plugin-next": {
"version": "14.2.2",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.2.tgz",
"integrity": "sha512-q+Ec2648JtBpKiu/FSJm8HAsFXlNvioHeBCbTP12T1SGcHYwhqHULSfQgFkPgHDu3kzNp2Kem4J54bK4rPQ5SQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"glob": "10.3.10"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "14.2.2",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.2.tgz",
"integrity": "sha512-3iPgMhzbalizGwHNFUcGnDhFPSgVBHQ8aqSTAMxB5BvJG0oYrDf1WOJZlbXBgunOEj/8KMVbejEur/FpvFsgFQ==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@nextui-org/accordion": {
"version": "2.0.31",
"resolved": "https://registry.npmjs.org/@nextui-org/accordion/-/accordion-2.0.31.tgz",
"integrity": "sha512-xd0nFSrQL84RESpobfWn/4HBOZjGWLZ3ZcOpx/aVOtf2TCUacyoumkFedeRWB++FQMiaUGmsoL8Ly+ra73iNFg==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.18",
"@nextui-org/divider": "2.0.27",
"@nextui-org/framer-utils": "2.0.18",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-accordion": "2.0.3",
"@react-aria/button": "^3.9.3",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-stately/tree": "^3.7.6",
"@react-types/accordion": "3.0.0-alpha.19",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/aria-utils": {
"version": "2.0.18",
"resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.0.18.tgz",
"integrity": "sha512-9ZIZgWFU26csBnfAxsG5HEcz/nLmbeUusbi3kME3sm69iu5B0+A0WSABW+Ffk1Vhtyh73zJZRpA8baC673+5tQ==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.12",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/system": "2.1.2",
"@react-aria/utils": "^3.23.2",
"@react-stately/collections": "^3.10.5",
"@react-types/overlays": "^3.8.5",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/autocomplete": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/@nextui-org/autocomplete/-/autocomplete-2.0.15.tgz",
"integrity": "sha512-KagippdU9N/6y3p/3FWwc1+fcoEGDisreWIzDB91ltPxcYY9TSg1nn+Ru9E7X7KHnOw5BTfIHwxIgXxCKwfZ+w==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.18",
"@nextui-org/button": "2.0.30",
"@nextui-org/input": "2.1.20",
"@nextui-org/listbox": "2.1.19",
"@nextui-org/popover": "2.1.20",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/scroll-shadow": "2.1.16",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/spinner": "2.0.28",
"@nextui-org/use-aria-button": "2.0.7",
"@nextui-org/use-safe-layout-effect": "2.0.5",
"@react-aria/combobox": "^3.8.4",
"@react-aria/focus": "^3.16.2",
"@react-aria/i18n": "^3.10.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-aria/visually-hidden": "^3.8.10",
"@react-stately/combobox": "^3.8.2",
"@react-types/combobox": "^3.10.1",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/avatar": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@nextui-org/avatar/-/avatar-2.0.27.tgz",
"integrity": "sha512-rmEWhzg7bHOYWCvcFWBjex80aRtnLE7QyHWTHr9+KtOQRJRtv33Kxy5JfDcCQ6vKBz/ZPAWJ76ftUaba3yvXjQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-image": "2.0.5",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/badge": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@nextui-org/badge/-/badge-2.0.27.tgz",
"integrity": "sha512-7JH8X7F4FvsPjygToTId87/syh0ZPS6GK8z3zCZHu7zgA10FrwbCyQGuTpznF2GAnmtW3DxTWpemOOJD0dMJbQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/system-rsc": "2.1.1"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/breadcrumbs": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/breadcrumbs/-/breadcrumbs-2.0.7.tgz",
"integrity": "sha512-4xD3hUy5QFtYSZWxjY8Cprq4BpSPfqkR9RyVmG9q5MCeJ8zJQTZlEZ1VCZjnwx4Mtif4kDxAgEm/eBhn6dW7mA==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@react-aria/breadcrumbs": "^3.5.11",
"@react-aria/focus": "^3.16.2",
"@react-aria/utils": "^3.23.2",
"@react-types/breadcrumbs": "^3.7.3",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/button": {
"version": "2.0.30",
"resolved": "https://registry.npmjs.org/@nextui-org/button/-/button-2.0.30.tgz",
"integrity": "sha512-jp6DVlPXU1Ev1TM5/kk1SzWf+9xIx91W9Xvp/3h2zFs2qyacpThFWonXK13sXOTWz7ovOLbUbhpC73i61KChbQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/ripple": "2.0.27",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/spinner": "2.0.28",
"@nextui-org/use-aria-button": "2.0.7",
"@react-aria/button": "^3.9.3",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-types/button": "^3.9.2",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/calendar": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@nextui-org/calendar/-/calendar-2.0.3.tgz",
"integrity": "sha512-+g6VLwg7xKlA74Ixwn57FulSRLu+x465iFalQumTgdRogVE2e/FwZvQ7+Q1h6mWKaoxd9pSY6hx9MHWTpVtUDw==",
"dependencies": {
"@internationalized/date": "^3.5.2",
"@nextui-org/button": "2.0.30",
"@nextui-org/framer-utils": "2.0.18",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-button": "2.0.7",
"@react-aria/calendar": "3.5.1",
"@react-aria/focus": "^3.14.3",
"@react-aria/i18n": "^3.8.4",
"@react-aria/interactions": "^3.19.1",
"@react-aria/utils": "^3.21.1",
"@react-aria/visually-hidden": "^3.8.6",
"@react-stately/calendar": "3.4.1",
"@react-stately/utils": "^3.8.0",
"@react-types/button": "^3.9.0",
"@react-types/calendar": "3.4.1",
"@react-types/shared": "3.21.0",
"@types/lodash.debounce": "^4.0.7",
"lodash.debounce": "^4.0.8",
"scroll-into-view-if-needed": "3.0.10"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/calendar/node_modules/@react-types/shared": {
"version": "3.21.0",
"resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.21.0.tgz",
"integrity": "sha512-wJA2cUF8dP4LkuNUt9Vh2kkfiQb2NLnV2pPXxVnKJZ7d4x2/7VPccN+LYPnH8m0X3+rt50cxWuPKQmjxSsCFOg==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@nextui-org/card": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@nextui-org/card/-/card-2.0.27.tgz",
"integrity": "sha512-OC09BScD8TFUvP2294P+DkyM8MFTpDmO4PCAk9maexctgj9/fRwuIuzu9oysKicuOtbZFYhRd07cPLVI4D8qow==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/ripple": "2.0.27",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-button": "2.0.7",
"@react-aria/button": "^3.9.3",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/checkbox": {
"version": "2.0.29",
"resolved": "https://registry.npmjs.org/@nextui-org/checkbox/-/checkbox-2.0.29.tgz",
"integrity": "sha512-Ed1ahtrFoewt61TPi3aDFZAeA2+Dn+D4A798A2OPBPMHLe70xBPL84Vi35okeY3bzUdBwWQKLMGXbz9nM26sZA==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-callback-ref": "2.0.5",
"@nextui-org/use-safe-layout-effect": "2.0.5",
"@react-aria/checkbox": "^3.14.1",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-aria/visually-hidden": "^3.8.10",
"@react-stately/checkbox": "^3.6.3",
"@react-stately/toggle": "^3.7.2",
"@react-types/checkbox": "^3.7.1",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/chip": {
"version": "2.0.28",
"resolved": "https://registry.npmjs.org/@nextui-org/chip/-/chip-2.0.28.tgz",
"integrity": "sha512-oD28KZx+PuaWkHlizvMgOAxIkL9cblwun0IhqEztKcR2DMRVdH/4r8/Zdo6QQFDhXlUU0Ub5+WUOyHndwNj0pg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-types/checkbox": "^3.7.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/code": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@nextui-org/code/-/code-2.0.27.tgz",
"integrity": "sha512-gDK48LMNSgQIeUs5WZ53s/hRqDfTMuDdDNgQcmt0bRWMlUC2BTuBfQGzK4y9wbJA9mlWocia7ZDWRWyJrB4vjQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/system-rsc": "2.1.1"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/date-input": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@nextui-org/date-input/-/date-input-2.0.3.tgz",
"integrity": "sha512-7WMJGptHHl+P0LpKk3a7e/Dj86Np66RGLVzWWlFipe7hrg+wJCdkuWCyj6V9mNgH/sdkVKhfkGYT2MogNbOhdA==",
"dependencies": {
"@internationalized/date": "^3.5.2",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@react-aria/datepicker": "^3.9.3",
"@react-aria/i18n": "^3.8.4",
"@react-aria/utils": "^3.21.1",
"@react-stately/datepicker": "^3.9.2",
"@react-types/datepicker": "^3.7.2",
"@react-types/shared": "3.21.0"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/date-input/node_modules/@react-types/shared": {
"version": "3.21.0",
"resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.21.0.tgz",
"integrity": "sha512-wJA2cUF8dP4LkuNUt9Vh2kkfiQb2NLnV2pPXxVnKJZ7d4x2/7VPccN+LYPnH8m0X3+rt50cxWuPKQmjxSsCFOg==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@nextui-org/date-picker": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/date-picker/-/date-picker-2.0.6.tgz",
"integrity": "sha512-/8xa9mtsVC+5cvuorPgT/u8h67XACDuqGFrNQtsttW8AMdgZ+3/zJuOyL3lELmpFnCOKaIJQGym3Ep6yIQFPuw==",
"dependencies": {
"@internationalized/date": "^3.5.2",
"@nextui-org/button": "2.0.30",
"@nextui-org/calendar": "2.0.3",
"@nextui-org/date-input": "2.0.3",
"@nextui-org/popover": "2.1.20",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@react-aria/datepicker": "^3.9.3",
"@react-aria/i18n": "^3.8.4",
"@react-aria/utils": "^3.21.1",
"@react-stately/datepicker": "^3.9.2",
"@react-stately/overlays": "^3.6.3",
"@react-stately/utils": "^3.8.0",
"@react-types/datepicker": "^3.7.2",
"@react-types/shared": "3.21.0"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/date-picker/node_modules/@react-types/shared": {
"version": "3.21.0",
"resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.21.0.tgz",
"integrity": "sha512-wJA2cUF8dP4LkuNUt9Vh2kkfiQb2NLnV2pPXxVnKJZ7d4x2/7VPccN+LYPnH8m0X3+rt50cxWuPKQmjxSsCFOg==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@nextui-org/divider": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@nextui-org/divider/-/divider-2.0.27.tgz",
"integrity": "sha512-530oEHonzaxKxspoaKnBFJ4InGqXv2FgOYzEPAMWoMmLb4/zp7e5lRipFKqRsN+zdwIkRNH6c0VJmHfyWI+bUg==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.12",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/system-rsc": "2.1.1",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/dropdown": {
"version": "2.1.22",
"resolved": "https://registry.npmjs.org/@nextui-org/dropdown/-/dropdown-2.1.22.tgz",
"integrity": "sha512-cnjZvnzm8De6UgedsigiQiF/7OvJq3G3j8pgVEJSXFYfbSkHxGNfn8abYndhe5LCS3ORW+1gZzWcmX3d5ltDtA==",
"dependencies": {
"@nextui-org/menu": "2.0.21",
"@nextui-org/popover": "2.1.20",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@react-aria/focus": "^3.16.2",
"@react-aria/menu": "^3.13.1",
"@react-aria/utils": "^3.23.2",
"@react-stately/menu": "^3.6.1",
"@react-types/menu": "^3.9.7"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/framer-utils": {
"version": "2.0.18",
"resolved": "https://registry.npmjs.org/@nextui-org/framer-utils/-/framer-utils-2.0.18.tgz",
"integrity": "sha512-RNI5/wKjgLNjEaVdLrXH8J/mkC7HKZ6S99JNFmviU1JiVgWzwHKtuci5ZPDntUFGg6G8kX6P7OCDh+d/pMJQAA==",
"dependencies": {
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/system": "2.1.2",
"@nextui-org/use-measure": "2.0.1"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/image": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@nextui-org/image/-/image-2.0.27.tgz",
"integrity": "sha512-EJa1bsZL8zsnTOVd+ZY04ldBz177CO/igz16rpRjo1KPMDX0fxlcjUbUopMfujIASytA68Yq4U1rxfO/xJthuQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-image": "2.0.5"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/input": {
"version": "2.1.20",
"resolved": "https://registry.npmjs.org/@nextui-org/input/-/input-2.1.20.tgz",
"integrity": "sha512-DHsuxPaGKabzNe7zASBRipxtzI1/X51AM5E4W7hprLZr4XXoItfFRrifqN6IDg0e3dc5voSAvkqWTa14fE6MhQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/textfield": "^3.14.3",
"@react-aria/utils": "^3.23.2",
"@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
"@react-types/textfield": "^3.9.1",
"react-textarea-autosize": "^8.5.3"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/kbd": {
"version": "2.0.28",
"resolved": "https://registry.npmjs.org/@nextui-org/kbd/-/kbd-2.0.28.tgz",
"integrity": "sha512-raH2Nw+wAHO54swTduLLs/Vdg2/mbMHEe0Y7ud6D13lPexWHVfxUzt7C39/9y8nKh0SpgOkcWV+EmQBydLAI7A==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/system-rsc": "2.1.1",
"@react-aria/utils": "^3.23.2"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/link": {
"version": "2.0.29",
"resolved": "https://registry.npmjs.org/@nextui-org/link/-/link-2.0.29.tgz",
"integrity": "sha512-OfOi7GLj3apimwAsAXTRZ8/B0tWvx/yXLZFtEe9676+tlLND1nfmWyBHdDIx5WMMiLc3Q1M3FkNrZvigeKQIbQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-link": "2.0.16",
"@react-aria/focus": "^3.16.2",
"@react-aria/link": "^3.6.5",
"@react-aria/utils": "^3.23.2",
"@react-types/link": "^3.5.3"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/listbox": {
"version": "2.1.19",
"resolved": "https://registry.npmjs.org/@nextui-org/listbox/-/listbox-2.1.19.tgz",
"integrity": "sha512-9qQs9KwdDHZ3VaSz4SkYcqn8onuSMCiZElta1vyqJGMWW6JYjJ4DtUOiyqwJdzZOQLIlxazT+GCWjjFUZwFZlQ==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.18",
"@nextui-org/divider": "2.0.27",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-is-mobile": "2.0.7",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/listbox": "^3.11.5",
"@react-aria/utils": "^3.23.2",
"@react-stately/list": "^3.10.3",
"@react-types/menu": "^3.9.7",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/menu": {
"version": "2.0.21",
"resolved": "https://registry.npmjs.org/@nextui-org/menu/-/menu-2.0.21.tgz",
"integrity": "sha512-23MxSt/LxsIasSgaujJ+H4Cj2x1KqVRSqmt8CEv91N6cRsgy/BGy7+xQrYilkbiNMSkSv1Z+srCU+9odanD86g==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.18",
"@nextui-org/divider": "2.0.27",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-menu": "2.0.1",
"@nextui-org/use-is-mobile": "2.0.7",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/menu": "^3.13.1",
"@react-aria/utils": "^3.23.2",
"@react-stately/menu": "^3.6.1",
"@react-stately/tree": "^3.7.6",
"@react-types/menu": "^3.9.7",
"@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/modal": {
"version": "2.0.33",
"resolved": "https://registry.npmjs.org/@nextui-org/modal/-/modal-2.0.33.tgz",
"integrity": "sha512-YCgWUMNiVMXAgd6SmU4yH7Ifrz+cmtlF2sK9DBL8kaIZtqAjuhPQj0uQnetvXpY649vomJWVdh9QYHNfD1Jv1Q==",
"dependencies": {
"@nextui-org/framer-utils": "2.0.18",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-button": "2.0.7",
"@nextui-org/use-aria-modal-overlay": "2.0.8",
"@nextui-org/use-disclosure": "2.0.7",
"@react-aria/dialog": "^3.5.12",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/overlays": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-stately/overlays": "^3.6.5",
"@react-types/overlays": "^3.8.5"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/navbar": {
"version": "2.0.30",
"resolved": "https://registry.npmjs.org/@nextui-org/navbar/-/navbar-2.0.30.tgz",
"integrity": "sha512-Iaw3BU0gdX14nBtZUUFRnsXodnCe1Sbsv9Xk7OI44p+KbOhySgfcjf4iFcXM0vfTOMlOkBSsUzR9bt+/69G5pw==",
"dependencies": {
"@nextui-org/framer-utils": "2.0.18",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-toggle-button": "2.0.7",
"@nextui-org/use-scroll-position": "2.0.5",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/overlays": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-stately/toggle": "^3.7.2",
"@react-stately/utils": "^3.9.1",
"react-remove-scroll": "^2.5.6"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/pagination": {
"version": "2.0.30",
"resolved": "https://registry.npmjs.org/@nextui-org/pagination/-/pagination-2.0.30.tgz",
"integrity": "sha512-tdlSbNTpqr+aww8h9+7d2Iu0ZX6GGtREeVAbf2+jr5j7VF/VVMVm2eaLJ4m1vw7VQIrEMwKNrcP8QCMMT0a+SQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-icons": "2.0.7",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-pagination": "2.0.6",
"@react-aria/focus": "^3.16.2",
"@react-aria/i18n": "^3.10.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"scroll-into-view-if-needed": "3.0.10"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/popover": {
"version": "2.1.20",
"resolved": "https://registry.npmjs.org/@nextui-org/popover/-/popover-2.1.20.tgz",
"integrity": "sha512-8nv3aQq8LNStJ0T5V7Ts/UnXc+ux/Q7abD5p5Y2SLvxur0DJ1IbC97yxBrKeydjzHiVlEz2Jra9d8YgUOLOYOg==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.18",
"@nextui-org/button": "2.0.30",
"@nextui-org/framer-utils": "2.0.18",
"@nextui-org/react-utils": "2.0.13",
"@nextui-org/shared-utils": "2.0.5",
"@nextui-org/use-aria-button": "2.0.7",
"@nextui-org/use-safe-layout-effect": "2.0.5",
"@react-aria/dialog": "^3.5.12",
"@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/overlays": "^3.21.1",
"@react-aria/utils": "^3.23.2",
"@react-stately/overlays": "^3.6.5",
"@react-types/button": "^3.9.2",
"@react-types/overlays": "^3.8.5",
"react-remove-scroll": "^2.5.6"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}