-
Notifications
You must be signed in to change notification settings - Fork 11
/
package-lock.json
5900 lines (5900 loc) · 217 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": "portfolio",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "portfolio",
"version": "0.1.0",
"dependencies": {
"@nextui-org/avatar": "^2.0.24",
"@nextui-org/button": "^2.0.24",
"@nextui-org/card": "^2.0.24",
"@nextui-org/chip": "^2.0.21",
"@nextui-org/input": "^2.1.16",
"@nextui-org/navbar": "^2.0.27",
"@nextui-org/system": "2.0.7",
"@nextui-org/tabs": "^2.0.24",
"@nextui-org/theme": "2.1.6",
"@nextui-org/tooltip": "^2.0.21",
"@vercel/analytics": "^1.1.1",
"framer-motion": "^10.16.4",
"motion": "^10.16.4",
"next": "^14.0.2-canary.25",
"react": "^18",
"react-dom": "^18",
"sonner": "^1.2.3"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"postcss": "^8",
"tailwindcss": "^3",
"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,
"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==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@babel/runtime": {
"version": "7.23.1",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz",
"integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@emotion/is-prop-valid": {
"version": "0.8.8",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
"optional": true,
"dependencies": {
"@emotion/memoize": "0.7.4"
}
},
"node_modules/@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
"optional": true
},
"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,
"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.9.1",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz",
"integrity": "sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz",
"integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==",
"dev": true,
"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.51.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.51.0.tgz",
"integrity": "sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.17.3",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.3.tgz",
"integrity": "sha512-2Q4hmKQ6CM30mRG/YMdSBW8LXf32BfuOb1FZgG+uVWPC/SQMoiVFz5JaeOukt96v6TZ4ddE+bHCmd611PW38QA==",
"dependencies": {
"@formatjs/intl-localematcher": "0.5.0",
"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.1",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.1.tgz",
"integrity": "sha512-ErnXyRdk8AlpGcKskKVYn23aAlWXhI1kt5ek2o3pJwVeMTcrosSESQ8baztdTtJjfQHlB4NBeocfRA5C6DKv2g==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.17.3",
"@formatjs/icu-skeleton-parser": "1.6.3",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.6.3.tgz",
"integrity": "sha512-Viggz4Pic7oC4uR8z2VroL8H9boiUTTB0TqEsiRb6DHZv7QEcg1BoVQZBkBdLmvxhBS7nwBNrTdbaiW8GOV58Q==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.17.3",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.0.tgz",
"integrity": "sha512-K1Xpg/8oyfCMxisJQa/fILoeoeyndcM0wcN8QiNG/uM5OAe1BcO1+2yd0gIboDI2tRJEsUi/sSBEYPbgkIdq4A==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.11",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz",
"integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.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,
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
"node_modules/@internationalized/date": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.5.0.tgz",
"integrity": "sha512-nw0Q+oRkizBWMioseI8+2TeUPEyopJVz5YxoYVzR0W1v+2YytiYah7s/ot35F149q/xAg4F1gT/6eTd+tsUpFQ==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/message": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.1.tgz",
"integrity": "sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw==",
"dependencies": {
"@swc/helpers": "^0.5.0",
"intl-messageformat": "^10.1.0"
}
},
"node_modules/@internationalized/number": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.3.0.tgz",
"integrity": "sha512-PuxgnKE5NJMOGKUcX1QROo8jq7sW7UWLrL5B6Rfe8BdWgU/be04cVvLyCeALD46vvbAv3d1mUvyHav/Q9a237g==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/string": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.1.1.tgz",
"integrity": "sha512-fvSr6YRoVPgONiVIUhgCmIAlifMVCeej/snPZVzbzRPxGpHl3o1GRe+d/qh92D8KhgOciruDUH8I5mjdfdjzfA==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
"integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
"integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
"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=="
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.19",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
"integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@motionone/animation": {
"version": "10.16.3",
"resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.16.3.tgz",
"integrity": "sha512-QUGWpLbMFLhyqKlngjZhjtxM8IqiJQjLK0DF+XOF6od9nhSvlaeEpOY/UMCRVcZn/9Tr2rZO22EkuCIjYdI74g==",
"dependencies": {
"@motionone/easing": "^10.16.3",
"@motionone/types": "^10.16.3",
"@motionone/utils": "^10.16.3",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/dom": {
"version": "10.16.4",
"resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.16.4.tgz",
"integrity": "sha512-HPHlVo/030qpRj9R8fgY50KTN4Ko30moWRTA3L3imrsRBmob93cTYmodln49HYFbQm01lFF7X523OkKY0DX6UA==",
"dependencies": {
"@motionone/animation": "^10.16.3",
"@motionone/generators": "^10.16.4",
"@motionone/types": "^10.16.3",
"@motionone/utils": "^10.16.3",
"hey-listen": "^1.0.8",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/easing": {
"version": "10.16.3",
"resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.16.3.tgz",
"integrity": "sha512-HWTMZbTmZojzwEuKT/xCdvoMPXjYSyQvuVM6jmM0yoGU6BWzsmYMeB4bn38UFf618fJCNtP9XeC/zxtKWfbr0w==",
"dependencies": {
"@motionone/utils": "^10.16.3",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/generators": {
"version": "10.16.4",
"resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.16.4.tgz",
"integrity": "sha512-geFZ3w0Rm0ZXXpctWsSf3REGywmLLujEjxPYpBR0j+ymYwof0xbV6S5kGqqsDKgyWKVWpUInqQYvQfL6fRbXeg==",
"dependencies": {
"@motionone/types": "^10.16.3",
"@motionone/utils": "^10.16.3",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/svelte": {
"version": "10.16.4",
"resolved": "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.4.tgz",
"integrity": "sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==",
"dependencies": {
"@motionone/dom": "^10.16.4",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/types": {
"version": "10.16.3",
"resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.16.3.tgz",
"integrity": "sha512-W4jkEGFifDq73DlaZs3HUfamV2t1wM35zN/zX7Q79LfZ2sc6C0R1baUHZmqc/K5F3vSw3PavgQ6HyHLd/MXcWg=="
},
"node_modules/@motionone/utils": {
"version": "10.16.3",
"resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.16.3.tgz",
"integrity": "sha512-WNWDksJIxQkaI9p9Z9z0+K27xdqISGNFy1SsWVGaiedTHq0iaT6iZujby8fT/ZnZxj1EOaxJtSfUPCFNU5CRoA==",
"dependencies": {
"@motionone/types": "^10.16.3",
"hey-listen": "^1.0.8",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/vue": {
"version": "10.16.4",
"resolved": "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.4.tgz",
"integrity": "sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==",
"dependencies": {
"@motionone/dom": "^10.16.4",
"tslib": "^2.3.1"
}
},
"node_modules/@next/env": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/env/-/env-14.0.2-canary.25.tgz",
"integrity": "sha512-PdZ4YCypW8XMjeHgsMBK4+IR9KbXpdOs3v8Oh8dHQPhIbOxrqmhPeBVzAuKINYeWX2fTFqaXFoasXbN4DilDwA=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "13.5.4",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.5.4.tgz",
"integrity": "sha512-vI94U+D7RNgX6XypSyjeFrOzxGlZyxOplU0dVE5norIfZGn/LDjJYPHdvdsR5vN1eRtl6PDAsOHmycFEOljK5A==",
"dev": true,
"dependencies": {
"glob": "7.1.7"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.2-canary.25.tgz",
"integrity": "sha512-4IN51BgL7OAH/sc1VHesym1Aswo5lRbIJVCvBrN07RuUvHNrCqKZEA3xYf5lHrayjtX81Y27eVxfTFGUQP+7Kw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.0.2-canary.25.tgz",
"integrity": "sha512-Nkd1heXr1+vOQPkDEkriqGia8VZN7426tvFXi8acgzr+0NSRTzAWra/zR4eySSjX1BCenf8LE/Oa6Ac4P5y1mQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.2-canary.25.tgz",
"integrity": "sha512-vlVp2ZxOYyCxcixHRUdC6mtmak0TepPwwVy16kQDwAcaUcfjKu7rRZ4Sx1QL0cLp7EghEaFTvoITkynp120ggg==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-musl": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.2-canary.25.tgz",
"integrity": "sha512-BF6JTp0EldjFADLzd4vMio1Sts9yLIPKMfSpX0vdBTa7rlzeQQANtYE+JYwIEJBUAW+xUCnzse7yH86s00jmvA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-gnu": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.2-canary.25.tgz",
"integrity": "sha512-BRaNdpzNvrpQiU47Q2EVDUbremHRyw6RG3BpdHDjZXWGtGkMaVi8nOBNYqo6dO38lDEkcavRdco/zwa8Yf/78Q==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-musl": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.2-canary.25.tgz",
"integrity": "sha512-l37JPi1OLl1AbYEK6E6w7wBS7HrebUlZjk1Q+icPSc4WycNhtfd+zgQvG/SLdeTYYkBjWJafRxsrO7rWQpfOeA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.2-canary.25.tgz",
"integrity": "sha512-yGqVuYfzRJZ7/fNZgkedP3Q/wFaB16rHh7Z6WvdIcioVqrVYhsviQ5az3Fmhc66idIPv+luDIW/P27K0CmKjMA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.2-canary.25.tgz",
"integrity": "sha512-H5tssuOajP0Lko7pnrmjBL03fDT5lZ1KNqUpFBbzXWGynvtCCHpg6afDjbmtu2nLhWveBdqN6g1Icb1cJ8BTHw==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "14.0.2-canary.25",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.2-canary.25.tgz",
"integrity": "sha512-OE12Cylrs+4CWF7RLumObnXGO8ovzaJty3+lntIMTx++haznedZRNJjnsSHOpQcrtFpsLW6HgPQsd14De/lKQQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@nextui-org/aria-utils": {
"version": "2.0.13",
"resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.0.13.tgz",
"integrity": "sha512-8GZBiLW81RYuvSI06iT08foX+Fw/Enmief//YEbHcDQjWmsgscrAb6VeXhjbRYBaHHe34foWh96wpBQLYCtQUg==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.10",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/system": "2.0.13",
"@react-aria/utils": "^3.21.1",
"@react-stately/collections": "^3.10.2",
"@react-types/overlays": "^3.8.3",
"@react-types/shared": "^3.21.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/aria-utils/node_modules/@nextui-org/system": {
"version": "2.0.13",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.13.tgz",
"integrity": "sha512-PAqXG6TMdMYD8zv7T8LySuZ2ElXaJ/KUHYUVraXHpjWxLGMQRoAYBD87rumIh+PvlGQDc2U6kXB45uo7GR+W0g==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.9",
"@react-aria/i18n": "^3.8.4",
"@react-aria/overlays": "^3.18.1",
"@react-aria/utils": "^3.21.1",
"@react-stately/utils": "^3.8.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/aria-utils/node_modules/@nextui-org/system-rsc": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.0.9.tgz",
"integrity": "sha512-LG+SOigRh9+WtEMGAEz2Os3AXsCkNE+Q+PA4gKfkPQ3OLH8mQuoBGwMe6uUNSvL0t+9VeLDwY7/+K9GjUAK2KA==",
"dependencies": {
"clsx": "^1.2.1"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"tailwind-variants": ">=0.1.13"
}
},
"node_modules/@nextui-org/avatar": {
"version": "2.0.24",
"resolved": "https://registry.npmjs.org/@nextui-org/avatar/-/avatar-2.0.24.tgz",
"integrity": "sha512-3QUn8v61iNvAYogUbEDVnhDjBK6WBxxFYLp95a0H52zN0p2LHXe+UNwdGZYFo5QNWx6CHGH3vh2AHlLLy3WFSQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/use-image": "2.0.4",
"@react-aria/focus": "^3.14.3",
"@react-aria/interactions": "^3.19.1",
"@react-aria/utils": "^3.21.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.24",
"resolved": "https://registry.npmjs.org/@nextui-org/button/-/button-2.0.24.tgz",
"integrity": "sha512-rkoS4bMbC11vaKsbrZBo+pdb4IUypRPHykU2OwpsGQz/6NTILbFIAojKnmytvM2BBAhLadGtU49rJj9Vn66vnQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/ripple": "2.0.24",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/spinner": "2.0.22",
"@nextui-org/use-aria-button": "2.0.6",
"@react-aria/button": "^3.8.4",
"@react-aria/focus": "^3.14.3",
"@react-aria/interactions": "^3.19.1",
"@react-aria/utils": "^3.21.1",
"@react-types/button": "^3.9.0",
"@react-types/shared": "^3.21.0"
},
"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/card": {
"version": "2.0.24",
"resolved": "https://registry.npmjs.org/@nextui-org/card/-/card-2.0.24.tgz",
"integrity": "sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==",
"dependencies": {
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/ripple": "2.0.24",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/use-aria-button": "2.0.6",
"@react-aria/button": "^3.8.4",
"@react-aria/focus": "^3.14.3",
"@react-aria/interactions": "^3.19.1",
"@react-aria/utils": "^3.21.1",
"@react-types/shared": "^3.21.0"
},
"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/chip": {
"version": "2.0.24",
"resolved": "https://registry.npmjs.org/@nextui-org/chip/-/chip-2.0.24.tgz",
"integrity": "sha512-OSktRuxOYRjQUCHPnZkHzXSJ+fwV/nK2SRabIvalKx2sgEKVXrUo1tPb75zxHFSN0174Og4k+Hpzc2bEXkIM9Q==",
"dependencies": {
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/shared-icons": "2.0.5",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/use-aria-press": "2.0.1",
"@react-aria/focus": "^3.14.3",
"@react-aria/interactions": "^3.19.1",
"@react-aria/utils": "^3.21.1",
"@react-types/checkbox": "^3.5.2"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/framer-transitions": {
"version": "2.0.13",
"resolved": "https://registry.npmjs.org/@nextui-org/framer-transitions/-/framer-transitions-2.0.13.tgz",
"integrity": "sha512-sATtqpW/usuMpL0H9aR/lw8tiF2itppThs7BOrA9DEC3wagOaz/uUuBreMLS36M0PmQeOWsq6plXxithInZBbQ==",
"dependencies": {
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/system": "2.0.13"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/framer-transitions/node_modules/@nextui-org/system": {
"version": "2.0.13",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.13.tgz",
"integrity": "sha512-PAqXG6TMdMYD8zv7T8LySuZ2ElXaJ/KUHYUVraXHpjWxLGMQRoAYBD87rumIh+PvlGQDc2U6kXB45uo7GR+W0g==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.9",
"@react-aria/i18n": "^3.8.4",
"@react-aria/overlays": "^3.18.1",
"@react-aria/utils": "^3.21.1",
"@react-stately/utils": "^3.8.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/framer-transitions/node_modules/@nextui-org/system-rsc": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.0.9.tgz",
"integrity": "sha512-LG+SOigRh9+WtEMGAEz2Os3AXsCkNE+Q+PA4gKfkPQ3OLH8mQuoBGwMe6uUNSvL0t+9VeLDwY7/+K9GjUAK2KA==",
"dependencies": {
"clsx": "^1.2.1"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"tailwind-variants": ">=0.1.13"
}
},
"node_modules/@nextui-org/input": {
"version": "2.1.16",
"resolved": "https://registry.npmjs.org/@nextui-org/input/-/input-2.1.16.tgz",
"integrity": "sha512-nUTlAvsXj5t88ycvQdICxf78/pko6Wznx2OomvYjb3E45eb77twQcWUDhydkJCWIh3b4AhGHSMM6GYxwWUgMDA==",
"dependencies": {
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/shared-icons": "2.0.6",
"@nextui-org/shared-utils": "2.0.4",
"@react-aria/focus": "^3.14.3",
"@react-aria/interactions": "^3.19.1",
"@react-aria/textfield": "^3.12.2",
"@react-aria/utils": "^3.21.1",
"@react-stately/utils": "^3.8.0",
"@react-types/shared": "^3.21.0",
"@react-types/textfield": "^3.8.1",
"react-textarea-autosize": "^8.5.2"
},
"peerDependencies": {
"@nextui-org/system": ">=2.0.0",
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/input/node_modules/@nextui-org/shared-icons": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/shared-icons/-/shared-icons-2.0.6.tgz",
"integrity": "sha512-Mw5utPJAclFaeKAZowznEgabI5gdhXrW0iMaMA18Y4zcZRTidAc0WFeGYUlX876NxYLPc1Zk4bZUhQvMe+7uWg==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/navbar": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@nextui-org/navbar/-/navbar-2.0.27.tgz",
"integrity": "sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==",
"dependencies": {
"@nextui-org/framer-transitions": "2.0.15",
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/use-aria-toggle-button": "2.0.6",
"@nextui-org/use-scroll-position": "2.0.4",
"@react-aria/focus": "^3.14.3",
"@react-aria/interactions": "^3.19.1",
"@react-aria/overlays": "^3.18.1",
"@react-aria/utils": "^3.21.1",
"@react-stately/toggle": "^3.6.3",
"@react-stately/utils": "^3.8.0",
"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/navbar/node_modules/@nextui-org/framer-transitions": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/@nextui-org/framer-transitions/-/framer-transitions-2.0.15.tgz",
"integrity": "sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==",
"dependencies": {
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/system": "2.0.15"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/navbar/node_modules/@nextui-org/framer-transitions/node_modules/@nextui-org/system": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.15.tgz",
"integrity": "sha512-WFDq+Rx6D+gmK1YGEG2RBARPK9EOYonQDt5Tq2tUchzOOqj3kXXcM5Z0F3fudM59eIncLa/tX/ApJSTLry+hsw==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.11",
"@react-aria/i18n": "^3.8.4",
"@react-aria/overlays": "^3.18.1",
"@react-aria/utils": "^3.21.1",
"@react-stately/utils": "^3.8.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/navbar/node_modules/@nextui-org/system-rsc": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.0.11.tgz",
"integrity": "sha512-1QqZ+GM7Ii0rsfSHXS6BBjzKOoLIWwb72nm4h4WgjlMXbRKLZcCQasRHVe5HMSBMvN0JUo7qyGExchfDFl/Ubw==",
"dependencies": {
"clsx": "^1.2.1"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"tailwind-variants": ">=0.1.13"
}
},
"node_modules/@nextui-org/react-rsc-utils": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.10.tgz",
"integrity": "sha512-LNePDEThUF9PAbJW4T8k7EgSfqwlvGku5fIqJ1IA9+OpVy5LqhrUQehjvgXe63N1RupC7Pt+XvaaxkGu9U2FiQ=="
},
"node_modules/@nextui-org/react-utils": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.10.tgz",
"integrity": "sha512-bcA+k7ZdcgcK+r/8nrCtbdgHo0SD6jicbazWIokknFwjb97JQ7ooaMwxnLt5E5sswCAv0XeLwybOmrgm7JA5TA==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.10",
"@nextui-org/shared-utils": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/ripple": {
"version": "2.0.24",
"resolved": "https://registry.npmjs.org/@nextui-org/ripple/-/ripple-2.0.24.tgz",
"integrity": "sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==",
"dependencies": {
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/shared-utils": "2.0.4"
},
"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/shared-icons": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nextui-org/shared-icons/-/shared-icons-2.0.5.tgz",
"integrity": "sha512-ItcvIAEEHoD09oQmL9KEyGGmNIh3nP6TrEiAFSTznyEmRAyK5sOIQbMf+47+auwYJJbXmwCdU2WldbQOcAEuqw==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/shared-utils": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.4.tgz",
"integrity": "sha512-Ms7A6UCvo/SZt/9Nmb7cZwHe9fZFw+EPsieTnC1vtpvDNCasxrTB0hj9VWFoYfWOaCzzqxl1AL9maIz/gMvckQ==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/spinner": {
"version": "2.0.22",
"resolved": "https://registry.npmjs.org/@nextui-org/spinner/-/spinner-2.0.22.tgz",
"integrity": "sha512-6gQv9ZEzAPiRiEDuiRe6XaZ0jOOibVqW2YZiG6+HRdNvJ5QxNODo2gqZoSG5Wfk5yBGE4L9RgVIQ6iImbwhR7Q==",
"dependencies": {
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/system-rsc": "2.0.9"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@nextui-org/spinner/node_modules/@nextui-org/system-rsc": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.0.9.tgz",
"integrity": "sha512-LG+SOigRh9+WtEMGAEz2Os3AXsCkNE+Q+PA4gKfkPQ3OLH8mQuoBGwMe6uUNSvL0t+9VeLDwY7/+K9GjUAK2KA==",
"dependencies": {
"clsx": "^1.2.1"
},
"peerDependencies": {
"@nextui-org/theme": ">=2.1.0",
"react": ">=18",
"tailwind-variants": ">=0.1.13"
}
},
"node_modules/@nextui-org/system": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.7.tgz",
"integrity": "sha512-aClgN+hvY5BcqYOrZjIQN4cfYV2esVsMPLPkvmzoGul87s+Lk3bBE0tZYQXgkqYRlpxk0sHZNk/dW6skvZQegA==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.4",
"@react-aria/i18n": "^3.8.1",
"@react-aria/overlays": "^3.16.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/system-rsc": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.0.4.tgz",
"integrity": "sha512-qC1AgyFsYizEXTXgrAYGe393FzwkcPmr96F35fKcXtqu9KcIXf4Eac0EpXqu3niYMtfQu1uN7WYGXSQABmoDDw==",
"dependencies": {
"clsx": "^1.2.1",
"tailwind-variants": "^0.1.14"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/tabs": {
"version": "2.0.24",
"resolved": "https://registry.npmjs.org/@nextui-org/tabs/-/tabs-2.0.24.tgz",
"integrity": "sha512-PYCkwwBMDC7DOSvegAxOGHJOqRVEggq/I54iLdIf6hYTal5KKtGbRtPpFT6V1TlFPiy2r695Rl5IEg0gQvL4sA==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.13",
"@nextui-org/framer-transitions": "2.0.13",
"@nextui-org/react-utils": "2.0.10",
"@nextui-org/shared-utils": "2.0.4",
"@nextui-org/use-is-mounted": "2.0.4",
"@nextui-org/use-update-effect": "2.0.4",
"@react-aria/focus": "^3.14.3",
"@react-aria/interactions": "^3.19.1",
"@react-aria/tabs": "^3.8.1",
"@react-aria/utils": "^3.21.1",
"@react-stately/tabs": "^3.6.1",
"@react-types/shared": "^3.21.0",
"@react-types/tabs": "^3.3.3",
"scroll-into-view-if-needed": "3.0.10"
},
"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/theme": {
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.1.6.tgz",
"integrity": "sha512-8QmH7SpZsSjbjaxkgZ8N6uUjQKOZjT0Vqi2VnPUejLoHGKgfgO+N48WsfXL7zBTYbfGmeOwpNL/68mztxGkwYQ==",
"dependencies": {
"@types/color": "^3.0.3",
"@types/flat": "^5.0.2",
"@types/lodash.foreach": "^4.5.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/lodash.mapkeys": "^4.6.7",
"@types/lodash.omit": "^4.5.7",
"color": "^4.2.3",
"color2k": "^2.0.2",
"deepmerge": "4.3.1",
"flat": "^5.0.2",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.kebabcase": "^4.1.1",
"lodash.mapkeys": "^4.6.0",
"lodash.omit": "^4.5.0",
"tailwind-variants": "^0.1.14",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": "*"
}
},
"node_modules/@nextui-org/tooltip": {
"version": "2.0.21",
"resolved": "https://registry.npmjs.org/@nextui-org/tooltip/-/tooltip-2.0.21.tgz",
"integrity": "sha512-aW7wsYqvZR92KNwBwl/X1C6NZ0PffRietlrBlCY9R8KG6nomw2az8R7gaiPkBse4ifBzvm/SUFzo0QGRqv2i7Q==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.7",
"@nextui-org/framer-transitions": "2.0.7",
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.7",
"@nextui-org/theme": "2.1.6",
"@react-aria/interactions": "^3.17.0",
"@react-aria/overlays": "^3.16.0",
"@react-aria/tooltip": "^3.6.1",
"@react-aria/utils": "^3.19.0",
"@react-stately/tooltip": "^3.4.3",
"@react-types/overlays": "^3.8.1",
"@react-types/tooltip": "^3.4.3"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/tooltip/node_modules/@nextui-org/aria-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.0.7.tgz",
"integrity": "sha512-Z5/JvPNyn96nW6qBMbGfPeplV9BXCKOPMFimVCVlqi6foeh2X4LqGifXpDa0szZli+Y1BFhGgIbpBAaQTzLS1A==",
"dependencies": {
"@nextui-org/system": "2.0.7",
"@react-aria/utils": "^3.19.0",
"@react-stately/collections": "^3.10.0",
"@react-types/overlays": "^3.8.1",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/tooltip/node_modules/@nextui-org/framer-transitions": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/framer-transitions/-/framer-transitions-2.0.7.tgz",
"integrity": "sha512-RfumPX06wLlW3DF+TAXvmE+/uTEZAPiYE7vv+qxoxRNW9ELpCylAKPmT9M+HL1HsiZjtgDOK6JrvWfcJnj/QRQ==",