-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
15123 lines (15123 loc) · 605 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": "next-app-template",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "next-app-template",
"version": "0.0.1",
"dependencies": {
"@nextui-org/button": "2.0.9",
"@nextui-org/code": "2.0.7",
"@nextui-org/input": "2.0.10",
"@nextui-org/kbd": "2.0.8",
"@nextui-org/link": "2.0.9",
"@nextui-org/navbar": "2.0.9",
"@nextui-org/react": "^2.1.8",
"@nextui-org/snippet": "2.0.10",
"@nextui-org/switch": "2.0.9",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.4",
"@react-aria/ssr": "^3.7.1",
"@react-aria/visually-hidden": "^3.8.3",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"clsx": "^2.0.0",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"framer-motion": "^10.16.2",
"intl-messageformat": "^10.1.0",
"next": "13.4.13",
"next-themes": "^0.2.1",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-variants": "^0.1.13",
"tailwindcss": "3.3.3",
"typescript": "5.0.4"
}
},
"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==",
"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.22.6",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz",
"integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"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==",
"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.6.2",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
"integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz",
"integrity": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==",
"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.41.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz",
"integrity": "sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.17.0",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.0.tgz",
"integrity": "sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==",
"dependencies": {
"@formatjs/intl-localematcher": "0.4.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.6.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.6.0.tgz",
"integrity": "sha512-yT6at0qc0DANw9qM/TU8RZaCtfDXtj4pZM/IC2WnVU80yAcliS3KVDiuUt4jSQAeFL9JS5bc2hARnFmjPdA6qw==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.17.0",
"@formatjs/icu-skeleton-parser": "1.6.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.6.0.tgz",
"integrity": "sha512-eMmxNpoX/J1IPUjPGSZwo0Wh+7CEvdEMddP2Jxg1gQJXfGfht/FdW2D5XDFj3VMbOTUQlDIdZJY7uC6O6gjPoA==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.17.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.4.0.tgz",
"integrity": "sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.10",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
"integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
"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==",
"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=="
},
"node_modules/@internationalized/date": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.4.0.tgz",
"integrity": "sha512-QUDSGCsvrEVITVf+kv9VSAraAmCgjQmU5CiXtesUBBhBe374NmnEIIaOFBZ72t29dfGMBP0zF+v6toVnbcc6jg==",
"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.2.1",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.2.1.tgz",
"integrity": "sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==",
"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.0",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
"integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
"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.18",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
"integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
"dependencies": {
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/sourcemap-codec": "1.4.14"
}
},
"node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.14",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"node_modules/@next/env": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.13.tgz",
"integrity": "sha512-fwz2QgVg08v7ZL7KmbQBLF2PubR/6zQdKBgmHEl3BCyWTEDsAQEijjw2gbFhI1tcKfLdOOJUXntz5vZ4S0Polg=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.4.tgz",
"integrity": "sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==",
"dependencies": {
"glob": "7.1.7"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.13.tgz",
"integrity": "sha512-ZptVhHjzUuivnXMNCJ6lER33HN7lC+rZ01z+PM10Ows21NHFYMvGhi5iXkGtBDk6VmtzsbqnAjnx4Oz5um0FjA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.13.tgz",
"integrity": "sha512-t9nTiWCLApw8W4G1kqJyYP7y6/7lyal3PftmRturIxAIBlZss9wrtVN8nci50StDHmIlIDxfguYIEGVr9DbFTg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.13.tgz",
"integrity": "sha512-xEHUqC8eqR5DHe8SOmMnDU1K3ggrJ28uIKltrQAwqFSSSmzjnN/XMocZkcVhuncuxYrpbri0iMQstRyRVdQVWg==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-musl": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.13.tgz",
"integrity": "sha512-sNf3MnLAm8rquSSAoeD9nVcdaDeRYOeey4stOWOyWIgbBDtP+C93amSgH/LPTDoUV7gNiU6f+ghepTjTjRgIUQ==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-gnu": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.13.tgz",
"integrity": "sha512-WhcRaJJSHyx9OWmKjjz+OWHumiPZWRqmM/09Bt7Up4UqUJFFhGExeztR4trtv3rflvULatu9IH/nTV8fUUgaMA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-musl": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.13.tgz",
"integrity": "sha512-+Y4LLhOWWZQIDKVwr2R17lq2KSN0F1c30QVgGIWfnjjHpH8nrIWHEndhqYU+iFuW8It78CiJjQKTw4f51HD7jA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.13.tgz",
"integrity": "sha512-rWurdOR20uxjfqd1X9vDAgv0Jb26KjyL8akF9CBeFqX8rVaBAnW/Wf6A2gYEwyYY4Bai3T7p1kro6DFrsvBAAw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.13.tgz",
"integrity": "sha512-E8bSPwRuY5ibJ3CzLQmJEt8qaWrPYuUTwnrwygPUEWoLzD5YRx9SD37oXRdU81TgGwDzCxpl7z5Nqlfk50xAog==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "13.4.13",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.13.tgz",
"integrity": "sha512-4KlyC6jWRubPnppgfYsNTPeWfGCxtWLh5vaOAW/kdzAk9widqho8Qb5S4K2vHmal1tsURi7Onk2MMCV1phvyqA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@nextui-org/accordion": {
"version": "2.0.18",
"resolved": "https://registry.npmjs.org/@nextui-org/accordion/-/accordion-2.0.18.tgz",
"integrity": "sha512-uLzXnxx3YXP67jg2oH/NnT5qbsBZZTuJlZib++flbQZGrH+Z0gfM3MuVsw4cKSi/SFbFvUS3MZHao+Xa+eLAGQ==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.6",
"@nextui-org/divider": "2.0.15",
"@nextui-org/framer-transitions": "2.0.6",
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/shared-icons": "2.0.3",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.6",
"@nextui-org/theme": "2.1.4",
"@nextui-org/use-aria-accordion-item": "2.0.3",
"@react-aria/accordion": "3.0.0-alpha.20",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/tree": "^3.7.1",
"@react-types/accordion": "3.0.0-alpha.15",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/accordion/node_modules/@nextui-org/aria-utils": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.0.6.tgz",
"integrity": "sha512-BD+AvHIX1PU73d0dZBdgycivmA5GVHLOIGbusjZCCUffdIA14EqLQ3KC48Lzpq3T8SmWmN7PhczbmKjENsQDPQ==",
"dependencies": {
"@nextui-org/system": "2.0.6",
"@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/accordion/node_modules/@nextui-org/framer-transitions": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/framer-transitions/-/framer-transitions-2.0.6.tgz",
"integrity": "sha512-0Rqwtk2cy3EkvwQDI9lWt2yfQsqKfRcFdEvP/hA6WJhUZHuTtno2vPCdtaedL3DavUt6/X0SdeFBQnsuR6LkNA==",
"dependencies": {
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.6"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/accordion/node_modules/@nextui-org/react-rsc-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.7.tgz",
"integrity": "sha512-BfbrN0/kh7qHoZYAh0bkV1w04Wngm+7K+soTZR4C3eSIxMMeu179CDELW+VCIBwdat4iSQaaJkHZVm8brtueNA=="
},
"node_modules/@nextui-org/accordion/node_modules/@nextui-org/react-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.7.tgz",
"integrity": "sha512-dN4vSf3h4BVIN6CVqaSCn2OUyDmGVWORgOsfA1k0z/r1XBwuxlfQIEnj8GTwbltnGkFrgj7PJ2RsuVzUs8Vt3g==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/accordion/node_modules/@nextui-org/shared-icons": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@nextui-org/shared-icons/-/shared-icons-2.0.3.tgz",
"integrity": "sha512-2ODlzPWW+iYM7Uf7XDkz7GlJ+dzsFo6cBHH9hbbZEOx2v7/wB8x3VvrZcQ4SASewSb18a/wzxP8MJFnIUCOCrQ==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/accordion/node_modules/@nextui-org/system": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.6.tgz",
"integrity": "sha512-uXLcatb0B2uiw+a4yb0Ab9kmTmvB3Rzo/cdkoM8ncaXMTRumproSVhjY0OM4nxdXvmC3oYEmKd0d3f+j7T7Vsg==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.3",
"@react-aria/i18n": "^3.8.1",
"@react-aria/overlays": "^3.16.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/accordion/node_modules/@nextui-org/theme": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.1.4.tgz",
"integrity": "sha512-BDOP+/kA00yX+nDMWCP+YupdO841AO8OpT7fEE34XGVhkojc8LScVJfbAPkOIKs5fTPnt2uYsHCrijMkx/L44g==",
"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.13",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": "*"
}
},
"node_modules/@nextui-org/aria-utils": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.0.5.tgz",
"integrity": "sha512-pbfSGjQeGQoWMVHE9iCOPq2MSLPa2AIZwazdBO1QKyzfXGRCoJ6FM1zX+EvBrax/8+6DtZb9bZ6UzICr5ZLvVw==",
"dependencies": {
"@nextui-org/system": "2.0.5",
"@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/avatar": {
"version": "2.0.16",
"resolved": "https://registry.npmjs.org/@nextui-org/avatar/-/avatar-2.0.16.tgz",
"integrity": "sha512-O+l7kUHHVqOP5kImUtudgCmpk+SaYKGgqXE53SYH/ujnTDToFcbF1KxoYw5H5n0ZExPXMUE9XFQ2sc3hnjCxGQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.6",
"@nextui-org/theme": "2.1.4",
"@nextui-org/use-image": "2.0.2",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/avatar/node_modules/@nextui-org/react-rsc-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.7.tgz",
"integrity": "sha512-BfbrN0/kh7qHoZYAh0bkV1w04Wngm+7K+soTZR4C3eSIxMMeu179CDELW+VCIBwdat4iSQaaJkHZVm8brtueNA=="
},
"node_modules/@nextui-org/avatar/node_modules/@nextui-org/react-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.7.tgz",
"integrity": "sha512-dN4vSf3h4BVIN6CVqaSCn2OUyDmGVWORgOsfA1k0z/r1XBwuxlfQIEnj8GTwbltnGkFrgj7PJ2RsuVzUs8Vt3g==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/avatar/node_modules/@nextui-org/system": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.6.tgz",
"integrity": "sha512-uXLcatb0B2uiw+a4yb0Ab9kmTmvB3Rzo/cdkoM8ncaXMTRumproSVhjY0OM4nxdXvmC3oYEmKd0d3f+j7T7Vsg==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.3",
"@react-aria/i18n": "^3.8.1",
"@react-aria/overlays": "^3.16.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/avatar/node_modules/@nextui-org/theme": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.1.4.tgz",
"integrity": "sha512-BDOP+/kA00yX+nDMWCP+YupdO841AO8OpT7fEE34XGVhkojc8LScVJfbAPkOIKs5fTPnt2uYsHCrijMkx/L44g==",
"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.13",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": "*"
}
},
"node_modules/@nextui-org/badge": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/@nextui-org/badge/-/badge-2.0.14.tgz",
"integrity": "sha512-4pdH2ijh0qrMyA1uJWGg8rCAo0kTxHtxLcRiLhl2utvKydMQHeXLtJm2FXZxGpzthkqk8D01AgKueRrvO9GP+g==",
"dependencies": {
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system-rsc": "2.0.3",
"@nextui-org/theme": "2.1.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/badge/node_modules/@nextui-org/react-rsc-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.7.tgz",
"integrity": "sha512-BfbrN0/kh7qHoZYAh0bkV1w04Wngm+7K+soTZR4C3eSIxMMeu179CDELW+VCIBwdat4iSQaaJkHZVm8brtueNA=="
},
"node_modules/@nextui-org/badge/node_modules/@nextui-org/react-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.7.tgz",
"integrity": "sha512-dN4vSf3h4BVIN6CVqaSCn2OUyDmGVWORgOsfA1k0z/r1XBwuxlfQIEnj8GTwbltnGkFrgj7PJ2RsuVzUs8Vt3g==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/badge/node_modules/@nextui-org/theme": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.1.4.tgz",
"integrity": "sha512-BDOP+/kA00yX+nDMWCP+YupdO841AO8OpT7fEE34XGVhkojc8LScVJfbAPkOIKs5fTPnt2uYsHCrijMkx/L44g==",
"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.13",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": "*"
}
},
"node_modules/@nextui-org/button": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@nextui-org/button/-/button-2.0.9.tgz",
"integrity": "sha512-vR7uviS8YuMXFpxvkzLv/CPNMXHZfMLtdndN1Nt662TF1gHkcE8fvaeT5ZPLZTtQ2SEYbohjFtzF9WOMHHLcXg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.5",
"@nextui-org/ripple": "2.0.9",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/spinner": "2.0.7",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.4",
"@nextui-org/use-aria-button": "2.0.3",
"@react-aria/button": "^3.8.1",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/button": "^3.7.4",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/card": {
"version": "2.0.16",
"resolved": "https://registry.npmjs.org/@nextui-org/card/-/card-2.0.16.tgz",
"integrity": "sha512-M7Rs/ZNNZTasbFkPDKYdqw+at0Yjj5Sa/JiVHZsMNZsA/EVENrUmpDMchbd3IxV7UuiiiDdES3heGErHRQFoAg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/ripple": "2.0.16",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.6",
"@nextui-org/theme": "2.1.4",
"@nextui-org/use-aria-button": "2.0.3",
"@react-aria/button": "^3.8.1",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/card/node_modules/@nextui-org/react-rsc-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.7.tgz",
"integrity": "sha512-BfbrN0/kh7qHoZYAh0bkV1w04Wngm+7K+soTZR4C3eSIxMMeu179CDELW+VCIBwdat4iSQaaJkHZVm8brtueNA=="
},
"node_modules/@nextui-org/card/node_modules/@nextui-org/react-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.7.tgz",
"integrity": "sha512-dN4vSf3h4BVIN6CVqaSCn2OUyDmGVWORgOsfA1k0z/r1XBwuxlfQIEnj8GTwbltnGkFrgj7PJ2RsuVzUs8Vt3g==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/card/node_modules/@nextui-org/ripple": {
"version": "2.0.16",
"resolved": "https://registry.npmjs.org/@nextui-org/ripple/-/ripple-2.0.16.tgz",
"integrity": "sha512-iAXtDZ7ge+w7yM3FOPmyPMOJC7WDmbr+blP6jEODXPmtH+lqbATeGVmbvIqiRTETkhO8dRxB3aZAW9L3sQvirA==",
"dependencies": {
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.6",
"@nextui-org/theme": "2.1.4"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/card/node_modules/@nextui-org/system": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.6.tgz",
"integrity": "sha512-uXLcatb0B2uiw+a4yb0Ab9kmTmvB3Rzo/cdkoM8ncaXMTRumproSVhjY0OM4nxdXvmC3oYEmKd0d3f+j7T7Vsg==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.3",
"@react-aria/i18n": "^3.8.1",
"@react-aria/overlays": "^3.16.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/card/node_modules/@nextui-org/theme": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.1.4.tgz",
"integrity": "sha512-BDOP+/kA00yX+nDMWCP+YupdO841AO8OpT7fEE34XGVhkojc8LScVJfbAPkOIKs5fTPnt2uYsHCrijMkx/L44g==",
"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.13",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": "*"
}
},
"node_modules/@nextui-org/checkbox": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@nextui-org/checkbox/-/checkbox-2.0.17.tgz",
"integrity": "sha512-18l8IgifPLtlP5CjOmru0Qqgpfg+1UoqPGnyITh8qtvsKuiUjj5tsMRjbO70XgkrlEgATbSQJZuZt+etGGwCww==",
"dependencies": {
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.6",
"@nextui-org/theme": "2.1.4",
"@react-aria/checkbox": "^3.10.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/checkbox": "^3.4.4",
"@react-stately/toggle": "^3.6.1",
"@react-types/checkbox": "^3.5.0",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/checkbox/node_modules/@nextui-org/react-rsc-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.7.tgz",
"integrity": "sha512-BfbrN0/kh7qHoZYAh0bkV1w04Wngm+7K+soTZR4C3eSIxMMeu179CDELW+VCIBwdat4iSQaaJkHZVm8brtueNA=="
},
"node_modules/@nextui-org/checkbox/node_modules/@nextui-org/react-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.7.tgz",
"integrity": "sha512-dN4vSf3h4BVIN6CVqaSCn2OUyDmGVWORgOsfA1k0z/r1XBwuxlfQIEnj8GTwbltnGkFrgj7PJ2RsuVzUs8Vt3g==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/checkbox/node_modules/@nextui-org/system": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.6.tgz",
"integrity": "sha512-uXLcatb0B2uiw+a4yb0Ab9kmTmvB3Rzo/cdkoM8ncaXMTRumproSVhjY0OM4nxdXvmC3oYEmKd0d3f+j7T7Vsg==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.3",
"@react-aria/i18n": "^3.8.1",
"@react-aria/overlays": "^3.16.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/checkbox/node_modules/@nextui-org/theme": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.1.4.tgz",
"integrity": "sha512-BDOP+/kA00yX+nDMWCP+YupdO841AO8OpT7fEE34XGVhkojc8LScVJfbAPkOIKs5fTPnt2uYsHCrijMkx/L44g==",
"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.13",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": "*"
}
},
"node_modules/@nextui-org/chip": {
"version": "2.0.16",
"resolved": "https://registry.npmjs.org/@nextui-org/chip/-/chip-2.0.16.tgz",
"integrity": "sha512-4m+N2HPaAsn+gc9KHVFlOoeYXeCSYHzLzZA2cxjh0R5UBJerfGQPs8VEGGCaAmlnxL0eZo3w/Kp0IatLe6XWqQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.7",
"@nextui-org/shared-icons": "2.0.3",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.6",
"@nextui-org/theme": "2.1.4",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/checkbox": "^3.5.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/chip/node_modules/@nextui-org/react-rsc-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.7.tgz",
"integrity": "sha512-BfbrN0/kh7qHoZYAh0bkV1w04Wngm+7K+soTZR4C3eSIxMMeu179CDELW+VCIBwdat4iSQaaJkHZVm8brtueNA=="
},
"node_modules/@nextui-org/chip/node_modules/@nextui-org/react-utils": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.7.tgz",
"integrity": "sha512-dN4vSf3h4BVIN6CVqaSCn2OUyDmGVWORgOsfA1k0z/r1XBwuxlfQIEnj8GTwbltnGkFrgj7PJ2RsuVzUs8Vt3g==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.7",
"@nextui-org/shared-utils": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/chip/node_modules/@nextui-org/shared-icons": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@nextui-org/shared-icons/-/shared-icons-2.0.3.tgz",
"integrity": "sha512-2ODlzPWW+iYM7Uf7XDkz7GlJ+dzsFo6cBHH9hbbZEOx2v7/wB8x3VvrZcQ4SASewSb18a/wzxP8MJFnIUCOCrQ==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/chip/node_modules/@nextui-org/system": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.0.6.tgz",
"integrity": "sha512-uXLcatb0B2uiw+a4yb0Ab9kmTmvB3Rzo/cdkoM8ncaXMTRumproSVhjY0OM4nxdXvmC3oYEmKd0d3f+j7T7Vsg==",
"dependencies": {
"@nextui-org/system-rsc": "2.0.3",
"@react-aria/i18n": "^3.8.1",
"@react-aria/overlays": "^3.16.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/chip/node_modules/@nextui-org/theme": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.1.4.tgz",
"integrity": "sha512-BDOP+/kA00yX+nDMWCP+YupdO841AO8OpT7fEE34XGVhkojc8LScVJfbAPkOIKs5fTPnt2uYsHCrijMkx/L44g==",
"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.13",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": "*"
}
},
"node_modules/@nextui-org/code": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@nextui-org/code/-/code-2.0.7.tgz",
"integrity": "sha512-6pZpv5149KUq1+wCtzWUX7y7+iH+evFRNVLefDf9g18FWswH6iSrqT6YXPeKga6A4P2JntRg6ZF7GkPjsGa0Hw==",