forked from 39800KRW/instantvampirestartk.it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
7841 lines (7141 loc) Β· 276 KB
/
yarn.lock
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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.23.2":
version: 7.23.5
resolution: "@babel/runtime@npm:7.23.5"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: ca679cc91bb7e424bc2db87bb58cc3b06ade916b9adb21fbbdc43e54cdaacb3eea201ceba2a0464b11d2eb65b9fe6a6ffcf4d7521fa52994f19be96f1af14788
languageName: node
linkType: hard
"@edge-runtime/primitives@npm:4.0.5":
version: 4.0.5
resolution: "@edge-runtime/primitives@npm:4.0.5"
checksum: 9b853b097307620de4b1b8ac34185a78df8211080ef5ba58ab2728696c683fadd09471975444b9863c490695fc264f5c5a415ffb4f76cdddb8b8366d5dfab5cc
languageName: node
linkType: hard
"@edge-runtime/types@npm:^2.2.7":
version: 2.2.7
resolution: "@edge-runtime/types@npm:2.2.7"
dependencies:
"@edge-runtime/primitives": "npm:4.0.5"
checksum: dc24d83736390d00c6c6aec68fa80eed058a715a09f3506a1b8ca24bf7e7a89df8c3ba08ec20eb15bd4ea5cc00f115a858d93f19dd6e2da64fb9f5ebcc0fd101
languageName: node
linkType: hard
"@emotion/is-prop-valid@npm:^0.8.2":
version: 0.8.8
resolution: "@emotion/is-prop-valid@npm:0.8.8"
dependencies:
"@emotion/memoize": "npm:0.7.4"
checksum: f6be625f067c7fa56a12a4edaf090715616dc4fc7803c87212831f38c969350107b9709b1be54100e53153b18d9fa068eb4bf4f9ac66a37a8edf1bac9b64e279
languageName: node
linkType: hard
"@emotion/memoize@npm:0.7.4":
version: 0.7.4
resolution: "@emotion/memoize@npm:0.7.4"
checksum: b2376548fc147b43afd1ff005a80a1a025bd7eb4fb759fdb23e96e5ff290ee8ba16628a332848d600fb91c3cdc319eee5395fa33d8875e5d5a8c4ce18cddc18e
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.55.0":
version: 8.55.0
resolution: "@eslint/js@npm:8.55.0"
checksum: 88ab9fc57a651becd2b32ec40a3958db27fae133b1ae77bebd733aa5bbd00a92f325bb02f20ad680d31c731fa49b22f060a4777dd52eb3e27da013d940bd978d
languageName: node
linkType: hard
"@formatjs/ecma402-abstract@npm:1.18.0":
version: 1.18.0
resolution: "@formatjs/ecma402-abstract@npm:1.18.0"
dependencies:
"@formatjs/intl-localematcher": "npm:0.5.2"
tslib: "npm:^2.4.0"
checksum: bbdad0aee8e48baad6bfe6b2c27caf3befe35e658b922ee2f84417a819f0bdc7e849a8c0c782db8b53f5666bf19669d2b10a1104257c08796d198c87766bfc92
languageName: node
linkType: hard
"@formatjs/fast-memoize@npm:2.2.0":
version: 2.2.0
resolution: "@formatjs/fast-memoize@npm:2.2.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: ae88c5a93b96235aba4bd9b947d0310d2ec013687a99133413361b24122b5cdea8c9bf2e04a4a2a8b61f1f4ee5419ef6416ca4796554226b5050e05a9ce6ef49
languageName: node
linkType: hard
"@formatjs/icu-messageformat-parser@npm:2.7.3":
version: 2.7.3
resolution: "@formatjs/icu-messageformat-parser@npm:2.7.3"
dependencies:
"@formatjs/ecma402-abstract": "npm:1.18.0"
"@formatjs/icu-skeleton-parser": "npm:1.7.0"
tslib: "npm:^2.4.0"
checksum: 2a51038813e5cff7e2df767e1227373d228e907adb7268fc3744b3d82c4fa69d4aa9f6020a62de2c468cf724600e9372ac07ae43a4480ed066fe34e224e80e4a
languageName: node
linkType: hard
"@formatjs/icu-skeleton-parser@npm:1.7.0":
version: 1.7.0
resolution: "@formatjs/icu-skeleton-parser@npm:1.7.0"
dependencies:
"@formatjs/ecma402-abstract": "npm:1.18.0"
tslib: "npm:^2.4.0"
checksum: 2e4db815247ddb10f7990bbb501c85b854ee951ee45143673eb91b4392b11d0a8312327adb8b624c6a2fdafab12083904630d6d22475503d025f1612da4dcaee
languageName: node
linkType: hard
"@formatjs/intl-localematcher@npm:0.5.2":
version: 0.5.2
resolution: "@formatjs/intl-localematcher@npm:0.5.2"
dependencies:
tslib: "npm:^2.4.0"
checksum: 4b3ae75470e3e53ffa39b2d46e65a2a4c9c4becbc0aac989b0694370e10c6687643660a045512d676509bc29b257fe5726fbb028de12f889be02c2d20b6527e6
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.13":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: d76ca802d853366094d0e98ff0d0994117fc8eff96649cd357b15e469e428228f597cd2e929d54ab089051684949955f16ee905bb19f7b2f0446fb377157be7a
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.1":
version: 2.0.1
resolution: "@humanwhocodes/object-schema@npm:2.0.1"
checksum: 9dba24e59fdb4041829d92b693aacb778add3b6f612aaa9c0774f3b650c11a378cc64f042a59da85c11dae33df456580a3c36837b953541aed6ff94294f97fac
languageName: node
linkType: hard
"@internationalized/date@npm:^3.5.0":
version: 3.5.0
resolution: "@internationalized/date@npm:3.5.0"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: 20e7af377fcc61d5c780bda33e5e2b5fa3d31a7bb5c71f488de1bdd364bd4585812edd18d49fd427900397383774c85dd842bd84147e82fbf91f178ee2fbb314
languageName: node
linkType: hard
"@internationalized/message@npm:^3.1.1":
version: 3.1.1
resolution: "@internationalized/message@npm:3.1.1"
dependencies:
"@swc/helpers": "npm:^0.5.0"
intl-messageformat: "npm:^10.1.0"
checksum: e778de8567e424e00c52f9b69eb65cea817664803add4bc4f76eb0248d12a4a7eaedbc15a290cabe90a070826d25a93438dea99a1bee796deb024b78cd694a92
languageName: node
linkType: hard
"@internationalized/number@npm:^3.4.0":
version: 3.4.0
resolution: "@internationalized/number@npm:3.4.0"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: 3de08b34cdbe75f56279e5cf2b4ea997bbaeecbfd2bd6c0c52d9197f9f9027cb2b6c2e529ee1daad5e1e9e66c79cbee8376217db36bddc814800ba909941ffd6
languageName: node
linkType: hard
"@internationalized/string@npm:^3.1.1":
version: 3.1.1
resolution: "@internationalized/string@npm:3.1.1"
dependencies:
"@swc/helpers": "npm:^0.5.0"
checksum: c004037c79b6a42f87f7c15d50a9abc5da796af5f74717569a8576eb4ae9b87aed37fc8eef0d658e65540f21fdbba160dcba2128f78a94b8acd31fc72c966014
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.2":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
dependencies:
"@jridgewell/set-array": "npm:^1.0.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 376fc11cf5a967318ba3ddd9d8e91be528eab6af66810a713c49b0c3f8dc67e9949452c51c38ab1b19aa618fb5e8594da5a249977e26b1e7fea1ee5a1fcacc74
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 0dbc9e29bc640bbbdc5b9876d2859c69042bfcf1423c1e6421bcca53e826660bff4e41c7d4bcb8dbea696404231a6f902f76ba41835d049e20f2dd6cffb713bf
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: bc7ab4c4c00470de4e7562ecac3c0c84f53e7ee8a711e546d67c47da7febe7c45cd67d4d84ee3c9b2c05ae8e872656cdded8a707a283d30bd54fbc65aef821ab
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.20
resolution: "@jridgewell/trace-mapping@npm:0.3.20"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 0ea0b2675cf513ec44dc25605616a3c9b808b9832e74b5b63c44260d66b58558bba65764f81928fc1033ead911f8718dca1134049c3e7a93937faf436671df31
languageName: node
linkType: hard
"@mediapipe/tasks-vision@npm:0.10.8":
version: 0.10.8
resolution: "@mediapipe/tasks-vision@npm:0.10.8"
checksum: 17b54eac84c820a39740893ba732ad9913a90cc1911b1573893b63f48671d2651a5249e13914efbde90af71089b35a9fac765113d82c9d0765ec00ccb0e5b156
languageName: node
linkType: hard
"@next/env@npm:14.0.3":
version: 14.0.3
resolution: "@next/env@npm:14.0.3"
checksum: 8688367c22461a075b5406463d16c284cf58e6861418e974fbd5901721da73402988340f8dd72d8e2e41e32ae0b7f24f91bd49029ee6e63424361587165febc5
languageName: node
linkType: hard
"@next/eslint-plugin-next@npm:14.0.3":
version: 14.0.3
resolution: "@next/eslint-plugin-next@npm:14.0.3"
dependencies:
glob: "npm:7.1.7"
checksum: 7ab9cb7a4dcaf97b66fc79aefa848ce0e46a43d48145484ffa0ce8629f3355e684ca4a52d1b2c1093a527a4f7ac31b57a2e429377c93770747046f41a1a73e1e
languageName: node
linkType: hard
"@next/swc-darwin-arm64@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-darwin-arm64@npm:14.0.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@next/swc-darwin-x64@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-darwin-x64@npm:14.0.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@next/swc-linux-arm64-gnu@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-linux-arm64-gnu@npm:14.0.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-arm64-musl@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-linux-arm64-musl@npm:14.0.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@next/swc-linux-x64-gnu@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-linux-x64-gnu@npm:14.0.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-x64-musl@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-linux-x64-musl@npm:14.0.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@next/swc-win32-arm64-msvc@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-win32-arm64-msvc@npm:14.0.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@next/swc-win32-ia32-msvc@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-win32-ia32-msvc@npm:14.0.3"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@next/swc-win32-x64-msvc@npm:14.0.3":
version: 14.0.3
resolution: "@next/swc-win32-x64-msvc@npm:14.0.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@nextui-org/accordion@npm:2.0.28":
version: 2.0.28
resolution: "@nextui-org/accordion@npm:2.0.28"
dependencies:
"@nextui-org/aria-utils": "npm:2.0.15"
"@nextui-org/divider": "npm:2.0.25"
"@nextui-org/framer-transitions": "npm:2.0.15"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-accordion": "npm:2.0.2"
"@nextui-org/use-aria-press": "npm:2.0.1"
"@react-aria/button": "npm:^3.8.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/tree": "npm:^3.7.3"
"@react-types/accordion": "npm:3.0.0-alpha.17"
"@react-types/shared": "npm:^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"
checksum: ed165a92bbef2b00559985fbacac75e3073ce11dc152e1549532e94ba3dde32ce8b7039691cc47edd4a2887ffcdf907b6c0bb79a4b5e8053b309015fdb597a1c
languageName: node
linkType: hard
"@nextui-org/aria-utils@npm:2.0.15":
version: 2.0.15
resolution: "@nextui-org/aria-utils@npm:2.0.15"
dependencies:
"@nextui-org/react-rsc-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/system": "npm:2.0.15"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/collections": "npm:^3.10.2"
"@react-types/overlays": "npm:^3.8.3"
"@react-types/shared": "npm:^3.21.0"
peerDependencies:
react: ">=18"
react-dom: ">=18"
checksum: 06a67cfd0ad64e4fd447fccd1158f2ff2599d98632ea9c8ea35dd12c638a170ad23be7e770ea427e76f9f16187a9a9ccf581b1a06b7a26b8c5bacf02e8744069
languageName: node
linkType: hard
"@nextui-org/autocomplete@npm:2.0.9":
version: 2.0.9
resolution: "@nextui-org/autocomplete@npm:2.0.9"
dependencies:
"@nextui-org/aria-utils": "npm:2.0.15"
"@nextui-org/button": "npm:2.0.26"
"@nextui-org/input": "npm:2.1.16"
"@nextui-org/listbox": "npm:2.1.16"
"@nextui-org/popover": "npm:2.1.14"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/scroll-shadow": "npm:2.1.12"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/spinner": "npm:2.0.24"
"@nextui-org/use-aria-button": "npm:2.0.6"
"@react-aria/combobox": "npm:^3.7.1"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/i18n": "npm:^3.8.4"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-aria/visually-hidden": "npm:^3.8.6"
"@react-stately/combobox": "npm:^3.7.1"
"@react-types/combobox": "npm:^3.8.1"
"@react-types/shared": "npm:^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"
checksum: 17af3ba0dbb110f292856dea5c5c680cf8fcedfec72bbd6f2e271ecd34c3c225062dc8af5581c6f551c344df929a4fb6222808de8349a46342a3fca8b583f0d1
languageName: node
linkType: hard
"@nextui-org/avatar@npm:2.0.24":
version: 2.0.24
resolution: "@nextui-org/avatar@npm:2.0.24"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-image": "npm:2.0.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 9e83bae9b17fb97909a4f1687b40a08ab3d228374c257bae36c83f74574cee2f8862d102e86fca32388937a576d2ad2aab0a29d22c4164c317641445950b81d9
languageName: node
linkType: hard
"@nextui-org/badge@npm:2.0.24":
version: 2.0.24
resolution: "@nextui-org/badge@npm:2.0.24"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/system-rsc": "npm:2.0.11"
peerDependencies:
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 981618fc08b4396c451dead15c2c7ea1e61e8317fe91b3f622d3837d01827c7081bc0a6f4679bc92be8303c11eb3f13c9c774d5030dfb8ae9ad8ecad5b4cc0a5
languageName: node
linkType: hard
"@nextui-org/breadcrumbs@npm:2.0.4":
version: 2.0.4
resolution: "@nextui-org/breadcrumbs@npm:2.0.4"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@react-aria/breadcrumbs": "npm:^3.5.7"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/utils": "npm:^3.21.1"
"@react-types/breadcrumbs": "npm:^3.7.1"
"@react-types/shared": "npm:^3.21.0"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: f608659b6656039fdce4d5a4e3ab6131291469535f787f37360a1402768103dab523aa47dcfca3490540e5b1c18cc7b82f98b202d6e00ddb24d0e534da0d230d
languageName: node
linkType: hard
"@nextui-org/button@npm:2.0.26":
version: 2.0.26
resolution: "@nextui-org/button@npm:2.0.26"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/ripple": "npm:2.0.24"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/spinner": "npm:2.0.24"
"@nextui-org/use-aria-button": "npm:2.0.6"
"@react-aria/button": "npm:^3.8.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-types/button": "npm:^3.9.0"
"@react-types/shared": "npm:^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"
checksum: b7c6022cdf1a64bdf542a08563a5e556949b34dfc4e0fb574e55b1435a50e051df7a9e19cf3f7e68021a3b55509bf12c4c8d8cc9c2db378aee03acc34279d852
languageName: node
linkType: hard
"@nextui-org/card@npm:2.0.24":
version: 2.0.24
resolution: "@nextui-org/card@npm:2.0.24"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/ripple": "npm:2.0.24"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-button": "npm:2.0.6"
"@react-aria/button": "npm:^3.8.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-types/shared": "npm:^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"
checksum: 12e3aa4c1e6546c23c7201dcaaa28b90109cff8bfa4fed50aee3fc1c2ebca4a4e89667a6bc77265b31c564acbd100a3594944cbab35c8e79223aef4ee96cd3e1
languageName: node
linkType: hard
"@nextui-org/checkbox@npm:2.0.25":
version: 2.0.25
resolution: "@nextui-org/checkbox@npm:2.0.25"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-press": "npm:2.0.1"
"@react-aria/checkbox": "npm:^3.11.2"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-aria/visually-hidden": "npm:^3.8.6"
"@react-stately/checkbox": "npm:^3.5.1"
"@react-stately/toggle": "npm:^3.6.3"
"@react-types/checkbox": "npm:^3.5.2"
"@react-types/shared": "npm:^3.21.0"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 0368ca8d48bcde516edcb5014ca52d5bb7e23213ef12c9f0de166c330af36e137ec07c5843442d7e4ca9fbed17c1dc4ca068e2b88995eaf15d4d7482b9e86f14
languageName: node
linkType: hard
"@nextui-org/chip@npm:2.0.25":
version: 2.0.25
resolution: "@nextui-org/chip@npm:2.0.25"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-press": "npm:2.0.1"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-types/checkbox": "npm:^3.5.2"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: ab1c87c4e90a391c394ac5558e4a56b567728f7d9278f832e1cbf913d730950827ba6a62e2713c531c1584a00c908504469ab56435f9b4cd44caa724eba02430
languageName: node
linkType: hard
"@nextui-org/code@npm:2.0.24":
version: 2.0.24
resolution: "@nextui-org/code@npm:2.0.24"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/system-rsc": "npm:2.0.11"
peerDependencies:
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 7d8d5b3426e45fa90b1e9a8daa27f0fcceee4a0eed357b9da49b2c0b0486746eb13ff9dc91e23481f9a3101ad60132dd580457f93080b47edbb31427d7e75a31
languageName: node
linkType: hard
"@nextui-org/divider@npm:2.0.25":
version: 2.0.25
resolution: "@nextui-org/divider@npm:2.0.25"
dependencies:
"@nextui-org/react-rsc-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/system-rsc": "npm:2.0.11"
"@react-types/shared": "npm:^3.21.0"
peerDependencies:
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 7c57528f0b5ceb246d92f8aaaf1a5a8c886c7b3d8844d878098e6ba7aa18fa8bc213a0fa6abb561d252467d22bc0928e9843db31eeceaf99e2532440d6516365
languageName: node
linkType: hard
"@nextui-org/dropdown@npm:2.1.16":
version: 2.1.16
resolution: "@nextui-org/dropdown@npm:2.1.16"
dependencies:
"@nextui-org/menu": "npm:2.0.17"
"@nextui-org/popover": "npm:2.1.14"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/menu": "npm:^3.11.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/menu": "npm:^3.5.6"
"@react-types/menu": "npm:^3.9.5"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
framer-motion: ">=4.0.0"
react: ">=18"
react-dom: ">=18"
checksum: 601180de5a8529f1bd02292eb1697222f8a1bc57430167cf24783df043eee5fd263ae086d0ab2c2f548af6d7d8d3b780eb6f8ef4fbd2c314b45648d67aed68df
languageName: node
linkType: hard
"@nextui-org/framer-transitions@npm:2.0.15":
version: 2.0.15
resolution: "@nextui-org/framer-transitions@npm:2.0.15"
dependencies:
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/system": "npm:2.0.15"
peerDependencies:
framer-motion: ">=4.0.0"
react: ">=18"
react-dom: ">=18"
checksum: 14074631e81f98889ae46c3f617321e02b26626a80dd8d0e9536ffb96bbbb249b13223db1e6728b302a9d3c64676a568199be63fcc5005b1b99200bc7a41f1ae
languageName: node
linkType: hard
"@nextui-org/image@npm:2.0.24":
version: 2.0.24
resolution: "@nextui-org/image@npm:2.0.24"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-image": "npm:2.0.4"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 0eb99627807aa1b7ca287d1cd9cd42878528237cb089788b658fd0c1e574cba8a97ec1f719ffa1fcb76925e770bb07e49c9f0e31286e0e6e9c58a7e2307e8438
languageName: node
linkType: hard
"@nextui-org/input@npm:2.1.16":
version: 2.1.16
resolution: "@nextui-org/input@npm:2.1.16"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/textfield": "npm:^3.12.2"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/utils": "npm:^3.8.0"
"@react-types/shared": "npm:^3.21.0"
"@react-types/textfield": "npm:^3.8.1"
react-textarea-autosize: "npm:^8.5.2"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: c640f65ce9b502443175a7514dc8df204a9ceac79de00ee5a56cd7c202dee4cc05c0225b8c8471dfb4bf04a02b35df8239a1c3b8aedad22f0708e2993b37e6d0
languageName: node
linkType: hard
"@nextui-org/kbd@npm:2.0.25":
version: 2.0.25
resolution: "@nextui-org/kbd@npm:2.0.25"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/system-rsc": "npm:2.0.11"
"@react-aria/utils": "npm:^3.21.1"
peerDependencies:
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 9a955c12219ed16129aeecf748eb676b0e2f4962027fe6d2bf53979546df4631ef614179d8a6699d01f6eecb54a64433ab145efb5301c8f13532bf2af6c6633e
languageName: node
linkType: hard
"@nextui-org/link@npm:2.0.26":
version: 2.0.26
resolution: "@nextui-org/link@npm:2.0.26"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-link": "npm:2.0.15"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/link": "npm:^3.6.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-types/link": "npm:^3.5.1"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 6886ec21454315dd9b00f9c71ca62a2a6867f06fd6d7b20f29df4b0582282d2b510e363a05f3201b8a7ed05f218480bca7b044be1ae2f81a2f0c6eb9e4ed6d6a
languageName: node
linkType: hard
"@nextui-org/listbox@npm:2.1.16":
version: 2.1.16
resolution: "@nextui-org/listbox@npm:2.1.16"
dependencies:
"@nextui-org/aria-utils": "npm:2.0.15"
"@nextui-org/divider": "npm:2.0.25"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-press": "npm:2.0.1"
"@nextui-org/use-is-mobile": "npm:2.0.6"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/listbox": "npm:^3.11.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/list": "npm:^3.10.0"
"@react-types/menu": "npm:^3.9.5"
"@react-types/shared": "npm:^3.21.0"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: ab6bd0dc4598cf48387f97425a87f9737eaa13045ef96fbdbde5547b7c8176bf85dbedecf34b944b7dfe6423cd5fbb752296fc5194505872c093ef4202ece189
languageName: node
linkType: hard
"@nextui-org/menu@npm:2.0.17":
version: 2.0.17
resolution: "@nextui-org/menu@npm:2.0.17"
dependencies:
"@nextui-org/aria-utils": "npm:2.0.15"
"@nextui-org/divider": "npm:2.0.25"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-press": "npm:2.0.1"
"@nextui-org/use-is-mobile": "npm:2.0.6"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/menu": "npm:^3.11.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/menu": "npm:^3.5.6"
"@react-stately/tree": "npm:^3.7.3"
"@react-types/menu": "npm:^3.9.5"
"@react-types/shared": "npm:^3.21.0"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 937fb911fcf47a50f285071eacbe8fbc74c77650b2b83ef032579d128ee74e72f3141e267222dbaac009a2776fcddc895b9cf328053491c42db54070512bab51
languageName: node
linkType: hard
"@nextui-org/modal@npm:2.0.28":
version: 2.0.28
resolution: "@nextui-org/modal@npm:2.0.28"
dependencies:
"@nextui-org/framer-transitions": "npm:2.0.15"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-button": "npm:2.0.6"
"@nextui-org/use-aria-modal-overlay": "npm:2.0.6"
"@nextui-org/use-disclosure": "npm:2.0.6"
"@react-aria/dialog": "npm:^3.5.7"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/overlays": "npm:^3.18.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/overlays": "npm:^3.6.3"
"@react-types/overlays": "npm:^3.8.3"
react-remove-scroll: "npm:^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"
checksum: 66bbdd3e457849b4736ea3bd81b694a904e8c9161f8668b4a76a74cf378987af38e556f7b4b6b0faec953076091caebb77f5bf1a417a4b373818d34529bc481e
languageName: node
linkType: hard
"@nextui-org/navbar@npm:2.0.27":
version: 2.0.27
resolution: "@nextui-org/navbar@npm:2.0.27"
dependencies:
"@nextui-org/framer-transitions": "npm:2.0.15"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-toggle-button": "npm:2.0.6"
"@nextui-org/use-scroll-position": "npm:2.0.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/overlays": "npm:^3.18.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/toggle": "npm:^3.6.3"
"@react-stately/utils": "npm:^3.8.0"
react-remove-scroll: "npm:^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"
checksum: fb71c4f1a568d89d360fcfc6c7a31a93b65c1163b6bfe2b50b9e372ed9b18bc7efced9b9f654501d2bb297e175da634181ba206fab50246cf93e8e05156ba8ed
languageName: node
linkType: hard
"@nextui-org/pagination@npm:2.0.26":
version: 2.0.26
resolution: "@nextui-org/pagination@npm:2.0.26"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-icons": "npm:2.0.6"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-press": "npm:2.0.1"
"@nextui-org/use-pagination": "npm:2.0.4"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/utils": "npm:^3.21.1"
scroll-into-view-if-needed: "npm:3.0.10"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 49cbd4a07a565e179e7236cba58f5478672cec5579e9feaad0d531836a84c72b1344a730f86dcbfac4969494cf32a091a9d5cf8af6ae20a7a18e1028b6b28ced
languageName: node
linkType: hard
"@nextui-org/popover@npm:2.1.14":
version: 2.1.14
resolution: "@nextui-org/popover@npm:2.1.14"
dependencies:
"@nextui-org/aria-utils": "npm:2.0.15"
"@nextui-org/button": "npm:2.0.26"
"@nextui-org/framer-transitions": "npm:2.0.15"
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-button": "npm:2.0.6"
"@react-aria/dialog": "npm:^3.5.7"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/overlays": "npm:^3.18.1"
"@react-aria/utils": "npm:^3.21.1"
"@react-stately/overlays": "npm:^3.6.3"
"@react-types/button": "npm:^3.9.0"
"@react-types/overlays": "npm:^3.8.3"
react-remove-scroll: "npm:^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"
checksum: a9f5477dd68588e12e89f8c8ae55978662f12ab445356038bef1238d522c45f45f36483cefdc05422837606c66a0a15e76b36f2f88a2db362d8e2b55fdefd4e5
languageName: node
linkType: hard
"@nextui-org/progress@npm:2.0.24":
version: 2.0.24
resolution: "@nextui-org/progress@npm:2.0.24"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-is-mounted": "npm:2.0.4"
"@react-aria/i18n": "npm:^3.8.4"
"@react-aria/progress": "npm:^3.4.7"
"@react-aria/utils": "npm:^3.21.1"
"@react-types/progress": "npm:^3.5.0"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: adbbb7c83aec3346ac47dcc95875a45f377b52ccb4eca18cf1da446d7281b76b214eb17e611a30a3933a6d3fce4019aff6f31cb6da78da938a409f1df5d1c07c
languageName: node
linkType: hard
"@nextui-org/radio@npm:2.0.25":
version: 2.0.25
resolution: "@nextui-org/radio@npm:2.0.25"
dependencies:
"@nextui-org/react-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
"@nextui-org/use-aria-press": "npm:2.0.1"
"@react-aria/focus": "npm:^3.14.3"
"@react-aria/interactions": "npm:^3.19.1"
"@react-aria/radio": "npm:^3.8.2"
"@react-aria/utils": "npm:^3.21.1"
"@react-aria/visually-hidden": "npm:^3.8.6"
"@react-stately/radio": "npm:^3.9.1"
"@react-types/radio": "npm:^3.5.2"
"@react-types/shared": "npm:^3.21.0"
peerDependencies:
"@nextui-org/system": ">=2.0.0"
"@nextui-org/theme": ">=2.1.0"
react: ">=18"
react-dom: ">=18"
checksum: 943f3e5af7523d58baaa5e5998e3281a42fff6c81e08b7ee5526288f21f79a892c34f4d43d59e182cb2bba5bd0609ff7d4ee17ec68cffe45b658113d423ba2a7
languageName: node
linkType: hard
"@nextui-org/react-rsc-utils@npm:2.0.10":
version: 2.0.10
resolution: "@nextui-org/react-rsc-utils@npm:2.0.10"
checksum: 6b73dcb334bce53977e8e7dcb5eb37d16464172f5698725461cb49013e42d7ec4bda2693aaa612622e89113c50d1950d658aa820f2c5f70bff5c911c97b41d6d
languageName: node
linkType: hard
"@nextui-org/react-utils@npm:2.0.10":
version: 2.0.10
resolution: "@nextui-org/react-utils@npm:2.0.10"
dependencies:
"@nextui-org/react-rsc-utils": "npm:2.0.10"
"@nextui-org/shared-utils": "npm:2.0.4"
peerDependencies:
react: ">=18"
checksum: 55534ea78cf8509b7716fd28e48a0654c59df74e93ef3b29371e06ab9c9e6bf28a877a531cde7fcc72fe7cb8c5330de518b9b3b96271236cfdfbf96ed2666993
languageName: node
linkType: hard
"@nextui-org/react@npm:^2.2.9":
version: 2.2.9
resolution: "@nextui-org/react@npm:2.2.9"
dependencies:
"@nextui-org/accordion": "npm:2.0.28"
"@nextui-org/autocomplete": "npm:2.0.9"
"@nextui-org/avatar": "npm:2.0.24"
"@nextui-org/badge": "npm:2.0.24"
"@nextui-org/breadcrumbs": "npm:2.0.4"
"@nextui-org/button": "npm:2.0.26"
"@nextui-org/card": "npm:2.0.24"
"@nextui-org/checkbox": "npm:2.0.25"
"@nextui-org/chip": "npm:2.0.25"
"@nextui-org/code": "npm:2.0.24"
"@nextui-org/divider": "npm:2.0.25"
"@nextui-org/dropdown": "npm:2.1.16"
"@nextui-org/image": "npm:2.0.24"
"@nextui-org/input": "npm:2.1.16"
"@nextui-org/kbd": "npm:2.0.25"
"@nextui-org/link": "npm:2.0.26"
"@nextui-org/listbox": "npm:2.1.16"
"@nextui-org/menu": "npm:2.0.17"
"@nextui-org/modal": "npm:2.0.28"
"@nextui-org/navbar": "npm:2.0.27"
"@nextui-org/pagination": "npm:2.0.26"
"@nextui-org/popover": "npm:2.1.14"
"@nextui-org/progress": "npm:2.0.24"
"@nextui-org/radio": "npm:2.0.25"
"@nextui-org/ripple": "npm:2.0.24"
"@nextui-org/scroll-shadow": "npm:2.1.12"
"@nextui-org/select": "npm:2.1.20"
"@nextui-org/skeleton": "npm:2.0.24"
"@nextui-org/slider": "npm:2.2.5"
"@nextui-org/snippet": "npm:2.0.30"
"@nextui-org/spacer": "npm:2.0.24"
"@nextui-org/spinner": "npm:2.0.24"
"@nextui-org/switch": "npm:2.0.25"
"@nextui-org/system": "npm:2.0.15"
"@nextui-org/table": "npm:2.0.28"
"@nextui-org/tabs": "npm:2.0.26"
"@nextui-org/theme": "npm:2.1.17"
"@nextui-org/tooltip": "npm:2.0.29"
"@nextui-org/user": "npm:2.0.25"
"@react-aria/visually-hidden": "npm:^3.8.6"
peerDependencies:
framer-motion: ">=4.0.0"