forked from jimzrt/apprenticeVr
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
9443 lines (7574 loc) · 339 KB
/
pnpm-lock.yaml
File metadata and controls
9443 lines (7574 loc) · 339 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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@devicefarmer/adbkit':
specifier: ^3.3.8
version: 3.3.8
'@electron-toolkit/preload':
specifier: ^3.0.2
version: 3.0.2(electron@36.4.0)
'@electron-toolkit/utils':
specifier: ^4.0.0
version: 4.0.0(electron@36.4.0)
'@fluentui/react-components':
specifier: ^9.65.0
version: 9.65.0(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(scheduler@0.26.0)
'@fluentui/react-icons':
specifier: ^2.0.302
version: 2.0.302(react@19.1.0)
'@fluentui/react-popover':
specifier: ^9.10.9
version: 9.10.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(scheduler@0.26.0)
'@modelcontextprotocol/sdk':
specifier: ^1.12.1
version: 1.12.1
'@tanstack/react-table':
specifier: ^8.21.3
version: 8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@tanstack/react-virtual':
specifier: ^3.13.10
version: 3.13.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
axios:
specifier: ^1.9.0
version: 1.9.0
bluebird:
specifier: ^3.7.2
version: 3.7.2
compare-versions:
specifier: ^6.1.1
version: 6.1.1
data-uri-to-buffer:
specifier: ^6.0.2
version: 6.0.2
date-fns:
specifier: ^4.1.0
version: 4.1.0
electron-log:
specifier: ^5.4.1
version: 5.4.1
electron-updater:
specifier: ^6.6.2
version: 6.6.2
execa:
specifier: ^9.6.0
version: 9.6.0
fetch-blob:
specifier: ^4.0.0
version: 4.0.0
formdata-polyfill:
specifier: ^4.0.10
version: 4.0.10
ini:
specifier: ^5.0.0
version: 5.0.0
match-sorter:
specifier: ^8.0.2
version: 8.0.2
node-7z:
specifier: ^3.0.0
version: 3.0.0
node-wget-fetch:
specifier: ^1.1.3
version: 1.1.3(encoding@0.1.13)
pingman:
specifier: ^2.0.0
version: 2.0.0
react-youtube:
specifier: ^10.1.0
version: 10.1.0(react@19.1.0)
use-disposable:
specifier: ^1.0.4
version: 1.0.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
when:
specifier: ^3.7.8
version: 3.7.8
yauzl:
specifier: ^3.2.0
version: 3.2.0
yt-search:
specifier: ^2.13.1
version: 2.13.1
devDependencies:
'@electron-toolkit/eslint-config-prettier':
specifier: ^3.0.0
version: 3.0.0(eslint@9.28.0)(prettier@3.5.3)
'@electron-toolkit/eslint-config-ts':
specifier: ^3.1.0
version: 3.1.0(eslint@9.28.0)(typescript@5.8.3)
'@electron-toolkit/tsconfig':
specifier: ^1.0.1
version: 1.0.1(@types/node@24.0.1)
'@types/bluebird':
specifier: ^3.5.42
version: 3.5.42
'@types/ini':
specifier: ^4.1.1
version: 4.1.1
'@types/node':
specifier: ^24.0.1
version: 24.0.1
'@types/node-7z':
specifier: ^2.1.10
version: 2.1.10
'@types/react':
specifier: ^19.1.8
version: 19.1.8
'@types/react-dom':
specifier: ^19.1.6
version: 19.1.6(@types/react@19.1.8)
'@types/when':
specifier: ^2.4.41
version: 2.4.41
'@types/yt-search':
specifier: ^2.10.3
version: 2.10.3
'@vitejs/plugin-react':
specifier: ^4.5.2
version: 4.5.2(vite@6.3.5(@types/node@24.0.1))
electron:
specifier: ^36.4.0
version: 36.4.0
electron-builder:
specifier: ^26.0.12
version: 26.0.12(bluebird@3.7.2)(electron-builder-squirrel-windows@25.1.8)
electron-vite:
specifier: ^3.1.0
version: 3.1.0(vite@6.3.5(@types/node@24.0.1))
eslint:
specifier: ^9.28.0
version: 9.28.0
eslint-plugin-react:
specifier: ^7.37.5
version: 7.37.5(eslint@9.28.0)
eslint-plugin-react-hooks:
specifier: ^5.2.0
version: 5.2.0(eslint@9.28.0)
eslint-plugin-react-refresh:
specifier: ^0.4.20
version: 0.4.20(eslint@9.28.0)
prettier:
specifier: ^3.5.3
version: 3.5.3
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
typescript:
specifier: ^5.8.3
version: 5.8.3
vite:
specifier: ^6.3.5
version: 6.3.5(@types/node@24.0.1)
packages:
7zip-bin@5.2.0:
resolution: {integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.27.1':
resolution: {integrity: sha512-Q+E+rd/yBzNQhXkG+zQnF58e4zoZfBedaxwzPmicKsiK3nt8iJYrSrDbjwFFDGC4f+rPafqRaPH6TsDoSvMf7A==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.27.5':
resolution: {integrity: sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.27.1':
resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.27.4':
resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.27.1':
resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.27.5':
resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.1':
resolution: {integrity: sha512-2YaDd/Rd9E598B5+WIc8wJPmWETiiJXFYVE60oX8FDohv7rAUU3CQj+A1MgeEmcsk2+dQuEjIe/GDvig0SqL4g==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.27.1':
resolution: {integrity: sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-module-transforms@7.27.3':
resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.27.1':
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.27.1':
resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.27.6':
resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.27.1':
resolution: {integrity: sha512-I0dZ3ZpCrJ1c04OqlNsQcKiZlsrXf/kkE4FXzID9rIOYICsAbA8mMDzhW/luRNAHdCNt7os/u8wenklZDlUVUQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/parser@7.27.5':
resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-transform-arrow-functions@7.27.1':
resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-self@7.27.1':
resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-source@7.27.1':
resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.27.1':
resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.1':
resolution: {integrity: sha512-Fyo3ghWMqkHHpHQCoBs2VnYjR4iWFFjguTDEqA5WgZDOrFesVjMhMM2FSqTKSoUSDO1VQtavj8NFpdRBEvJTtg==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.27.1':
resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.27.4':
resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==}
engines: {node: '>=6.9.0'}
'@babel/types@7.27.1':
resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
engines: {node: '>=6.9.0'}
'@babel/types@7.27.6':
resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==}
engines: {node: '>=6.9.0'}
'@ctrl/tinycolor@3.6.1':
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
'@develar/schema-utils@2.6.5':
resolution: {integrity: sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==}
engines: {node: '>= 8.9.0'}
'@devicefarmer/adbkit-logcat@2.1.3':
resolution: {integrity: sha512-yeaGFjNBc/6+svbDeul1tNHtNChw6h8pSHAt5D+JsedUrMTN7tla7B15WLDyekxsuS2XlZHRxpuC6m92wiwCNw==}
engines: {node: '>= 4'}
'@devicefarmer/adbkit-monkey@1.2.1':
resolution: {integrity: sha512-ZzZY/b66W2Jd6NHbAhLyDWOEIBWC11VizGFk7Wx7M61JZRz7HR9Cq5P+65RKWUU7u6wgsE8Lmh9nE4Mz+U2eTg==}
engines: {node: '>= 0.10.4'}
'@devicefarmer/adbkit@3.3.8':
resolution: {integrity: sha512-7rBLLzWQnBwutH2WZ0EWUkQdihqrnLYCUMaB44hSol9e0/cdIhuNFcqZO0xNheAU6qqHVA8sMiLofkYTgb+lmw==}
engines: {node: '>= 0.10.4'}
hasBin: true
'@electron-toolkit/eslint-config-prettier@3.0.0':
resolution: {integrity: sha512-YapmIOVkbYdHLuTa+ad1SAVtcqYL9A/SJsc7cxQokmhcwAwonGevNom37jBf9slXegcZ/Slh01I/JARG1yhNFw==}
peerDependencies:
eslint: '>= 9.0.0'
prettier: '>= 3.0.0'
'@electron-toolkit/eslint-config-ts@3.1.0':
resolution: {integrity: sha512-MowZQKd3yxXSDLack5QvjQwYHhpOJFoWBGBwJ/k+DCd7NUSendplECbQGFp86tPQYPUrPBPceR/hdsSAnaY5ZQ==}
peerDependencies:
eslint: '>=9.0.0'
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
'@electron-toolkit/preload@3.0.2':
resolution: {integrity: sha512-TWWPToXd8qPRfSXwzf5KVhpXMfONaUuRAZJHsKthKgZR/+LqX1dZVSSClQ8OTAEduvLGdecljCsoT2jSshfoUg==}
peerDependencies:
electron: '>=13.0.0'
'@electron-toolkit/tsconfig@1.0.1':
resolution: {integrity: sha512-M0Mol3odspvtCuheyujLNAW7bXq7KFNYVMRtpjFa4ZfES4MuklXBC7Nli/omvc+PRKlrklgAGx3l4VakjNo8jg==}
peerDependencies:
'@types/node': '*'
'@electron-toolkit/utils@4.0.0':
resolution: {integrity: sha512-qXSntwEzluSzKl4z5yFNBknmPGjPa3zFhE4mp9+h0cgokY5ornAeP+CJQDBhKsL1S58aOQfcwkD3NwLZCl+64g==}
peerDependencies:
electron: '>=13.0.0'
'@electron/asar@3.2.18':
resolution: {integrity: sha512-2XyvMe3N3Nrs8cV39IKELRHTYUWFKrmqqSY1U+GMlc0jvqjIVnoxhNd2H4JolWQncbJi1DCvb5TNxZuI2fEjWg==}
engines: {node: '>=10.12.0'}
hasBin: true
'@electron/asar@3.4.1':
resolution: {integrity: sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA==}
engines: {node: '>=10.12.0'}
hasBin: true
'@electron/fuses@1.8.0':
resolution: {integrity: sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw==}
hasBin: true
'@electron/get@2.0.3':
resolution: {integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==}
engines: {node: '>=12'}
'@electron/node-gyp@https://codeload.github.com/electron/node-gyp/tar.gz/06b29aafb7708acef8b3669835c8a7857ebc92d2':
resolution: {tarball: https://codeload.github.com/electron/node-gyp/tar.gz/06b29aafb7708acef8b3669835c8a7857ebc92d2}
version: 10.2.0-electron.1
engines: {node: '>=12.13.0'}
hasBin: true
'@electron/notarize@2.5.0':
resolution: {integrity: sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A==}
engines: {node: '>= 10.0.0'}
'@electron/osx-sign@1.3.1':
resolution: {integrity: sha512-BAfviURMHpmb1Yb50YbCxnOY0wfwaLXH5KJ4+80zS0gUkzDX3ec23naTlEqKsN+PwYn+a1cCzM7BJ4Wcd3sGzw==}
engines: {node: '>=12.0.0'}
hasBin: true
'@electron/rebuild@3.6.1':
resolution: {integrity: sha512-f6596ZHpEq/YskUd8emYvOUne89ij8mQgjYFA5ru25QwbrRO+t1SImofdDv7kKOuWCmVOuU5tvfkbgGxIl3E/w==}
engines: {node: '>=12.13.0'}
hasBin: true
'@electron/rebuild@3.7.0':
resolution: {integrity: sha512-VW++CNSlZwMYP7MyXEbrKjpzEwhB5kDNbzGtiPEjwYysqyTCF+YbNJ210Dj3AjWsGSV4iEEwNkmJN9yGZmVvmw==}
engines: {node: '>=12.13.0'}
hasBin: true
'@electron/universal@2.0.1':
resolution: {integrity: sha512-fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA==}
engines: {node: '>=16.4'}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@esbuild/aix-ppc64@0.25.3':
resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.25.3':
resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.25.3':
resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.25.3':
resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.25.3':
resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.25.3':
resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.25.3':
resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.25.3':
resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.25.3':
resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.25.3':
resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.25.3':
resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.25.3':
resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.25.3':
resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.25.3':
resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.25.3':
resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.25.3':
resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.25.3':
resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.25.3':
resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.25.3':
resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.25.3':
resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.25.3':
resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.25.3':
resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.25.3':
resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.25.3':
resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.25.3':
resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.7.0':
resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/config-array@0.20.0':
resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/config-helpers@0.2.2':
resolution: {integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.14.0':
resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.3.1':
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.26.0':
resolution: {integrity: sha512-I9XlJawFdSMvWjDt6wksMCrgns5ggLNfFwFvnShsleWruvXM514Qxk8V246efTw+eo9JABvVz+u3q2RiAowKxQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.28.0':
resolution: {integrity: sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/plugin-kit@0.3.1':
resolution: {integrity: sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@floating-ui/core@1.7.0':
resolution: {integrity: sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA==}
'@floating-ui/devtools@0.2.1':
resolution: {integrity: sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw==}
peerDependencies:
'@floating-ui/dom': '>=1.5.4'
'@floating-ui/dom@1.7.0':
resolution: {integrity: sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg==}
'@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
'@fluentui/keyboard-keys@9.0.8':
resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==}
'@fluentui/priority-overflow@9.1.15':
resolution: {integrity: sha512-/3jPBBq64hRdA416grVj+ZeMBUIaKZk2S5HiRg7CKCAV1JuyF84Do0rQI6ns8Vb9XOGuc4kurMcL/UEftoEVrg==}
'@fluentui/react-accordion@9.6.10':
resolution: {integrity: sha512-CYPNgTsTpyNZiCrfHBiHJxP5sfPkbGmoH+bccwCzgBZLxuxNjEDzjcp3hI4sJnI8kqlvvd2zQ3sGNp3sBFjbfg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-alert@9.0.0-beta.124':
resolution: {integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-aria@9.14.8':
resolution: {integrity: sha512-X+y+pE0g58yz9NxbiaPvwv8eoJQUWOiiKIyuCodOKeXWKPGH7spcIRy5uB1X5IMNJ+59f/fGUFvMKexfR28dpA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-avatar@9.7.9':
resolution: {integrity: sha512-1a8wB9o2GtEozNTG8DURyvSO6/upCacfqtTCffEWrFyKG/XyjcUsMZoGOR90mJnWE6pxU3HFldxQBAfDVlVciQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-badge@9.2.55':
resolution: {integrity: sha512-b4+opJ93RekDJvRKXyQZOAHfC01s5xC7CFkA8UwUv4M4mapGG4EKR2+M7N7h0VXMKYYBo9B4svCT+8CYvdCJbw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-breadcrumb@9.1.9':
resolution: {integrity: sha512-f1HjRzTVbmedG6q/ELiFdoYG8XhflP3t2LjPKt+f34XJ0TavgU4NWEPVGV0xq/ERctxWDC1F1Mqaq3Pyt0+cNA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-button@9.4.8':
resolution: {integrity: sha512-28DLZBkwN4W4goJto5HDrWXjmXD9HMCtj+VkNK6hDd1K2vM2qjWEWEKJ95wl2mMK0bSgA1jtLvn56jOWY/fv+A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-card@9.2.7':
resolution: {integrity: sha512-6KicmerQG/Lta3R+yAbxtCz1i1ESyMC4Wrkihx+8w588EpuWEBB1Qo0mmRlHYtYMQ2luAnlyDnSZeAwwklxQyQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-carousel@9.6.9':
resolution: {integrity: sha512-0dLVMa2NJ9/0q+6hGbKShLj1KYx1IiZOMvo4bOJEUn/y0VbeRQBdMMniYuszPim38tlfStWDYFIDMkeYn9omOg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-checkbox@9.3.9':
resolution: {integrity: sha512-NjQ/yVsC5DMVUzzgG1jQiYBKkrsgdSFCf/gnsYO+rEFKNDiRL34BzFzQMo4cmiOhIH+Px7FuaYHsCLeNe55TJg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-color-picker@9.0.7':
resolution: {integrity: sha512-lhUxTQEwym4Yn7d7Cw0fG8DP+Kp1tewPo5U1AT4RDkSzWEoPztDYCH1pBVGk4ugWIrUen4bZi6zL/8r0c+uMGw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-combobox@9.14.9':
resolution: {integrity: sha512-rWBiib8u63QTOO+43WtZ5WG5Z5KttWsWYLU6PzEbx/58RfefbrMbU7xqfWx85OohZisUUSZW1Saah6nGLkEy9g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-components@9.65.0':
resolution: {integrity: sha512-mmT3NatJMhvnsDHQEXsB+d5f/injD4NWKpXvdpBXKojNTbvyzwYoxv3oaGkOVUiJzi6z5bckejCq0DWLoVCM7w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-context-selector@9.1.77':
resolution: {integrity: sha512-Qm4vWJMx2eauMe7GVcOfVuPyOkWpUP14/8yLzQnen3YUNRU2T63phlCSbzxaZOvcpTX8znoJZzsS+3X1EfHe4w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
scheduler: '>=0.19.0 <=0.23.0'
'@fluentui/react-dialog@9.12.11':
resolution: {integrity: sha512-jwfmI83jdVQZ+idWHLBeG2VN4cpoXmjJS8RFOzyvWX4jlUgbUXuhVf2zIksf2tDarzIaCSVeToneUiJNBaXmmg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-divider@9.2.87':
resolution: {integrity: sha512-MMlBFNCjcvo7Qvmce2l0Hwm9qZnrdxPbL17FKFW9zt1NYY6BQzDClDIWobjZ+oW6b1CwO3Io3LjdkQ3CEUxbXw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-drawer@9.7.11':
resolution: {integrity: sha512-ZaQsnyrpOlBevrN6r2SKXCyhVJVxSgqhXVQ3S7rKjYbocSeadQbGd9e2I6wHZENsclXyBiolfhwmEKeOXaP/Nw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-field@9.2.9':
resolution: {integrity: sha512-HrejoPQKFiOnr7HuBJqBClpKD5tmmPravTnCg9f3MSVWY6XxzHpA+7vgKqD2XP8Wb1XBUo9mHzmCwdhZ1q1V9A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-icons@2.0.302':
resolution: {integrity: sha512-NK8w51dvucc6bu9oNoFZTWhXVelZ93JKnQbUH4Po344NJiBnzblv5ey4Vxz2SJj7T2t3oYBE+kb/ixTxwbxlaQ==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
'@fluentui/react-image@9.1.85':
resolution: {integrity: sha512-6SVvN+qlQnihxS1MEV33OL/r66uGnfiMkupOvx9lZqIpshAPkELe5JII3rl1t3+fvRaZGwHv/2P817zd/57NRA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-infobutton@9.0.0-beta.102':
resolution: {integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-infolabel@9.2.3':
resolution: {integrity: sha512-41LjnnmDNvIaZ0NTRTjrBqVbXWXzpZuwcxGBEe0xROcyYFeVQ3Q3KnEuQlgVddlynxwMQIQ2WXfAqjMIL47bbA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-input@9.5.9':
resolution: {integrity: sha512-cP5iWMbHChdtXoF93Ya6mHSY87pElgkb7S37UKhp/rVa0i0m9BLWwHYvFx0ZxBNhCkeeFDAXyv4Qu5oRuZzDvA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-jsx-runtime@9.0.55':
resolution: {integrity: sha512-GOBVundTmqghG2SBZy67dAVBOONnxNmQbY5kpyk1vublx4p+DZY1+Yb6cGvR8q9dBYjFLICcIxhb50rL6fut3Q==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-label@9.1.88':
resolution: {integrity: sha512-9WW7jABenhOCxiyFv0lHxdcX0B+UXSZHCDzsu/9OwUpa/fZKtTLaI9XRZwO2Jf0uLjIAG5Y1ezHHBKoH1zDPeA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-link@9.4.8':
resolution: {integrity: sha512-AnXflc25x4I9XNAmSl2jnrorM0qLZsN3KNZaNcC0k8RORY6rGayZ/mCrtUBJp9s3BvZDtpR7/cLSNbhnSqmBjw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-list@9.1.9':
resolution: {integrity: sha512-tsz9DEVHwfzWih/m37jKenfZyqOfMx6dOLw+j4g5qSugyPrARM2kJn+kz/1d10a5qQ7peuII7eAnuhyZyBEXPA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-menu@9.16.9':
resolution: {integrity: sha512-3tWxtAA0cNVhvMkIyyKftmv0JGh2R1rIRyg6c4XOKzUT3jJcKI9aC9WIOQZRw4xQ+4AyDv4GL5nMyksCYJWh4Q==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-message-bar@9.4.9':
resolution: {integrity: sha512-XXJXoyoF/UVjIZrjX1wlKUOCpkp60CTMG9t+hfyjmnCznD+aKH/BNIr3XWZ5esfD3n+PO12P6dNeQXVZ2SwkIw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-motion-components-preview@0.5.1':
resolution: {integrity: sha512-Cb+xfbgH9x04aP8mFnqKhaU6nAvzyZF7GXKVLIZ8kqv55fAjm+9TGZ/4OOOxwKpwaKhPa9hK7Xa31fWzQizzzA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-motion@9.7.4':
resolution: {integrity: sha512-98D2PVxo90sZ+AzxU6fU4XdJjmfScgVFMMFwhazGneqsjc1LeLul+zfsMw8R9gbH2KTcCO8L0OrKFU1CZUJ6KQ==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-nav@9.0.0':
resolution: {integrity: sha512-oXs+5rP/sX+DJt6BvwOTAa+Q5XvUncg6g/PJ1U0OKDn6nqPJefMcFDgvh0bwXN8DKZoSvNzQGBPwDQD1Twz6Hg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-overflow@9.3.9':
resolution: {integrity: sha512-v3f6JwDSaCW6Co2Pn3H4vxBttigxiUeC/WeYEewWAatX+cB8snLtEshJ1MtJb3urUeSqO8V2m0Q72/LAgeEOqg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-persona@9.3.9':
resolution: {integrity: sha512-35PtVmWPSzR6RO6awVvZJvGXnqrVHzJwNglGyLfUDp1nXEy3P/d5+0Yhav7byk1KdAtDYZHzNjMn/0JwZy2K6w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-popover@9.10.9':
resolution: {integrity: sha512-PmZkd7GcK8BnOhttQZTHiyB6U8BVOFjEJVd6Z2z0bMdw0CA11Q/7WRyXam5kzPxSwBjAe6G2b/n0MpDwLJ6bZA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-portal@9.5.8':
resolution: {integrity: sha512-OJQGRSbJQFX0S7wJQ144AYqc3oKCPi/mJvbOTmr6kQUUQUUmvdvTO4qgUs5Ev6G9OUe3R1PF40en3yRg/2KZ/A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-positioning@9.17.2':
resolution: {integrity: sha512-kAuO+WVw/5feIBlaSgYWpOitPXN3pOwEsi9LG3Vq163w98gt0UWKj2BUPoeiz0i80NON5hEeaVo6WEfBx4fm3g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-progress@9.2.9':
resolution: {integrity: sha512-ohTwm9fiYho/KcBAXgF+5KPWuYuihZrOSzZKKue3fr22Tpp2aOTB1jWqpQoOuG54zPLuIHNYG2duySeIT7zvgw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-provider@9.20.8':
resolution: {integrity: sha512-CoR+6hJCno0iCwrMZzUCsMdGJ6NFUQ7K1gEPmnFS8ZHMIz7J9KtcP5w5zzKmU00rWB3fKvMFIGgEVdBinNDEsA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-radio@9.3.9':
resolution: {integrity: sha512-22WqrJIESLHG2dTTwlemyLgKlQ1eqToTNStOesP5wUqnAi670wBikiRAAJoUaMbaWgOAtZbUJyrVklmScWwIWg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-rating@9.1.8':
resolution: {integrity: sha512-JNjStlMDMA5VzwjidlkfWawKxWx0Cm5pLQtko3bWfCDQKjgVQ0lrv/Is38AfSvqNKv2GZeocDiezHC/UH49oRw==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-search@9.1.9':
resolution: {integrity: sha512-UApzQyOwWlpBEz5pMLPDwaUJRSNj0k/B8YTwbXUTltPS12H0YJnnEsywG4kafzlfTu+fRpHesuOWcJh4u0jZ1w==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-select@9.2.9':
resolution: {integrity: sha512-9LLPS6Io8hItOh/BPTKu51oTnfgf5vzeaYioHvZ9U/D1ukadMrHV9tIJOMUfknmSp5amGepPDUqc9GJnj9F2hg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-shared-contexts@9.23.1':
resolution: {integrity: sha512-mP+7talxLz7n0G36o7Asdvst+JPzUbqbnoMKUWRVB5YwzlOXumEgaQDgL1BkRUJYaDGOjIiSTUjHOEkBt7iSdg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-skeleton@9.2.9':
resolution: {integrity: sha512-UAPh0GmYAp0yIbFwJ3sQoIV2tQNy1ccpp+9oXl4RHacU3T9UlUhDh6B8gjmL+5MSQ3Po53c6eo4ZPYPcev/acA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-slider@9.3.10':
resolution: {integrity: sha512-loUDy9esVtFIFEzVwLogWuiCVBvit6xP4qCbfYgJSeaDwtFZ5qid3hXRRxSIToQzk6cKFVxInj1R07nW9BcuEA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-spinbutton@9.3.9':
resolution: {integrity: sha512-rU4YOXBgW9k2HAft8dAcsJBZrWUVWbkCIqAsiEjKyUSMLl6R1TLA59qeZ5jXjzhuQatUXrYHeNpP7ounAsFkbQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-spinner@9.5.12':
resolution: {integrity: sha512-7MKnZdxggB0gDN5JCAxosJ+3KjAH/KbqIaMLfd9LJNy4GBS05psoup+M7JP5HptI41cDz07SmckdTmgBr+vWwA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'