forked from GodPuffin/argus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.lock
More file actions
2605 lines (2605 loc) · 99.6 KB
/
deno.lock
File metadata and controls
2605 lines (2605 loc) · 99.6 KB
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
{
"version": "5",
"specifiers": {
"npm:@biomejs/biome@2.2.0": "2.2.0",
"npm:@dnd-kit/core@^6.3.1": "6.3.1_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@dnd-kit/modifiers@9": "9.0.0_@dnd-kit+core@6.3.1__react@19.1.0__react-dom@19.1.0___react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@dnd-kit/sortable@10": "10.0.0_@dnd-kit+core@6.3.1__react@19.1.0__react-dom@19.1.0___react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@dnd-kit/utilities@^3.2.2": "3.2.2_react@19.1.0",
"npm:@elastic/elasticsearch@^9.1.1": "9.1.1",
"npm:@mux/blurup@^1.0.2": "1.0.2",
"npm:@mux/mux-player-react@^3.6.1": "3.6.1_@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@mux/upchunk@^3.5.0": "3.5.0",
"npm:@radix-ui/react-alert-dialog@^1.1.15": "1.1.15_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-avatar@^1.1.10": "1.1.10_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-checkbox@^1.3.3": "1.3.3_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-dialog@^1.1.15": "1.1.15_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-dropdown-menu@^2.1.16": "2.1.16_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-label@^2.1.7": "2.1.7_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-popover@^1.1.15": "1.1.15_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-scroll-area@^1.2.10": "1.2.10_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-select@^2.2.6": "2.2.6_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-separator@^1.1.7": "1.1.7_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-slider@^1.3.6": "1.3.6_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-slot@^1.2.3": "1.2.3_@types+react@19.2.2_react@19.1.0",
"npm:@radix-ui/react-tabs@^1.1.13": "1.1.13_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-toggle-group@^1.1.11": "1.1.11_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-toggle@^1.1.10": "1.1.10_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@radix-ui/react-tooltip@^1.2.8": "1.2.8_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@react-three/fiber@^9.4.0": "9.4.0_react@19.1.0_react-dom@19.1.0__react@19.1.0_three@0.180.0_@types+react@19.2.2_use-sync-external-store@1.6.0__react@19.1.0",
"npm:@react-three/postprocessing@^3.0.4": "3.0.4_@react-three+fiber@9.4.0__react@19.1.0__react-dom@19.1.0___react@19.1.0__three@0.180.0__@types+react@19.2.2__use-sync-external-store@1.6.0___react@19.1.0_react@19.1.0_three@0.180.0_react-dom@19.1.0__react@19.1.0_postprocessing@6.37.8__three@0.180.0_@types+react@19.2.2",
"npm:@supabase/supabase-js@^2.75.1": "2.76.0",
"npm:@tabler/icons-react@^3.35.0": "3.35.0_react@19.1.0",
"npm:@tailwindcss/postcss@4": "4.1.15",
"npm:@tanstack/react-table@^8.21.3": "8.21.3_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:@types/node@20": "20.19.23",
"npm:@types/react-dom@19": "19.2.2_@types+react@19.2.2",
"npm:@types/react@19": "19.2.2",
"npm:@types/ws@^8.18.1": "8.18.1",
"npm:class-variance-authority@~0.7.1": "0.7.1",
"npm:clsx@^2.1.1": "2.1.1",
"npm:date-fns@^4.1.0": "4.1.0",
"npm:framer-motion@^12.23.24": "12.23.24_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:gsap@^3.13.0": "3.13.0",
"npm:lucide-react@0.546": "0.546.0_react@19.1.0",
"npm:next-themes@~0.4.6": "0.4.6_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:next@15.5.5": "15.5.5_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:nodemon@^3.1.10": "3.1.10",
"npm:postprocessing@^6.37.8": "6.37.8_three@0.180.0",
"npm:react-day-picker@^9.11.1": "9.11.1_react@19.1.0",
"npm:react-dom@19.1.0": "19.1.0_react@19.1.0",
"npm:react@19.1.0": "19.1.0",
"npm:recharts@2.15.4": "2.15.4_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:sonner@^2.0.7": "2.0.7_react@19.1.0_react-dom@19.1.0__react@19.1.0",
"npm:tailwind-merge@^3.3.1": "3.3.1",
"npm:tailwindcss@4": "4.1.15",
"npm:three@0.180": "0.180.0",
"npm:tw-animate-css@^1.4.0": "1.4.0",
"npm:typescript@5": "5.9.3",
"npm:vaul@^1.1.2": "1.1.2_react@19.1.0_react-dom@19.1.0__react@19.1.0_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2",
"npm:ws@^8.18.3": "8.18.3",
"npm:zod@^4.1.12": "4.1.12"
},
"npm": {
"@alloc/quick-lru@5.2.0": {
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
},
"@babel/runtime@7.28.4": {
"integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ=="
},
"@biomejs/biome@2.2.0": {
"integrity": "sha512-3On3RSYLsX+n9KnoSgfoYlckYBoU6VRM22cw1gB4Y0OuUVSYd/O/2saOJMrA4HFfA1Ff0eacOvMN1yAAvHtzIw==",
"optionalDependencies": [
"@biomejs/cli-darwin-arm64",
"@biomejs/cli-darwin-x64",
"@biomejs/cli-linux-arm64",
"@biomejs/cli-linux-arm64-musl",
"@biomejs/cli-linux-x64",
"@biomejs/cli-linux-x64-musl",
"@biomejs/cli-win32-arm64",
"@biomejs/cli-win32-x64"
],
"bin": true
},
"@biomejs/cli-darwin-arm64@2.2.0": {
"integrity": "sha512-zKbwUUh+9uFmWfS8IFxmVD6XwqFcENjZvEyfOxHs1epjdH3wyyMQG80FGDsmauPwS2r5kXdEM0v/+dTIA9FXAg==",
"os": ["darwin"],
"cpu": ["arm64"]
},
"@biomejs/cli-darwin-x64@2.2.0": {
"integrity": "sha512-+OmT4dsX2eTfhD5crUOPw3RPhaR+SKVspvGVmSdZ9y9O/AgL8pla6T4hOn1q+VAFBHuHhsdxDRJgFCSC7RaMOw==",
"os": ["darwin"],
"cpu": ["x64"]
},
"@biomejs/cli-linux-arm64-musl@2.2.0": {
"integrity": "sha512-egKpOa+4FL9YO+SMUMLUvf543cprjevNc3CAgDNFLcjknuNMcZ0GLJYa3EGTCR2xIkIUJDVneBV3O9OcIlCEZQ==",
"os": ["linux"],
"cpu": ["arm64"]
},
"@biomejs/cli-linux-arm64@2.2.0": {
"integrity": "sha512-6eoRdF2yW5FnW9Lpeivh7Mayhq0KDdaDMYOJnH9aT02KuSIX5V1HmWJCQQPwIQbhDh68Zrcpl8inRlTEan0SXw==",
"os": ["linux"],
"cpu": ["arm64"]
},
"@biomejs/cli-linux-x64-musl@2.2.0": {
"integrity": "sha512-I5J85yWwUWpgJyC1CcytNSGusu2p9HjDnOPAFG4Y515hwRD0jpR9sT9/T1cKHtuCvEQ/sBvx+6zhz9l9wEJGAg==",
"os": ["linux"],
"cpu": ["x64"]
},
"@biomejs/cli-linux-x64@2.2.0": {
"integrity": "sha512-5UmQx/OZAfJfi25zAnAGHUMuOd+LOsliIt119x2soA2gLggQYrVPA+2kMUxR6Mw5M1deUF/AWWP2qpxgH7Nyfw==",
"os": ["linux"],
"cpu": ["x64"]
},
"@biomejs/cli-win32-arm64@2.2.0": {
"integrity": "sha512-n9a1/f2CwIDmNMNkFs+JI0ZjFnMO0jdOyGNtihgUNFnlmd84yIYY2KMTBmMV58ZlVHjgmY5Y6E1hVTnSRieggA==",
"os": ["win32"],
"cpu": ["arm64"]
},
"@biomejs/cli-win32-x64@2.2.0": {
"integrity": "sha512-Nawu5nHjP/zPKTIryh2AavzTc/KEg4um/MxWdXW0A6P/RZOyIpa7+QSjeXwAwX/utJGaCoXRPWtF3m5U/bB3Ww==",
"os": ["win32"],
"cpu": ["x64"]
},
"@date-fns/tz@1.4.1": {
"integrity": "sha512-P5LUNhtbj6YfI3iJjw5EL9eUAG6OitD0W3fWQcpQjDRc/QIsL0tRNuO1PcDvPccWL1fSTXXdE1ds+l95DV/OFA=="
},
"@dimforge/rapier3d-compat@0.12.0": {
"integrity": "sha512-uekIGetywIgopfD97oDL5PfeezkFpNhwlzlaEYNOA0N6ghdsOvh/HYjSMek5Q2O1PYvRSDFcqFVJl4r4ZBwOow=="
},
"@dnd-kit/accessibility@3.1.1_react@19.1.0": {
"integrity": "sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==",
"dependencies": [
"react",
"tslib"
]
},
"@dnd-kit/core@6.3.1_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==",
"dependencies": [
"@dnd-kit/accessibility",
"@dnd-kit/utilities",
"react",
"react-dom",
"tslib"
]
},
"@dnd-kit/modifiers@9.0.0_@dnd-kit+core@6.3.1__react@19.1.0__react-dom@19.1.0___react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-ybiLc66qRGuZoC20wdSSG6pDXFikui/dCNGthxv4Ndy8ylErY0N3KVxY2bgo7AWwIbxDmXDg3ylAFmnrjcbVvw==",
"dependencies": [
"@dnd-kit/core",
"@dnd-kit/utilities",
"react",
"tslib"
]
},
"@dnd-kit/sortable@10.0.0_@dnd-kit+core@6.3.1__react@19.1.0__react-dom@19.1.0___react@19.1.0_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-+xqhmIIzvAYMGfBYYnbKuNicfSsk4RksY2XdmJhT+HAC01nix6fHCztU68jooFiMUB01Ky3F0FyOvhG/BZrWkg==",
"dependencies": [
"@dnd-kit/core",
"@dnd-kit/utilities",
"react",
"tslib"
]
},
"@dnd-kit/utilities@3.2.2_react@19.1.0": {
"integrity": "sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==",
"dependencies": [
"react",
"tslib"
]
},
"@elastic/elasticsearch@9.1.1": {
"integrity": "sha512-s/JZtHZjtbAYC2gdSzm4LLOSReR724e7cf7ZauIAZlGvAyMgZPZCJpq7xHazSy4rZZhule4ubMs4vepBgWvKQA==",
"dependencies": [
"@elastic/transport",
"apache-arrow",
"tslib"
]
},
"@elastic/transport@9.2.0_@opentelemetry+api@1.9.0": {
"integrity": "sha512-2HpxEX9eQE/viokiKHqRa1n3RaFqNKoOU5gc7AOJ4ahG9xZbim+Z3OdBwshW9aKuFeIn1WPtZxSrfghZ0UJFtg==",
"dependencies": [
"@opentelemetry/api",
"@opentelemetry/core",
"debug",
"hpagent",
"ms",
"secure-json-parse",
"tslib",
"undici"
]
},
"@emnapi/runtime@1.6.0": {
"integrity": "sha512-obtUmAHTMjll499P+D9A3axeJFlhdjOWdKUNs/U6QIGT7V5RjcUW1xToAzjvmgTSQhDbYn/NwfTRoJcQ2rNBxA==",
"dependencies": [
"tslib"
]
},
"@floating-ui/core@1.7.3": {
"integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==",
"dependencies": [
"@floating-ui/utils"
]
},
"@floating-ui/dom@1.7.4": {
"integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==",
"dependencies": [
"@floating-ui/core",
"@floating-ui/utils"
]
},
"@floating-ui/react-dom@2.1.6_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==",
"dependencies": [
"@floating-ui/dom",
"react",
"react-dom"
]
},
"@floating-ui/utils@0.2.10": {
"integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ=="
},
"@img/colour@1.0.0": {
"integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw=="
},
"@img/sharp-darwin-arm64@0.34.4": {
"integrity": "sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==",
"optionalDependencies": [
"@img/sharp-libvips-darwin-arm64"
],
"os": ["darwin"],
"cpu": ["arm64"]
},
"@img/sharp-darwin-x64@0.34.4": {
"integrity": "sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==",
"optionalDependencies": [
"@img/sharp-libvips-darwin-x64"
],
"os": ["darwin"],
"cpu": ["x64"]
},
"@img/sharp-libvips-darwin-arm64@1.2.3": {
"integrity": "sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==",
"os": ["darwin"],
"cpu": ["arm64"]
},
"@img/sharp-libvips-darwin-x64@1.2.3": {
"integrity": "sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==",
"os": ["darwin"],
"cpu": ["x64"]
},
"@img/sharp-libvips-linux-arm64@1.2.3": {
"integrity": "sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==",
"os": ["linux"],
"cpu": ["arm64"]
},
"@img/sharp-libvips-linux-arm@1.2.3": {
"integrity": "sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==",
"os": ["linux"],
"cpu": ["arm"]
},
"@img/sharp-libvips-linux-ppc64@1.2.3": {
"integrity": "sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==",
"os": ["linux"],
"cpu": ["ppc64"]
},
"@img/sharp-libvips-linux-s390x@1.2.3": {
"integrity": "sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==",
"os": ["linux"],
"cpu": ["s390x"]
},
"@img/sharp-libvips-linux-x64@1.2.3": {
"integrity": "sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==",
"os": ["linux"],
"cpu": ["x64"]
},
"@img/sharp-libvips-linuxmusl-arm64@1.2.3": {
"integrity": "sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==",
"os": ["linux"],
"cpu": ["arm64"]
},
"@img/sharp-libvips-linuxmusl-x64@1.2.3": {
"integrity": "sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==",
"os": ["linux"],
"cpu": ["x64"]
},
"@img/sharp-linux-arm64@0.34.4": {
"integrity": "sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==",
"optionalDependencies": [
"@img/sharp-libvips-linux-arm64"
],
"os": ["linux"],
"cpu": ["arm64"]
},
"@img/sharp-linux-arm@0.34.4": {
"integrity": "sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==",
"optionalDependencies": [
"@img/sharp-libvips-linux-arm"
],
"os": ["linux"],
"cpu": ["arm"]
},
"@img/sharp-linux-ppc64@0.34.4": {
"integrity": "sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==",
"optionalDependencies": [
"@img/sharp-libvips-linux-ppc64"
],
"os": ["linux"],
"cpu": ["ppc64"]
},
"@img/sharp-linux-s390x@0.34.4": {
"integrity": "sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==",
"optionalDependencies": [
"@img/sharp-libvips-linux-s390x"
],
"os": ["linux"],
"cpu": ["s390x"]
},
"@img/sharp-linux-x64@0.34.4": {
"integrity": "sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==",
"optionalDependencies": [
"@img/sharp-libvips-linux-x64"
],
"os": ["linux"],
"cpu": ["x64"]
},
"@img/sharp-linuxmusl-arm64@0.34.4": {
"integrity": "sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==",
"optionalDependencies": [
"@img/sharp-libvips-linuxmusl-arm64"
],
"os": ["linux"],
"cpu": ["arm64"]
},
"@img/sharp-linuxmusl-x64@0.34.4": {
"integrity": "sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==",
"optionalDependencies": [
"@img/sharp-libvips-linuxmusl-x64"
],
"os": ["linux"],
"cpu": ["x64"]
},
"@img/sharp-wasm32@0.34.4": {
"integrity": "sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==",
"dependencies": [
"@emnapi/runtime"
],
"cpu": ["wasm32"]
},
"@img/sharp-win32-arm64@0.34.4": {
"integrity": "sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==",
"os": ["win32"],
"cpu": ["arm64"]
},
"@img/sharp-win32-ia32@0.34.4": {
"integrity": "sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==",
"os": ["win32"],
"cpu": ["ia32"]
},
"@img/sharp-win32-x64@0.34.4": {
"integrity": "sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==",
"os": ["win32"],
"cpu": ["x64"]
},
"@jridgewell/gen-mapping@0.3.13": {
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
"dependencies": [
"@jridgewell/sourcemap-codec",
"@jridgewell/trace-mapping"
]
},
"@jridgewell/remapping@2.3.5": {
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
"dependencies": [
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping"
]
},
"@jridgewell/resolve-uri@3.1.2": {
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
},
"@jridgewell/sourcemap-codec@1.5.5": {
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="
},
"@jridgewell/trace-mapping@0.3.31": {
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
"dependencies": [
"@jridgewell/resolve-uri",
"@jridgewell/sourcemap-codec"
]
},
"@mux/blurup@1.0.2": {
"integrity": "sha512-MKn4yyXmmP2YM7CxmJgWq/COsK/YD/+y6pL56lIPHHF/QjFoW3iEpA7rYFy1/BcU0IwJ1ppLRNjksGFOhmIYKQ==",
"dependencies": [
"image-dimensions"
]
},
"@mux/mux-data-google-ima@0.2.8": {
"integrity": "sha512-0ZEkHdcZ6bS8QtcjFcoJeZxJTpX7qRIledf4q1trMWPznugvtajCjCM2kieK/pzkZj1JM6liDRFs1PJSfVUs2A==",
"dependencies": [
"mux-embed@5.9.0"
]
},
"@mux/mux-player-react@3.6.1_@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-YKIieu9GmFI73+1EcAvd63ftZ0Z9ilGbWo2dGXqQeyCEcagIN0oEcXWUPuIuxhvYB0XXsxB8RBAD8SigHkCYAQ==",
"dependencies": [
"@mux/mux-player",
"@mux/playback-core",
"@types/react",
"prop-types",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react"
]
},
"@mux/mux-player@3.6.1_react@19.1.0": {
"integrity": "sha512-QidL9CSkRBwa49ItphuDXWtarAiskP8AG/+vj5u0LsCa+VqObQxPfxE9t5S9YO/SDYHXqDMviMpmSzotSROGUQ==",
"dependencies": [
"@mux/mux-video",
"@mux/playback-core",
"media-chrome@4.14.0_react@19.1.0",
"player.style"
]
},
"@mux/mux-video@0.27.0": {
"integrity": "sha512-Oi142YAcPKrmHTG+eaWHWaE7ucMHeJwx1FXABbLM2hMGj9MQ7kYjsD5J3meFlvuyz5UeVDsPLHeUJgeBXUZovg==",
"dependencies": [
"@mux/mux-data-google-ima",
"@mux/playback-core",
"castable-video",
"custom-media-element",
"media-tracks"
]
},
"@mux/playback-core@0.31.0": {
"integrity": "sha512-VADcrtS4O6fQBH8qmgavS6h7v7amzy2oCguu1NnLaVZ3Z8WccNXcF0s7jPRoRDyXWGShgtVhypW2uXjLpkPxyw==",
"dependencies": [
"hls.js",
"mux-embed@5.13.0"
]
},
"@mux/upchunk@3.5.0": {
"integrity": "sha512-D+TtvlujlZQjh5I+vFzJ31h5E1uVpEaLdR8M3BNaCFbVLnFMZs8J/L/fYSUyVGnyHT/yDtPHn/IHKdo3G6oSjA==",
"dependencies": [
"event-target-shim",
"xhr"
]
},
"@next/env@15.5.5": {
"integrity": "sha512-2Zhvss36s/yL+YSxD5ZL5dz5pI6ki1OLxYlh6O77VJ68sBnlUrl5YqhBgCy7FkdMsp9RBeGFwpuDCdpJOqdKeQ=="
},
"@next/swc-darwin-arm64@15.5.5": {
"integrity": "sha512-lYExGHuFIHeOxf40mRLWoA84iY2sLELB23BV5FIDHhdJkN1LpRTPc1MDOawgTo5ifbM5dvAwnGuHyNm60G1+jw==",
"os": ["darwin"],
"cpu": ["arm64"]
},
"@next/swc-darwin-x64@15.5.5": {
"integrity": "sha512-cacs/WQqa96IhqUm+7CY+z/0j9sW6X80KE07v3IAJuv+z0UNvJtKSlT/T1w1SpaQRa9l0wCYYZlRZUhUOvEVmg==",
"os": ["darwin"],
"cpu": ["x64"]
},
"@next/swc-linux-arm64-gnu@15.5.5": {
"integrity": "sha512-tLd90SvkRFik6LSfuYjcJEmwqcNEnVYVOyKTacSazya/SLlSwy/VYKsDE4GIzOBd+h3gW+FXqShc2XBavccHCg==",
"os": ["linux"],
"cpu": ["arm64"]
},
"@next/swc-linux-arm64-musl@15.5.5": {
"integrity": "sha512-ekV76G2R/l3nkvylkfy9jBSYHeB4QcJ7LdDseT6INnn1p51bmDS1eGoSoq+RxfQ7B1wt+Qa0pIl5aqcx0GLpbw==",
"os": ["linux"],
"cpu": ["arm64"]
},
"@next/swc-linux-x64-gnu@15.5.5": {
"integrity": "sha512-tI+sBu+3FmWtqlqD4xKJcj3KJtqbniLombKTE7/UWyyoHmOyAo3aZ7QcEHIOgInXOG1nt0rwh0KGmNbvSB0Djg==",
"os": ["linux"],
"cpu": ["x64"]
},
"@next/swc-linux-x64-musl@15.5.5": {
"integrity": "sha512-kDRh+epN/ulroNJLr+toDjN+/JClY5L+OAWjOrrKCI0qcKvTw9GBx7CU/rdA2bgi4WpZN3l0rf/3+b8rduEwrQ==",
"os": ["linux"],
"cpu": ["x64"]
},
"@next/swc-win32-arm64-msvc@15.5.5": {
"integrity": "sha512-GDgdNPFFqiKjTrmfw01sMMRWhVN5wOCmFzPloxa7ksDfX6TZt62tAK986f0ZYqWpvDFqeBCLAzmgTURvtQBdgw==",
"os": ["win32"],
"cpu": ["arm64"]
},
"@next/swc-win32-x64-msvc@15.5.5": {
"integrity": "sha512-5kE3oRJxc7M8RmcTANP8RGoJkaYlwIiDD92gSwCjJY0+j8w8Sl1lvxgQ3bxfHY2KkHFai9tpy/Qx1saWV8eaJQ==",
"os": ["win32"],
"cpu": ["x64"]
},
"@opentelemetry/api@1.9.0": {
"integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg=="
},
"@opentelemetry/core@2.1.0_@opentelemetry+api@1.9.0": {
"integrity": "sha512-RMEtHsxJs/GiHHxYT58IY57UXAQTuUnZVco6ymDEqTNlJKTimM4qPUPVe8InNFyBjhHBEAx4k3Q8LtNayBsbUQ==",
"dependencies": [
"@opentelemetry/api",
"@opentelemetry/semantic-conventions"
]
},
"@opentelemetry/semantic-conventions@1.37.0": {
"integrity": "sha512-JD6DerIKdJGmRp4jQyX5FlrQjA4tjOw1cvfsPAZXfOOEErMUHjPcPSICS+6WnM0nB0efSFARh0KAZss+bvExOA=="
},
"@radix-ui/number@1.1.1": {
"integrity": "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g=="
},
"@radix-ui/primitive@1.1.3": {
"integrity": "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg=="
},
"@radix-ui/react-alert-dialog@1.1.15_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-dialog",
"@radix-ui/react-primitive",
"@radix-ui/react-slot",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-arrow@1.1.7_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==",
"dependencies": [
"@radix-ui/react-primitive",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-avatar@1.1.10_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==",
"dependencies": [
"@radix-ui/react-context",
"@radix-ui/react-primitive",
"@radix-ui/react-use-callback-ref",
"@radix-ui/react-use-is-hydrated",
"@radix-ui/react-use-layout-effect",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-checkbox@1.3.3_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-presence",
"@radix-ui/react-primitive",
"@radix-ui/react-use-controllable-state",
"@radix-ui/react-use-previous",
"@radix-ui/react-use-size",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-collection@1.1.7_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==",
"dependencies": [
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-primitive",
"@radix-ui/react-slot",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-compose-refs@1.1.2_@types+react@19.2.2_react@19.1.0": {
"integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
"dependencies": [
"@types/react",
"react"
],
"optionalPeers": [
"@types/react"
]
},
"@radix-ui/react-context@1.1.2_@types+react@19.2.2_react@19.1.0": {
"integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
"dependencies": [
"@types/react",
"react"
],
"optionalPeers": [
"@types/react"
]
},
"@radix-ui/react-dialog@1.1.15_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-dismissable-layer",
"@radix-ui/react-focus-guards",
"@radix-ui/react-focus-scope",
"@radix-ui/react-id",
"@radix-ui/react-portal",
"@radix-ui/react-presence",
"@radix-ui/react-primitive",
"@radix-ui/react-slot",
"@radix-ui/react-use-controllable-state",
"@types/react",
"@types/react-dom",
"aria-hidden",
"react",
"react-dom",
"react-remove-scroll"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-direction@1.1.1_@types+react@19.2.2_react@19.1.0": {
"integrity": "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==",
"dependencies": [
"@types/react",
"react"
],
"optionalPeers": [
"@types/react"
]
},
"@radix-ui/react-dismissable-layer@1.1.11_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-compose-refs",
"@radix-ui/react-primitive",
"@radix-ui/react-use-callback-ref",
"@radix-ui/react-use-escape-keydown",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-dropdown-menu@2.1.16_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-id",
"@radix-ui/react-menu",
"@radix-ui/react-primitive",
"@radix-ui/react-use-controllable-state",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-focus-guards@1.1.3_@types+react@19.2.2_react@19.1.0": {
"integrity": "sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==",
"dependencies": [
"@types/react",
"react"
],
"optionalPeers": [
"@types/react"
]
},
"@radix-ui/react-focus-scope@1.1.7_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==",
"dependencies": [
"@radix-ui/react-compose-refs",
"@radix-ui/react-primitive",
"@radix-ui/react-use-callback-ref",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-id@1.1.1_@types+react@19.2.2_react@19.1.0": {
"integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==",
"dependencies": [
"@radix-ui/react-use-layout-effect",
"@types/react",
"react"
],
"optionalPeers": [
"@types/react"
]
},
"@radix-ui/react-label@2.1.7_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==",
"dependencies": [
"@radix-ui/react-primitive",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-menu@2.1.16_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-collection",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-direction",
"@radix-ui/react-dismissable-layer",
"@radix-ui/react-focus-guards",
"@radix-ui/react-focus-scope",
"@radix-ui/react-id",
"@radix-ui/react-popper",
"@radix-ui/react-portal",
"@radix-ui/react-presence",
"@radix-ui/react-primitive",
"@radix-ui/react-roving-focus",
"@radix-ui/react-slot",
"@radix-ui/react-use-callback-ref",
"@types/react",
"@types/react-dom",
"aria-hidden",
"react",
"react-dom",
"react-remove-scroll"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-popover@1.1.15_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-dismissable-layer",
"@radix-ui/react-focus-guards",
"@radix-ui/react-focus-scope",
"@radix-ui/react-id",
"@radix-ui/react-popper",
"@radix-ui/react-portal",
"@radix-ui/react-presence",
"@radix-ui/react-primitive",
"@radix-ui/react-slot",
"@radix-ui/react-use-controllable-state",
"@types/react",
"@types/react-dom",
"aria-hidden",
"react",
"react-dom",
"react-remove-scroll"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-popper@1.2.8_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==",
"dependencies": [
"@floating-ui/react-dom",
"@radix-ui/react-arrow",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-primitive",
"@radix-ui/react-use-callback-ref",
"@radix-ui/react-use-layout-effect",
"@radix-ui/react-use-rect",
"@radix-ui/react-use-size",
"@radix-ui/rect",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-portal@1.1.9_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==",
"dependencies": [
"@radix-ui/react-primitive",
"@radix-ui/react-use-layout-effect",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-presence@1.1.5_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==",
"dependencies": [
"@radix-ui/react-compose-refs",
"@radix-ui/react-use-layout-effect",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-primitive@2.1.3_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
"dependencies": [
"@radix-ui/react-slot",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-roving-focus@1.1.11_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==",
"dependencies": [
"@radix-ui/primitive",
"@radix-ui/react-collection",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-direction",
"@radix-ui/react-id",
"@radix-ui/react-primitive",
"@radix-ui/react-use-callback-ref",
"@radix-ui/react-use-controllable-state",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-scroll-area@1.2.10_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==",
"dependencies": [
"@radix-ui/number",
"@radix-ui/primitive",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-direction",
"@radix-ui/react-presence",
"@radix-ui/react-primitive",
"@radix-ui/react-use-callback-ref",
"@radix-ui/react-use-layout-effect",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-select@2.2.6_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==",
"dependencies": [
"@radix-ui/number",
"@radix-ui/primitive",
"@radix-ui/react-collection",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-direction",
"@radix-ui/react-dismissable-layer",
"@radix-ui/react-focus-guards",
"@radix-ui/react-focus-scope",
"@radix-ui/react-id",
"@radix-ui/react-popper",
"@radix-ui/react-portal",
"@radix-ui/react-primitive",
"@radix-ui/react-slot",
"@radix-ui/react-use-callback-ref",
"@radix-ui/react-use-controllable-state",
"@radix-ui/react-use-layout-effect",
"@radix-ui/react-use-previous",
"@radix-ui/react-visually-hidden",
"@types/react",
"@types/react-dom",
"aria-hidden",
"react",
"react-dom",
"react-remove-scroll"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-separator@1.1.7_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==",
"dependencies": [
"@radix-ui/react-primitive",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-slider@1.3.6_@types+react@19.2.2_@types+react-dom@19.2.2__@types+react@19.2.2_react@19.1.0_react-dom@19.1.0__react@19.1.0": {
"integrity": "sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==",
"dependencies": [
"@radix-ui/number",
"@radix-ui/primitive",
"@radix-ui/react-collection",
"@radix-ui/react-compose-refs",
"@radix-ui/react-context",
"@radix-ui/react-direction",
"@radix-ui/react-primitive",
"@radix-ui/react-use-controllable-state",
"@radix-ui/react-use-layout-effect",
"@radix-ui/react-use-previous",
"@radix-ui/react-use-size",
"@types/react",
"@types/react-dom",
"react",
"react-dom"
],
"optionalPeers": [
"@types/react",
"@types/react-dom"
]
},
"@radix-ui/react-slot@1.2.3_@types+react@19.2.2_react@19.1.0": {
"integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
"dependencies": [
"@radix-ui/react-compose-refs",
"@types/react",
"react"
],
"optionalPeers": [
"@types/react"
]
},