-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
2928 lines (2928 loc) · 116 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": "randomlistpicker-api",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"@igloo-ui/list": "^0.2.0",
"@igloo-ui/tag-picker": "^0.1.4",
"gray-matter": "^4.0.3",
"next": "latest",
"random-seed": "^0.3.0",
"react": "18.2.0",
"react-dom": "18.2.0"
}
},
"node_modules/@floating-ui/core": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.2.6.tgz",
"integrity": "sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg=="
},
"node_modules/@floating-ui/dom": {
"version": "1.2.9",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.2.9.tgz",
"integrity": "sha512-sosQxsqgxMNkV3C+3UqTS6LxP7isRLwX8WMepp843Rb3/b0Wz8+MdUkxJksByip3C2WwLugLHN1b4ibn//zKwQ==",
"dependencies": {
"@floating-ui/core": "^1.2.6"
}
},
"node_modules/@floating-ui/react": {
"version": "0.23.1",
"resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.23.1.tgz",
"integrity": "sha512-OCc2ViQOBUKOGcE9NLAbpyqB+8Zz92IKIhxgz7XAkynKkVzcVSKtkWOcgyvO4SAzB2OybgRwk3WdzdzDRdh2QQ==",
"dependencies": {
"@floating-ui/react-dom": "^1.3.0",
"aria-hidden": "^1.1.3",
"tabbable": "^6.0.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/@floating-ui/react-dom": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz",
"integrity": "sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==",
"dependencies": {
"@floating-ui/dom": "^1.2.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.15.0.tgz",
"integrity": "sha512-7bAYAv0w4AIao9DNg0avfOLTCPE9woAgs6SpXuMq11IN3A+l+cq8ghczwqSZBM11myvPSJA7vLn72q0rJ0QK6Q==",
"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.4.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.4.0.tgz",
"integrity": "sha512-6Dh5Z/gp4F/HovXXu/vmd0If5NbYLB5dZrmhWVNb+BOGOEU3wt7Z/83KY1dtd7IDhAnYHasbmKE1RbTE0J+3hw==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.15.0",
"@formatjs/icu-skeleton-parser": "1.4.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.4.0.tgz",
"integrity": "sha512-Qq347VM616rVLkvN6QsKJELazRyNlbCiN47LdH0Mc5U7E2xV0vatiVhGqd3KFgbc055BvtnUXR7XX60dCGFuWg==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.15.0",
"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/@igloo-ui/button": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@igloo-ui/button/-/button-0.4.2.tgz",
"integrity": "sha512-m0KR2hodc2tCnScNGV0gTimrcC2pQibpCZ3BcbyPqGzp4bc9YGS1YK1grXsnMeoLENxXALAM+Qy52auVJJSXUQ==",
"dependencies": {
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/checkbox": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@igloo-ui/checkbox/-/checkbox-0.1.9.tgz",
"integrity": "sha512-QzycxD0JK/i4IvEr4eqlZGKKbGXS0rEsSjiPKum9cQDX6boqBlTy3tZHk5IaxCkd0yLXx6fi9BI1eu4zzpd4Sg==",
"dependencies": {
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/dropdown": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@igloo-ui/dropdown/-/dropdown-1.2.0.tgz",
"integrity": "sha512-psrvLWjxDIMYbqsqhS0p+LIyQ1zWYS3Tz8OnTkYSEktb1SvOCdNJIKOUDRRlIzPXIxXS3WvIof8rR4+LELWaDw==",
"dependencies": {
"@floating-ui/react": "^0.23.0",
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/ellipsis": {
"version": "0.1.10",
"resolved": "https://registry.npmjs.org/@igloo-ui/ellipsis/-/ellipsis-0.1.10.tgz",
"integrity": "sha512-pOZDM3wz2orRQvMRSlwtF9tnWbtiXSMGeJNKE4W2lxnNAjoDlbhpK4XOeUfGZRVgRW75YERLqw30vxTK+Jdllw==",
"dependencies": {
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/icon-button": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@igloo-ui/icon-button/-/icon-button-1.0.1.tgz",
"integrity": "sha512-veh5uGpAcdXP/SDV4oiyXEcR2Wt/Nn9gqZChSXWFJeMBaG7CKWjrcQ+gbZ+ObgluL6NQMK00WiC3pyaq7RKpPA==",
"dependencies": {
"@igloo-ui/button": "^0.4.1",
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/input": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@igloo-ui/input/-/input-2.0.5.tgz",
"integrity": "sha512-COuI0ZKkFxWJ/jB6C7YrlYBzshZEdBZ45fGK55tUoQlwR9lOckbK8IbUTRJiq6O7P9e+yEm9FQrUIMUeAz4sTw==",
"dependencies": {
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/list": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@igloo-ui/list/-/list-0.2.0.tgz",
"integrity": "sha512-uMTE/keHwQW2TOPyadMLykyomNT2k99GrIxc8DpG3pvggl9FYIoczwvLN8k4oi2z/nRAIlMWR7awGJ38sNBI9w==",
"dependencies": {
"@igloo-ui/checkbox": "^0.1.9",
"@igloo-ui/icons": "^1.6.0",
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/list/node_modules/@igloo-ui/icons": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@igloo-ui/icons/-/icons-1.7.0.tgz",
"integrity": "sha512-9Y8zMxjrW72iUv2K1RwmU2od49GL1JXbvcSPRsjJFNduNLMgPXnbpSKIxKTV7/qhmEoxktSy6vICKpdxQP1q3w==",
"dependencies": {
"classnames": "^2.3.1",
"html-react-parser": "^1.2.7"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2"
}
},
"node_modules/@igloo-ui/tag": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@igloo-ui/tag/-/tag-1.0.6.tgz",
"integrity": "sha512-QzxupG9IAqIA8Zw+5s4jVau0x/xfwHxbA3jofbCeNRK3mAvOYELyp1hjY0cu9GWkzDW2k8ES6HOK8NDnySRvxQ==",
"dependencies": {
"@igloo-ui/ellipsis": "^0.1.10",
"@igloo-ui/icon-button": "^1.0.1",
"@igloo-ui/icons": "^1.6.0",
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/tag-picker": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/@igloo-ui/tag-picker/-/tag-picker-0.1.4.tgz",
"integrity": "sha512-8FmIpmilIh6RsqECdNyy7JpXe9g0SY1XGsn12KW/PHCy3+Mn3NBxOVaYbSTT5iKkEUtcuKxMzhwQQomxZg568g==",
"dependencies": {
"@igloo-ui/dropdown": "^1.1.4",
"@igloo-ui/input": "^2.0.4",
"@igloo-ui/tag": "^1.0.6",
"@igloo-ui/tokens": "^2.0.0",
"classnames": "^2.3.2",
"react-aria": "^3.21.0"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
},
"node_modules/@igloo-ui/tag/node_modules/@igloo-ui/icons": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@igloo-ui/icons/-/icons-1.7.0.tgz",
"integrity": "sha512-9Y8zMxjrW72iUv2K1RwmU2od49GL1JXbvcSPRsjJFNduNLMgPXnbpSKIxKTV7/qhmEoxktSy6vICKpdxQP1q3w==",
"dependencies": {
"classnames": "^2.3.1",
"html-react-parser": "^1.2.7"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2"
}
},
"node_modules/@igloo-ui/tokens": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@igloo-ui/tokens/-/tokens-2.0.0.tgz",
"integrity": "sha512-pkwNI08nUBq6021auftK6LcaPpIro6jhQqBU87RDRfrH+Y3783jghYH5rsCsty5UJRVP3OUUEZLSjHAgh5cTdA=="
},
"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/date/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"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/message/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.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/number/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"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/@internationalized/string/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@next/env": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.4.tgz",
"integrity": "sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg=="
},
"node_modules/@next/swc-darwin-arm64": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.4.tgz",
"integrity": "sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.4.tgz",
"integrity": "sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.4.tgz",
"integrity": "sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-musl": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.4.tgz",
"integrity": "sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-gnu": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.4.tgz",
"integrity": "sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-musl": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.4.tgz",
"integrity": "sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.4.tgz",
"integrity": "sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.4.tgz",
"integrity": "sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.4.tgz",
"integrity": "sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@react-aria/breadcrumbs": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.2.tgz",
"integrity": "sha512-un10i3vzT7oCftb6jzbMkt6BI/WGlkr+JvWLWFl9CFXH4AlsIU8jWEsrVFUCySSI8Xsj43074zLsnpxgxLgSOA==",
"dependencies": {
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/link": "^3.5.1",
"@react-aria/utils": "^3.17.0",
"@react-types/breadcrumbs": "^3.5.2",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/breadcrumbs/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/button": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.7.2.tgz",
"integrity": "sha512-flsnMy1xDaTDL+xDzLDeXDAiqNTgbd19R6e4fsDzDPk/mlPgvOSKQtZjswIru4rJR+d29a7LXDemBN/iJEe/3w==",
"dependencies": {
"@react-aria/focus": "^3.12.1",
"@react-aria/interactions": "^3.15.1",
"@react-aria/utils": "^3.17.0",
"@react-stately/toggle": "^3.5.2",
"@react-types/button": "^3.7.3",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/button/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/calendar": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.3.0.tgz",
"integrity": "sha512-K8KATJQjd7xsb9aTe6Cx0/22JrHAiONspSwyGlQlJhHUnpnB6VRvPlVxfEClnbA+oVt04s/vJ87WGVnRNoFI5g==",
"dependencies": {
"@internationalized/date": "^3.2.0",
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/utils": "^3.17.0",
"@react-stately/calendar": "^3.2.1",
"@react-types/button": "^3.7.3",
"@react-types/calendar": "^3.2.1",
"@react-types/shared": "^3.18.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/calendar/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/checkbox": {
"version": "3.9.1",
"resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.9.1.tgz",
"integrity": "sha512-1TmaqrQ419K6p9KU9v5cGHjStH4p9vOGZsfYYO8RXsQsXmZ7vcK7rjytMeCTdExovU74xK9oXNh64c15Yh9EEA==",
"dependencies": {
"@react-aria/label": "^3.5.2",
"@react-aria/toggle": "^3.6.1",
"@react-aria/utils": "^3.17.0",
"@react-stately/checkbox": "^3.4.2",
"@react-stately/toggle": "^3.5.2",
"@react-types/checkbox": "^3.4.4",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/checkbox/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/combobox": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.6.1.tgz",
"integrity": "sha512-FdIFAV9appfN5DfoZoJ1D+ZJS3Xp5Kro1oPUPnz9XgthwYV98JinQ5aMBKI4+df0mLmU5z1T3DWbqUuDheUCwg==",
"dependencies": {
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/listbox": "^3.9.1",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/menu": "^3.9.1",
"@react-aria/overlays": "^3.14.1",
"@react-aria/selection": "^3.15.0",
"@react-aria/textfield": "^3.9.2",
"@react-aria/utils": "^3.17.0",
"@react-stately/collections": "^3.8.0",
"@react-stately/combobox": "^3.5.1",
"@react-stately/layout": "^3.12.1",
"@react-types/button": "^3.7.3",
"@react-types/combobox": "^3.6.2",
"@react-types/shared": "^3.18.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/combobox/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/datepicker": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.4.1.tgz",
"integrity": "sha512-SRfMwXgLw64WFB7+2uUNjlq4DkOEBNIxuAl5inpk6gef3kK7izSzktbI90uFSA8lcGiN/nIv9G3I2vjz3k1y5Q==",
"dependencies": {
"@internationalized/date": "^3.2.0",
"@internationalized/number": "^3.2.0",
"@internationalized/string": "^3.1.0",
"@react-aria/focus": "^3.12.1",
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/label": "^3.5.2",
"@react-aria/spinbutton": "^3.4.1",
"@react-aria/utils": "^3.17.0",
"@react-stately/datepicker": "^3.4.1",
"@react-types/button": "^3.7.3",
"@react-types/calendar": "^3.2.1",
"@react-types/datepicker": "^3.3.1",
"@react-types/dialog": "^3.5.2",
"@react-types/shared": "^3.18.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/datepicker/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/dialog": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.2.tgz",
"integrity": "sha512-iKPuk1I9rFHj0y5cjYIoMj4AFeBhWeWWfFDmOuzDx9rsOK6l9jrcAV69LVXtWVJhsmmJs5TP5Ly4OlvpB+9rjA==",
"dependencies": {
"@react-aria/focus": "^3.12.1",
"@react-aria/overlays": "^3.14.1",
"@react-aria/utils": "^3.17.0",
"@react-stately/overlays": "^3.5.2",
"@react-types/dialog": "^3.5.2",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/dialog/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/dnd": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.2.1.tgz",
"integrity": "sha512-9XvUvBSdaMGD8kwNzbSt+eA0wK465KNrsRJvqYIwUTXhrVjbomzXPm8NQ1e9Y8f7j1vSZU1BlMky0861SHwbWg==",
"dependencies": {
"@internationalized/string": "^3.1.0",
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/overlays": "^3.14.1",
"@react-aria/utils": "^3.17.0",
"@react-aria/visually-hidden": "^3.8.1",
"@react-stately/dnd": "^3.2.1",
"@react-types/button": "^3.7.3",
"@react-types/shared": "^3.18.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/dnd/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/focus": {
"version": "3.12.1",
"resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.12.1.tgz",
"integrity": "sha512-i1bRz27mRFnrDpYpRvm/6Zm+FbGo0WygNQiLVgTce7WY+39oLERIGRrE8Ovy6rY9Hr4MGBAXz2Q+o9oTOgeBgA==",
"dependencies": {
"@react-aria/interactions": "^3.15.1",
"@react-aria/utils": "^3.17.0",
"@react-types/shared": "^3.18.1",
"@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/focus/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/grid": {
"version": "3.7.1",
"resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.7.1.tgz",
"integrity": "sha512-CwrRbX1GuLJnQugB3fkujMPjFEJNyzcy+niuAwRMn768Y9MD8swDMwGrKL362NddF2jSCCwIxqA0qjCPeD4S2w==",
"dependencies": {
"@react-aria/focus": "^3.12.1",
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/selection": "^3.15.0",
"@react-aria/utils": "^3.17.0",
"@react-stately/collections": "^3.8.0",
"@react-stately/grid": "^3.6.1",
"@react-stately/selection": "^3.13.1",
"@react-stately/virtualizer": "^3.5.2",
"@react-types/checkbox": "^3.4.4",
"@react-types/grid": "^3.1.8",
"@react-types/shared": "^3.18.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/grid/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/gridlist": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.4.0.tgz",
"integrity": "sha512-qV0XIdUrAJMlj+H4d5kL8cH5AFq8m9oNzcDfiA9ku1zsJ9yd3l1waSOyIWlrFZkaIIdkgFUDM4RzgvNHm+WA0Q==",
"dependencies": {
"@react-aria/focus": "^3.12.1",
"@react-aria/grid": "^3.7.1",
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/selection": "^3.15.0",
"@react-aria/utils": "^3.17.0",
"@react-stately/list": "^3.8.1",
"@react-types/checkbox": "^3.4.4",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/gridlist/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/i18n": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.7.2.tgz",
"integrity": "sha512-GsVioW8RGOmwebTruEBAmGYJunY0WS7Ljfn5n7Mec3eoMKdQjH2M70fHwCOWqJo8Ufq7A7p0ypBVCv4d4sbSdw==",
"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.17.0",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/i18n/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/interactions": {
"version": "3.15.1",
"resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.15.1.tgz",
"integrity": "sha512-khtpxSvos885rxMep6DRe8RGZjtD16ZuLxhFBtL1dXqSv5XZxaXKOmI8Yx1F8AkVIPdB72MmjG8dz3PpM3PPYg==",
"dependencies": {
"@react-aria/ssr": "^3.6.0",
"@react-aria/utils": "^3.17.0",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/interactions/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/label": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.5.2.tgz",
"integrity": "sha512-YtLJl3l11TKzGhSMuUqp1DdQ6s3hbT1buiC+jPPKv81PcjjoUDpj+hAVnc1cigtvrEFSMpi2Z+KYREmYYj4GDQ==",
"dependencies": {
"@react-aria/utils": "^3.17.0",
"@react-types/label": "^3.7.4",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/label/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/link": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.5.1.tgz",
"integrity": "sha512-eVdbmiae/Y3B5k78bakx2x43c69cqvEk/g38kjRI4lNa1WsQMdV/3HXjuWa3KA+c3ajn0kTAXO6inHKGtJ9d6w==",
"dependencies": {
"@react-aria/focus": "^3.12.1",
"@react-aria/interactions": "^3.15.1",
"@react-aria/utils": "^3.17.0",
"@react-types/link": "^3.4.2",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/link/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/listbox": {
"version": "3.9.1",
"resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.9.1.tgz",
"integrity": "sha512-tRcqNHGx9Vtspth9zdOLEfbGGaLrTN/rDXg0xN2FT++qxwALuYV7R4qFUX7eTPCT+NDOqeQNOCsHyQF4gQN+JQ==",
"dependencies": {
"@react-aria/focus": "^3.12.1",
"@react-aria/interactions": "^3.15.1",
"@react-aria/label": "^3.5.2",
"@react-aria/selection": "^3.15.0",
"@react-aria/utils": "^3.17.0",
"@react-stately/collections": "^3.8.0",
"@react-stately/list": "^3.8.1",
"@react-types/listbox": "^3.4.2",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/listbox/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.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/live-announcer/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/menu": {
"version": "3.9.1",
"resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.9.1.tgz",
"integrity": "sha512-LRSo7KyVxoFxrjj55VtxMKJ6/c3LhfZThytWFvA9r02Ukf1B0xn/Or8rgyVyHcyekvcmT4IDrjFl1tDG2wsq4g==",
"dependencies": {
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/overlays": "^3.14.1",
"@react-aria/selection": "^3.15.0",
"@react-aria/utils": "^3.17.0",
"@react-stately/collections": "^3.8.0",
"@react-stately/menu": "^3.5.2",
"@react-stately/tree": "^3.6.1",
"@react-types/button": "^3.7.3",
"@react-types/menu": "^3.9.1",
"@react-types/shared": "^3.18.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/menu/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/meter": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.2.tgz",
"integrity": "sha512-3qcWeCiLuauwQdLHOc/RssuxEEhYWEy+TXNNE2P6zKvduuL19JKKljpuI1SpQSQ4nAamIGZwGBwHdAoZpLx3Kw==",
"dependencies": {
"@react-aria/progress": "^3.4.2",
"@react-types/meter": "^3.3.2",
"@react-types/shared": "^3.18.1",
"@swc/helpers": "^0.4.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/meter/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/numberfield": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.5.1.tgz",
"integrity": "sha512-O0hDANrlwsKSKjiV64Ryx1FfNxkuByU9qXKz7vpMf8ZeR3OLAYzvib1RNeFvijM9/TUGp1zA40cwGknEp6D72w==",
"dependencies": {
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/live-announcer": "^3.3.0",
"@react-aria/spinbutton": "^3.4.1",
"@react-aria/textfield": "^3.9.2",
"@react-aria/utils": "^3.17.0",
"@react-stately/numberfield": "^3.4.2",
"@react-types/button": "^3.7.3",
"@react-types/numberfield": "^3.4.2",
"@react-types/shared": "^3.18.1",
"@react-types/textfield": "^3.7.2",
"@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/numberfield/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@react-aria/overlays": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.14.1.tgz",
"integrity": "sha512-xJCw0oSDtwBCCqf0EMMeeLYOEFSCdd1cWFS0O3980SObFQPHwP5KOX5SAs7lVvIlZUvEdpo6sOytcQTjv5U9QA==",
"dependencies": {
"@react-aria/focus": "^3.12.1",
"@react-aria/i18n": "^3.7.2",
"@react-aria/interactions": "^3.15.1",
"@react-aria/ssr": "^3.6.0",
"@react-aria/utils": "^3.17.0",