-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
6779 lines (6779 loc) · 259 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": "nextjs-rsp-table",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "nextjs-rsp-table",
"version": "0.1.0",
"dependencies": {
"@adobe/react-spectrum": "^3.26.0",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-next": "^13.3.1-canary.12",
"next": "^13.3.1-canary.12",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
}
},
"node_modules/@adobe/react-spectrum": {
"version": "3.26.0",
"resolved": "https://registry.npmjs.org/@adobe/react-spectrum/-/react-spectrum-3.26.0.tgz",
"integrity": "sha512-ByX9ED9uwREegQSzD2ft4uzzUFF1l1ZD/MPZ8BJM55//ENyMA1gd8Meutl9PlF9RrH+YKsLLe+nGGJVbKeCPyw==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",
"@react-aria/ssr": "^3.6.0",
"@react-aria/visually-hidden": "^3.8.0",
"@react-spectrum/actiongroup": "^3.8.2",
"@react-spectrum/avatar": "^3.0.0",
"@react-spectrum/badge": "^3.1.1",
"@react-spectrum/breadcrumbs": "^3.7.2",
"@react-spectrum/button": "^3.12.1",
"@react-spectrum/buttongroup": "^3.6.1",
"@react-spectrum/calendar": "^3.2.1",
"@react-spectrum/checkbox": "^3.7.1",
"@react-spectrum/combobox": "^3.8.2",
"@react-spectrum/contextualhelp": "^3.5.1",
"@react-spectrum/datepicker": "^3.5.0",
"@react-spectrum/dialog": "^3.7.1",
"@react-spectrum/divider": "^3.5.1",
"@react-spectrum/dnd": "^3.1.1",
"@react-spectrum/form": "^3.6.1",
"@react-spectrum/icon": "^3.7.1",
"@react-spectrum/illustratedmessage": "^3.4.1",
"@react-spectrum/image": "^3.4.1",
"@react-spectrum/labeledvalue": "^3.1.1",
"@react-spectrum/layout": "^3.5.1",
"@react-spectrum/link": "^3.5.1",
"@react-spectrum/list": "^3.4.0",
"@react-spectrum/listbox": "^3.10.0",
"@react-spectrum/menu": "^3.11.0",
"@react-spectrum/meter": "^3.4.1",
"@react-spectrum/numberfield": "^3.6.1",
"@react-spectrum/overlays": "^5.1.0",
"@react-spectrum/picker": "^3.10.2",
"@react-spectrum/progress": "^3.5.0",
"@react-spectrum/provider": "^3.7.1",
"@react-spectrum/radio": "^3.5.1",
"@react-spectrum/searchfield": "^3.7.1",
"@react-spectrum/slider": "^3.5.1",
"@react-spectrum/statuslight": "^3.5.1",
"@react-spectrum/switch": "^3.4.1",
"@react-spectrum/table": "^3.8.0",
"@react-spectrum/tabs": "^3.5.2",
"@react-spectrum/text": "^3.4.1",
"@react-spectrum/textfield": "^3.10.1",
"@react-spectrum/theme-dark": "^3.5.1",
"@react-spectrum/theme-default": "^3.5.1",
"@react-spectrum/theme-light": "^3.4.1",
"@react-spectrum/tooltip": "^3.5.0",
"@react-spectrum/view": "^3.5.1",
"@react-spectrum/well": "^3.4.1",
"@react-stately/collections": "^3.7.0",
"@react-stately/data": "^3.9.1",
"@react-types/shared": "^3.18.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@adobe/react-spectrum-ui": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@adobe/react-spectrum-ui/-/react-spectrum-ui-1.2.0.tgz",
"integrity": "sha512-os3EdjfyJbrukLcZ5uYtdFRiDlLB3zq2JoXp19J/IDpZ8btibJeRZYSwjL+LscEiT2pOYaF2McMQdkZTIwnllw==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@adobe/react-spectrum-workflow": {
"version": "2.3.4",
"resolved": "https://registry.npmjs.org/@adobe/react-spectrum-workflow/-/react-spectrum-workflow-2.3.4.tgz",
"integrity": "sha512-XPLzIBl58HdLF9WIPB7RDAvVXvCE3SjG+HaWQhW2P9MnxSz1DEA9O7mlTlYblJkMbfk10T/+RFaSupc1yoN+TA==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz",
"integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"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.5.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz",
"integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz",
"integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.5.1",
"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.38.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.38.0.tgz",
"integrity": "sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.14.3",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.14.3.tgz",
"integrity": "sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg==",
"dependencies": {
"@formatjs/intl-localematcher": "0.2.32",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/fast-memoize": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.0.1.tgz",
"integrity": "sha512-M2GgV+qJn5WJQAYewz7q2Cdl6fobQa69S1AzSM2y0P68ZDbK5cWrJIcPCO395Of1ksftGZoOt4LYCO/j9BKBSA==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-messageformat-parser": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.3.1.tgz",
"integrity": "sha512-knF2AkAKN4Upv4oIiKY4Wd/dLH68TNMPgV/tJMu/T6FP9aQwbv8fpj7U3lkyniPaNVxvia56Gxax8MKOjtxLSQ==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.14.3",
"@formatjs/icu-skeleton-parser": "1.3.18",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.3.18",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.18.tgz",
"integrity": "sha512-ND1ZkZfmLPcHjAH1sVpkpQxA+QYfOX3py3SjKWMUVGDow18gZ0WPqz3F+pJLYQMpS2LnnQ5zYR2jPVYTbRwMpg==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.14.3",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.2.32",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz",
"integrity": "sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.8",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
"integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
"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.2.0",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.2.0.tgz",
"integrity": "sha512-VDMHN1m33L4eqPs5BaihzgQJXyaORbMoHOtrapFxx179J8ucY5CRIHYsq5RRLKPHZWgjNfa5v6amWWDkkMFywA==",
"dependencies": {
"@swc/helpers": "^0.4.14"
}
},
"node_modules/@internationalized/message": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.0.tgz",
"integrity": "sha512-Oo5m70FcBdADf7G8NkUffVSfuCdeAYVfsvNjZDi9ELpjvkc4YNJVTHt/NyTI9K7FgAVoELxiP9YmN0sJ+HNHYQ==",
"dependencies": {
"@swc/helpers": "^0.4.14",
"intl-messageformat": "^10.1.0"
}
},
"node_modules/@internationalized/number": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.2.0.tgz",
"integrity": "sha512-GUXkhXSX1Ee2RURnzl+47uvbOxnlMnvP9Er+QePTjDjOPWuunmLKlEkYkEcLiiJp7y4l9QxGDLOlVr8m69LS5w==",
"dependencies": {
"@swc/helpers": "^0.4.14"
}
},
"node_modules/@internationalized/string": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.1.0.tgz",
"integrity": "sha512-TJQKiyUb+wyAfKF59UNeZ/kELMnkxyecnyPCnBI1ma4NaXReJW+7Cc2mObXAqraIBJUVv7rgI46RLKrLgi35ng==",
"dependencies": {
"@swc/helpers": "^0.4.14"
}
},
"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.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/env/-/env-13.3.1-canary.16.tgz",
"integrity": "sha512-ISKW7FIAcP5r0Htl6g6+mOtCMI4S/qI1SyV9hWR1fUOYxk/d+8F7ZTEL5sHjccilj3UT9YDn9DwX4wnINsrLpw=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.3.1-canary.16.tgz",
"integrity": "sha512-bokuXjmypH109UgyyqsoJG3PpyH3eeMrsXok7O0L/jddJbl08JP68hxsgizf63KyW6MPL9RX1u1tn6ODGb7Fxw==",
"dependencies": {
"glob": "7.1.7"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.3.1-canary.16.tgz",
"integrity": "sha512-08g4vzh2J5z79mzmvsai1eup19NTraIAUbYXuM9ncD362tpXN1K17140Aa9KU3EgIQ9DftH3Uiz42RknhDQGog==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.3.1-canary.16.tgz",
"integrity": "sha512-nHGC1yQs2/Ru+sqT+VO7f02mgwjhvRsbuDLEU7XTLd0Ow1FkJ9AWBlAKbqC1z9ThelWYtxz9CY+sg8ehHpZY2w==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.3.1-canary.16.tgz",
"integrity": "sha512-KoNXboYP2xEoTqo7OcmNwOmteQm9ABtZ5FBu1VbraVGVh2YUMISzdJ7wUzVdeoN6ltr4A7bEFZHcYVtUs8PtLQ==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-musl": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.3.1-canary.16.tgz",
"integrity": "sha512-yu4y4Kaj9EJfR3AQhg6fH+CsIB9owxhGtBh2VFnTK0qJ1JkAT9x3P2U/LKoyIXrNneXo2VFrqSsta1bmDjbHow==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-gnu": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.3.1-canary.16.tgz",
"integrity": "sha512-J/bLY3qw5G/fA198U5l+lmsgXH9GcmagmPvE/cCEWmfbrL/CU3GGshBxJ4VVElURnFcqgPRTvjE00MFqbyNYDQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-musl": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.3.1-canary.16.tgz",
"integrity": "sha512-PCCy79r5mFI9ZOEJ5Lzp1oD+XsAM2QoGdX0I41258kmVCfTRj6d6WD/8XGPjq23KYo9A12+t9lQc+USnX9+8QQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.3.1-canary.16.tgz",
"integrity": "sha512-i2cv9xYnZvJuQQt6slspEILxP0gUC97RTOq++RZeSET83T2EIw2szz7s/LVKNeqQvacsnCe6ublKW9ARTzy2Tw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.3.1-canary.16.tgz",
"integrity": "sha512-CyCuupplfopinJLbU+4G2gflBfhj1m7wMxUrvSEysHM3Av9aEC0zzwJ1Gez+0lZIb6Hhr3AEGi1heymCtX+msA==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "13.3.1-canary.16",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.3.1-canary.16.tgz",
"integrity": "sha512-qpXq1i7FkI8r5J2S78KFhJ9bbdX4JXBb1/Vz4Cc+5BJ5/juenI1cvwWGXBpQ0T8bRVf96Yve1gEgccNQsAjZAw==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@pkgr/utils": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz",
"integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==",
"dependencies": {
"cross-spawn": "^7.0.3",
"is-glob": "^4.0.3",
"open": "^8.4.0",
"picocolors": "^1.0.0",
"tiny-glob": "^0.2.9",
"tslib": "^2.4.0"
},
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/unts"
}
},
"node_modules/@react-aria/actiongroup": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/@react-aria/actiongroup/-/actiongroup-3.5.2.tgz",
"integrity": "sha512-zqxe8J2hLssSn2aNwQ69VbETGVoFkNIbwbu9S3TUTeHzYkVRwlDxtNhWZbid/Wfq8XSPQmQOVSaiRevxxuoPmg==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/selection": "^3.14.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/collections": "^3.7.0",
"@react-stately/list": "^3.8.0",
"@react-types/actiongroup": "^3.4.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/breadcrumbs": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.1.tgz",
"integrity": "sha512-/7UMNtwTBbhPiswoEZF2zGUtezinKeLrEMmywzWgxryJ6A/edfT5KXXcPr7MZdWH5faEFq27WSYsMqdX1J3MsA==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/link": "^3.5.0",
"@react-aria/utils": "^3.16.0",
"@react-types/breadcrumbs": "^3.5.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/button": {
"version": "3.7.1",
"resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.7.1.tgz",
"integrity": "sha512-l4Xqu83mT9STB89JLNsejHjHdFZClp/xez07LYfqibdvgcXiH311I76n1QCZqga2OGuIsW+fKmpMtuVPDdS61g==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/interactions": "^3.15.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/toggle": "^3.5.1",
"@react-types/button": "^3.7.2",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/calendar": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.2.0.tgz",
"integrity": "sha512-3wnCusOi7mU9kRMDxspAL81SXAsEVzWuPILOl6OXQHbVtDvRWqkhlqWkjDDoStKD9uwDDB9rfcCsfOQBJnj63A==",
"dependencies": {
"@internationalized/date": "^3.2.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/calendar": "^3.2.0",
"@react-types/button": "^3.7.2",
"@react-types/calendar": "^3.2.0",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/checkbox": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.9.0.tgz",
"integrity": "sha512-r6f7fQIZMv5k8x73v9i8Q/WsWqd6Q2yJ8F9TdOrYg5vrRot+QaxzC61HFyW7o+e7A5+UXQfTgU9E/Lezy9YSbA==",
"dependencies": {
"@react-aria/label": "^3.5.1",
"@react-aria/toggle": "^3.6.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/checkbox": "^3.4.1",
"@react-stately/toggle": "^3.5.1",
"@react-types/checkbox": "^3.4.3",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/combobox": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.6.0.tgz",
"integrity": "sha512-GQqKUlSZy7wciSbLstq0zTTDP2zPPLxwrsqH/SahruRQqFYG8D/5aaqDMooPg17nGWg6wQ693Ho572+dIIgx6A==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/listbox": "^3.9.0",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/menu": "^3.9.0",
"@react-aria/overlays": "^3.14.0",
"@react-aria/selection": "^3.14.0",
"@react-aria/textfield": "^3.9.1",
"@react-aria/utils": "^3.16.0",
"@react-stately/collections": "^3.7.0",
"@react-stately/combobox": "^3.5.0",
"@react-stately/layout": "^3.12.0",
"@react-types/button": "^3.7.2",
"@react-types/combobox": "^3.6.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/datepicker": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.4.0.tgz",
"integrity": "sha512-KhyyeLgWU5eJ+LqpfgOXFm/QBS6SIsX60zOgcQmst+LstsyuYjGQD7oqZX3UIMRWWgWj6urkYHk1yrZtam6doQ==",
"dependencies": {
"@internationalized/date": "^3.2.0",
"@internationalized/number": "^3.2.0",
"@internationalized/string": "^3.1.0",
"@react-aria/focus": "^3.12.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/label": "^3.5.1",
"@react-aria/spinbutton": "^3.4.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/datepicker": "^3.4.0",
"@react-types/button": "^3.7.2",
"@react-types/calendar": "^3.2.0",
"@react-types/datepicker": "^3.3.0",
"@react-types/dialog": "^3.5.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/dialog": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.1.tgz",
"integrity": "sha512-nvBIO7GbRSoLPtbS38wCuCHXEbRUIAhD87XKGsFslsmK8csZgJiJa8ZQQNknfvNcEBRIYzNRz2XMPJmnN4H1og==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/overlays": "^3.14.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/overlays": "^3.5.1",
"@react-types/dialog": "^3.5.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/dnd": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.2.0.tgz",
"integrity": "sha512-O0/JhHA2Qf5gMDqI9DD7xJIZBovUFbn4Y25xMiN52dighmdVLKtw8opgIp+K4lL3n+KR3aG/49R2JYiwJIxHOA==",
"dependencies": {
"@internationalized/string": "^3.1.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/overlays": "^3.14.0",
"@react-aria/utils": "^3.16.0",
"@react-aria/visually-hidden": "^3.8.0",
"@react-stately/dnd": "^3.2.0",
"@react-types/button": "^3.7.2",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/focus": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.12.0.tgz",
"integrity": "sha512-nY6/2lpXzLep6dzQEESoowiSqNcy7DFWuRD/qHj9uKcQwWpYH/rqBrHVS/RNvL6Cz/fBA7L/4AzByJ6pTBtoeA==",
"dependencies": {
"@react-aria/interactions": "^3.15.0",
"@react-aria/utils": "^3.16.0",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14",
"clsx": "^1.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/grid": {
"version": "3.7.0",
"resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.7.0.tgz",
"integrity": "sha512-jXo+/wQotHDSaMSVdVT7Hxzz65Nj2yK1wssIUQPEZalRhcosGWI1vhdQOD0g9GQL1l5DLyw0m55sych6naeBlw==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/selection": "^3.14.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/collections": "^3.7.0",
"@react-stately/grid": "^3.6.0",
"@react-stately/selection": "^3.13.0",
"@react-stately/virtualizer": "^3.5.1",
"@react-types/checkbox": "^3.4.3",
"@react-types/grid": "^3.1.7",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/gridlist": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.3.0.tgz",
"integrity": "sha512-VNXnNRcAPel1C9KvhIj+lAC3UvtAg8nrkrtdBvuJTWJPuorAvfF8Dy5Oan+bHoo5KFT/SW96KsR7olH5aZucoQ==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/grid": "^3.7.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/selection": "^3.14.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/list": "^3.8.0",
"@react-types/checkbox": "^3.4.3",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/i18n": {
"version": "3.7.1",
"resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.7.1.tgz",
"integrity": "sha512-2fu1cv8yD3V+rlhOqstTdGAubadoMFuPE7lA1FfYdaJNxXa09iWqvpipUPlxYJrahW0eazkesOPDKFwOEMF1iA==",
"dependencies": {
"@internationalized/date": "^3.2.0",
"@internationalized/message": "^3.1.0",
"@internationalized/number": "^3.2.0",
"@internationalized/string": "^3.1.0",
"@react-aria/ssr": "^3.6.0",
"@react-aria/utils": "^3.16.0",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/interactions": {
"version": "3.15.0",
"resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.15.0.tgz",
"integrity": "sha512-8br5uatPDISEWMINKGs7RhNPtqLhRsgwQsooaH7Jgxjs0LBlylODa8l7D3NA1uzVzlvfnZm/t2YN/y8ieRSDcQ==",
"dependencies": {
"@react-aria/ssr": "^3.6.0",
"@react-aria/utils": "^3.16.0",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/label": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.5.1.tgz",
"integrity": "sha512-3KNg6/MJNMN25o0psBbCWzhJNFjtT5NtYJPrFwGHbAfVWvMTRqNftoyrhR490Ac0q2eMKIXkULl1HVn3izrAuw==",
"dependencies": {
"@react-aria/utils": "^3.16.0",
"@react-types/label": "^3.7.3",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/link": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.5.0.tgz",
"integrity": "sha512-GcQEHL1MauvTEfqWy4JGP7/bHPaJZ8QJKmDOKrCQCzcT4ts+YaaG6dGGzkkaKK7gymRAF4ePHWWFHySN5mSE7w==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/interactions": "^3.15.0",
"@react-aria/utils": "^3.16.0",
"@react-types/link": "^3.4.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/listbox": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.9.0.tgz",
"integrity": "sha512-CWJBw+R9eGrd2I/RRIpXeTmCTiJRPz9JgL2EYage1+8lCV0sp7HIH2StTMsVBzCA1eH+vJ06LBcPuiZBdtZFlA==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/interactions": "^3.15.0",
"@react-aria/label": "^3.5.1",
"@react-aria/selection": "^3.14.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/collections": "^3.7.0",
"@react-stately/list": "^3.8.0",
"@react-types/listbox": "^3.4.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/live-announcer": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.3.0.tgz",
"integrity": "sha512-6diTS6mIf70KdxfGqiDxHV+9Qv8a9A88EqBllzXGF6HWPdcwde/GIEmfpTwj8g1ImNGZYUwDkv4Hd9lFj0MXEg==",
"dependencies": {
"@swc/helpers": "^0.4.14"
}
},
"node_modules/@react-aria/menu": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.9.0.tgz",
"integrity": "sha512-lIbfWzFvYE7EPOno3lVogXHlc6fzswymlpJWiMBKaB68wkfCtknIIL1cwWssiwgGU63v08H5YpQOZdxRwux2PQ==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/overlays": "^3.14.0",
"@react-aria/selection": "^3.14.0",
"@react-aria/utils": "^3.16.0",
"@react-stately/collections": "^3.7.0",
"@react-stately/menu": "^3.5.1",
"@react-stately/tree": "^3.6.0",
"@react-types/button": "^3.7.2",
"@react-types/menu": "^3.9.0",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/meter": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.1.tgz",
"integrity": "sha512-z+FGa8mZgLk/A0leNrGXb43YnOafRea+pZbDQvRQZa5E9kNIVhXaIfFrs0f+Wro8rnOPM8G2V17/XSfy9M809A==",
"dependencies": {
"@react-aria/progress": "^3.4.1",
"@react-types/meter": "^3.3.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/numberfield": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.5.0.tgz",
"integrity": "sha512-gOe0BKrYGXrjqn0dkMuMoB+WYzn1qwxR7QvKwwfceutUmirjEvMSQOldnBhHao55pxd4/4bWssrEHhJb7YmPiQ==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/spinbutton": "^3.4.0",
"@react-aria/textfield": "^3.9.1",
"@react-aria/utils": "^3.16.0",
"@react-stately/numberfield": "^3.4.1",
"@react-types/button": "^3.7.2",
"@react-types/numberfield": "^3.4.1",
"@react-types/shared": "^3.18.0",
"@react-types/textfield": "^3.7.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/overlays": {
"version": "3.14.0",
"resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.14.0.tgz",
"integrity": "sha512-lt4vOj44ho0LpmpaHwQ4VgX7eNfKXig9VD7cvE9u7uyECG51jqt9go19s4+/O+otX7pPrhdYlEB2FxLFJocxfw==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/ssr": "^3.6.0",
"@react-aria/utils": "^3.16.0",
"@react-aria/visually-hidden": "^3.8.0",
"@react-stately/overlays": "^3.5.1",
"@react-types/button": "^3.7.2",
"@react-types/overlays": "^3.7.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/progress": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.1.tgz",
"integrity": "sha512-hSM4TDfL9Sy0hMFEEXjYsKDR1ZnNdVV8EQ6WDe1RdHkqifKtbEoUC5fvQu5ZdPx65jG6xWx/WG9Mv/ylMiYnig==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",
"@react-aria/label": "^3.5.1",
"@react-aria/utils": "^3.16.0",
"@react-types/progress": "^3.4.0",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/radio": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.6.0.tgz",
"integrity": "sha512-yMyaqFSf05P8w4LE50ENIJza4iM74CEyAhVlQwxRszXhJk6uro5bnxTSJqPrdRdI5+anwOijH53+x5dISO3KWA==",
"dependencies": {
"@react-aria/focus": "^3.12.0",
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/label": "^3.5.1",
"@react-aria/utils": "^3.16.0",
"@react-stately/radio": "^3.8.0",
"@react-types/radio": "^3.4.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/searchfield": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.5.1.tgz",
"integrity": "sha512-gJQWgBIycxZXdmluHWUdCGN5gSArLJnDnuri3el8ECURZM7C+zxDeHd6A8xlKPNF+m5X0HcarrDAnEdXNjKKlQ==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",
"@react-aria/interactions": "^3.15.0",
"@react-aria/textfield": "^3.9.1",
"@react-aria/utils": "^3.16.0",
"@react-stately/searchfield": "^3.4.1",
"@react-types/button": "^3.7.2",
"@react-types/searchfield": "^3.4.1",
"@react-types/shared": "^3.18.0",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/select": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.10.0.tgz",
"integrity": "sha512-Adn/uQdGj0BUTe/gqvhtyEdkUQ0j0oZPrhxo6MIwXiX3vyu/GJJBgeSe67Z848iZvYzVk3iheFS88qvwmJ0Qbg==",
"dependencies": {
"@react-aria/i18n": "^3.7.1",