-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
4405 lines (3650 loc) · 186 KB
/
pnpm-lock.yaml
File metadata and controls
4405 lines (3650 loc) · 186 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:
'@fluentui/react-components':
specifier: ^9.72.7
version: 9.72.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(scheduler@0.27.0)
'@fluentui/react-icons':
specifier: ^2.0.315
version: 2.0.315(react@19.2.0)
'@giscus/react':
specifier: ^3.1.0
version: 3.1.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@types/nprogress':
specifier: ^0.2.3
version: 0.2.3
'@types/prismjs':
specifier: ^1.26.5
version: 1.26.5
buffer:
specifier: ^6.0.3
version: 6.0.3
framer-motion:
specifier: ^12.23.25
version: 12.23.25(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
gray-matter:
specifier: ^4.0.3
version: 4.0.3
marked:
specifier: ^17.0.1
version: 17.0.1
nprogress:
specifier: ^0.2.0
version: 0.2.0
prismjs:
specifier: ^1.30.0
version: 1.30.0
react:
specifier: ^19.2.0
version: 19.2.0
react-dom:
specifier: ^19.2.0
version: 19.2.0(react@19.2.0)
react-router-dom:
specifier: ^7.9.6
version: 7.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
devDependencies:
'@eslint/js':
specifier: ^9.39.1
version: 9.39.1
'@types/glob':
specifier: ^8.1.0
version: 8.1.0
'@types/node':
specifier: ^24.10.1
version: 24.10.1
'@types/react':
specifier: ^19.2.5
version: 19.2.7
'@types/react-dom':
specifier: ^19.2.3
version: 19.2.3(@types/react@19.2.7)
'@types/rss':
specifier: ^0.0.32
version: 0.0.32
'@vitejs/plugin-react':
specifier: ^5.1.1
version: 5.1.1(vite@7.2.4(@types/node@24.10.1))
eslint:
specifier: ^9.39.1
version: 9.39.1
eslint-plugin-react-hooks:
specifier: ^7.0.1
version: 7.0.1(eslint@9.39.1)
eslint-plugin-react-refresh:
specifier: ^0.4.24
version: 0.4.24(eslint@9.39.1)
glob:
specifier: ^8.1.0
version: 8.1.0
globals:
specifier: ^16.5.0
version: 16.5.0
prettier:
specifier: ^3.7.1
version: 3.7.1
rss:
specifier: ^1.2.2
version: 1.2.2
sitemap:
specifier: ^9.0.0
version: 9.0.0
typescript:
specifier: ~5.9.3
version: 5.9.3
typescript-eslint:
specifier: ^8.46.4
version: 8.48.0(eslint@9.39.1)(typescript@5.9.3)
vite:
specifier: ^7.2.4
version: 7.2.4(@types/node@24.10.1)
vite-node:
specifier: ^5.2.0
version: 5.2.0(@types/node@24.10.1)
xmlbuilder2:
specifier: ^4.0.3
version: 4.0.3
packages:
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.28.5':
resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
engines: {node: '>=6.9.0'}
'@babel/core@7.28.5':
resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.5':
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
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.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
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.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.28.4':
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.28.5':
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@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.28.4':
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.28.5':
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.28.5':
resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
engines: {node: '>=6.9.0'}
'@ctrl/tinycolor@3.6.1':
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@esbuild/aix-ppc64@0.25.12':
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.25.12':
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.25.12':
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.25.12':
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.25.12':
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.25.12':
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.25.12':
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.25.12':
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.25.12':
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.25.12':
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.25.12':
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.25.12':
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.25.12':
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.25.12':
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.25.12':
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.25.12':
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.25.12':
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.25.12':
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.25.12':
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.25.12':
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.25.12':
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/openharmony-arm64@0.25.12':
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
'@esbuild/sunos-x64@0.25.12':
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.25.12':
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.25.12':
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.25.12':
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.9.0':
resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
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.2':
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/config-array@0.21.1':
resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/config-helpers@0.4.2':
resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.17.0':
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
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.39.1':
resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.7':
resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/plugin-kit@0.4.1':
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@floating-ui/core@1.7.3':
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
'@floating-ui/devtools@0.2.3':
resolution: {integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==}
peerDependencies:
'@floating-ui/dom': ^1.0.0
'@floating-ui/dom@1.7.4':
resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
'@floating-ui/utils@0.2.10':
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
'@fluentui/keyboard-keys@9.0.8':
resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==}
'@fluentui/priority-overflow@9.2.1':
resolution: {integrity: sha512-WH5dv54aEqWo/kKQuADAwjv66W6OUMFllQMjpdkrktQp7pu4JXtmF60iYcp9+iuIX9iCeW01j8gNTU08MQlfIQ==}
'@fluentui/react-accordion@9.8.14':
resolution: {integrity: sha512-jTcfYDRUotRhUEjE1LeG1Qm10515CQUKxHWQhppBYhq7yAZcS5jOms5tMZHtHs0EQsWv3nMgUYYqoOqAsU0jDQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-alert@9.0.0-beta.129':
resolution: {integrity: sha512-afS5Mvf9EH5je3ZOnF96GNaXL5nA/eI69AhO4nsbsvc1RaO/CkEt9+6iVyGy2zeqbQgpsP9UkNwEYyToQ1CrzA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-aria@9.17.6':
resolution: {integrity: sha512-O421keKMgf9BkHH15kTnKGFuCFKN3ukydJLEfSQJmOfdAHyJMzAul8/zMvkd4vmMr84+PtZUD1+Tylk4NvpN4g==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-avatar@9.9.12':
resolution: {integrity: sha512-dlJ5mOKCDChMAECFhpcPHoQicA28ATWQXLtz26hAuVJH2/gC/6mZ0j7drIVl9YECqT/ZbZ3/hpVeZu/S/FVrOA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-badge@9.4.11':
resolution: {integrity: sha512-u2gTg+QeD5uaieAwE89n8MLg2MyZN/kGMx3hJewFKtq3SzvU4xcgcna2Gp4UgpaA3pnGZsJjjjDIHwsv4EyO9Q==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-breadcrumb@9.3.12':
resolution: {integrity: sha512-cT5xmYQbAYH7HslJu6O5WvSYzsBvaQ54Q6yIPgV5kCo5n3M6OSrJ0Ga6Zbfqid/GnY4G60FfjOvbfHNNhmx2Sw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-button@9.6.12':
resolution: {integrity: sha512-seI9L9O0fCHzlfKD/via1qqzaLFeiFKQeR1/97nXL06reC3DqLSCeiZP3UTxFljFE1CYZQRJfk1wH/D6j0ZCTA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-card@9.5.6':
resolution: {integrity: sha512-hCY6VWrKqq+y0yqUkqgkpTN5TVJSU5ZlKtZU+Sed+TlnKlojkS6cYRvsnWdAKwyFLJF9ZYTn+uos9Vi0wQyjtg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-carousel@9.8.12':
resolution: {integrity: sha512-Gjn6cd67FodcjfU2MQTBI2xjijzgy54TdQA8vxObZ27I6y9OHeDR07PWTqaCkX8mcBR8ilTxVD5bQ+zuqfb66g==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-checkbox@9.5.11':
resolution: {integrity: sha512-M8DTBQK0Z7+HKfRx4mjypH0fEagKK7YMNhGMy18aW3iYWeooA0ut81MzsRM5feqhl+Q8v4VJ0aN9qHNqshkD5g==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-color-picker@9.2.11':
resolution: {integrity: sha512-L1ZKJAyioey3glmzMrpawUrzsdu/Nz0m6nVMOznJVuw0vu0BfQuMh/1/0QOoGYXFEbsc4+gSGSCnah4X0EJIsQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-combobox@9.16.12':
resolution: {integrity: sha512-SimZpXzTGyDAGHQZmzUl9AsrIOlLDinTbvEwELEYh9X+yE33SZatcPwdpCmBXldBOs/eh+xOuNSOwgerJ3T3qQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-components@9.72.7':
resolution: {integrity: sha512-tuC8ZMBQicF4p+f9MJv9cVYZUSktQVreAGJq/YJxQ0Ts1mO2rnAuIBkBFlgjnjyebDiAO1FoAAz/wW99hrIh6A==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-context-selector@9.2.12':
resolution: {integrity: sha512-4hj+rv+4Uwn9EeDyXD1YCEpVkm0iMLG403QAGd5vZZhcgB2tg/iazewKeTff+HMRkusx+lWBYzBEGcRohY/FiA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
scheduler: '>=0.19.0'
'@fluentui/react-dialog@9.16.3':
resolution: {integrity: sha512-aUnErTbSf2oqrqbQOCrjXp/12qHVfnxCR71/5hXJLME7BtYZ/m2lvs5r9MTjQSXBy8ar4G5jobS/+XJ0Lq3XqA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-divider@9.4.11':
resolution: {integrity: sha512-aESagOX6l7Ja9lb+3zJa6V5m1mjFnI4NEu8TccAu1VUlMZxX6flbMBJplgjN76dJjcHgs8uoa5xxxD74WNZBXg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-drawer@9.10.9':
resolution: {integrity: sha512-tlHZBkILOHnA7Lg2v/vzmOvTNrPYJnPJAqiceuFlUZWncIWWAUfpw4Teh5V0wGNr6/yC/HjUD5xnynvIhr/ZuA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-field@9.4.11':
resolution: {integrity: sha512-kF93G+LGEKaFJcEAUHJKZUc1xeV/q+JTygYVnEDkPbQ/4j+l+J3rVuHL8U7bhE+8cJG3wDP8jt4jqHsDgKyn5w==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-icons@2.0.315':
resolution: {integrity: sha512-IITWAQGgU7I32eHPDHi+TUCUF6malP27wZLUV3bqjGVF/x/lfxvTIx8yqv/cxuwF3+ITGFDpl+278ZYJtOI7ww==}
peerDependencies:
react: '>=16.8.0 <20.0.0'
'@fluentui/react-image@9.3.11':
resolution: {integrity: sha512-aLpz0/C6T0Uit6SmyhOJjYBvndZzfvmKv1vg+JRnE0aHS5jSUPoCLI6apxyMC6/LcqqTBklpqK3AD9kYpUxfqQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-infobutton@9.0.0-beta.107':
resolution: {integrity: sha512-BcI4e+Oj1B/Qk4CMd0O9H0YF+IL4nhK8xuzI5bsZ5mdCaXiwIBgy5RyP8HVSq3y+Ml4XD2IRwufplcxF2cgTOA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-infolabel@9.4.12':
resolution: {integrity: sha512-inXlz5EAwQHKsGyB3wc5WmgQ1F9zc18x0HRd/otc2R7Oo1yRW5hXQCG5K5A9/wUge2pRiQVcBCsIurggmCNUhA==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-input@9.7.11':
resolution: {integrity: sha512-ae/5ttJf25+J8akeEXpXRFqUAePPt2Moyfx4Tj0u7ZgG1U9IFbcBsshKEHAmIaygueXf6KdRyOduh1CF6a/D2w==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-jsx-runtime@9.3.3':
resolution: {integrity: sha512-KOy85JqR6MSmp7OKUk/IPleaRlUSWF247AM2Ksu9uEKzDBQ2MO3sYUt8X9457GZjIuKLn5J2Vk127W/Khe+/Bg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
'@fluentui/react-label@9.3.11':
resolution: {integrity: sha512-9LORj4JQJCbp2J5ftW7ZjDxzD3Y4BkszX3Y7L1mK8DPRVAKOuGiakbH7U0q7ClGOMhCinWIQJjKAwzPZLo7xgA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-link@9.7.0':
resolution: {integrity: sha512-NQ5Jhe5WBYfANSmIcl6fE/oBeh7G4iAq1FU9L/hyva5dxQ9OtiOpU5wxqVFLKEID/r144rhdtOZPL5AcAuJKdg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-list@9.6.6':
resolution: {integrity: sha512-t0ret56WXP86rDfnhuRrWg/DuS2zZkomB/Nu444rVygE8hsjPUTm5DXx7JKy+sGKVLyFbtsbXNMICkbxhGSSRA==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-menu@9.20.5':
resolution: {integrity: sha512-vshb/OXBZxvk+ghdmdVb2mJ/LJBYjlwpZRhWGJ8ZU0hmPTh74m5jTFWditSk8aL9oMvVuIo0MYLQyUJyJsFoqg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-message-bar@9.6.14':
resolution: {integrity: sha512-UR4Uvkx4VHQyS04T5ikf9gYOH52dloo1vjmK+pFKiqRzZhflHEXID9R1AZFuuZ572KUMXnxRlyEevpXnWqE70w==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-motion-components-preview@0.14.1':
resolution: {integrity: sha512-+2MK7d2g3mD+6Z3o9/fitO+V4u5OKGeRUoUjwlU1v56JHP43hj+NCJynoe4Cym8FeSwTyipks6hvdqBF4W+jtw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-motion@9.11.4':
resolution: {integrity: sha512-rLxz6DSAtp3O+W+mJnov2qXtvZkIgcC1BQOAyUH6tl6u2YmsC1/zRKWhVsf/WUgZwqu3G4jlq15ptyuCITAcDA==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-nav@9.3.14':
resolution: {integrity: sha512-0Lylul5g/9y3Cay5qHLtzW4SB9kdkTmvjHSffPJZDKE/Wv7GBbDypBxoB+f2L1K4f0qzRJ1NvIiwatH4hAsUDA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-overflow@9.6.5':
resolution: {integrity: sha512-4MlXASDodkwk4QWhUPLgMbUPwDYAOAWDnQGJz4q6Hs9eZvx83dSpWdWjkmQ6mwjYf2HwooMkqsjR/kAFvg+ipg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-persona@9.5.12':
resolution: {integrity: sha512-ja3t1o6XDJWCJnOVDTM48G7bFPAbNxcsQKwAPfiuROVu8ODbTQefutCHl0Hno40AsftQk6N4zGbKcn7BYSZ09Q==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-popover@9.12.12':
resolution: {integrity: sha512-IytuasB4b4lCnEhFC0OC66a3mzBSePLpg78/BceKYepuG7IC6iGuCwYartqSQCSUlSU12rT02/V0rqCO81f4Nw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-portal@9.8.8':
resolution: {integrity: sha512-RVvhWYfcwIUYXiokgFw3oxb7Q6xox2e7jcsgFtheDm2X/BHT6WJigW4OaCjOkvugkBEYQkwgIpL9iS2QG3HMFA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-positioning@9.20.10':
resolution: {integrity: sha512-mjuiqh+urV5SzAP2NfzUzsvtWut0aNcO9m/jIuz374iTVGRfDNeVIl7aPI4yK5sdCDR6dGALiNMTFHpjz1YXyw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-progress@9.4.11':
resolution: {integrity: sha512-L0Yh2D0vLPJX0jYfc9VHf8c/idW+e/oRxYNXfrTrvtW1bX80bAmrXWgdRPr/VEtvbJh//2ol2TRmTTQsn2ECNQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-provider@9.22.11':
resolution: {integrity: sha512-XrinA7DVEqsPHeN9XljwTENiIQypiF9cmDYXHN9Emsz6Od4hnmsbt4pnR4Xsf+GcSxVtxkIImfgwtS0aENzYbQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-radio@9.5.11':
resolution: {integrity: sha512-tMxCcqRSSYqYr6hy1dKkzS6LymRc8wM089vr4eBLPQCGCvi3OCd6P7XH8aIcXnzxE3+v03Gs7E/wbzi2CXN6gA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-rating@9.3.11':
resolution: {integrity: sha512-9Bl/sESNbFTbz8peGt9vxLxHDO0AWvS12oMiQ80S1GQOt1ua4S9/SKC83OvyVLEdpBDpBkXTelNz5whczcWexQ==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-search@9.3.11':
resolution: {integrity: sha512-inLoPgbGnupfwhBxFS59mF/ThsntusfYp9TaaTB3SJmqfEEx6YXi5soxszzrXsNvrqpgEoCGIduRpEICuUz5pw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-select@9.4.11':
resolution: {integrity: sha512-/mcdl/lkKccT+GKXu22y2/ANeLhFNUdjkOX+0rvBdl3u49xkqS9Y4Bi0zM1EhhTV2jE8+yjMjzPDzfzJaXVK1A==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-shared-contexts@9.26.0':
resolution: {integrity: sha512-r52B+LUevs930pe45pFsppM9XNvY+ojgRgnDE+T/6aiwR/Mo4YoGrtjhLEzlQBeTGuySICTeaAiXfuH6Keo5Dg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
'@fluentui/react-skeleton@9.4.11':
resolution: {integrity: sha512-nw6NlTBXS7lNSxsebLuADYQi9gJ83jFBFsFq+AGIpAoZLBOCHOhk8/XwV3vYtPwVrKcZtOtXqh9NdCqTR3OAIA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-slider@9.5.11':
resolution: {integrity: sha512-kxZKklJbcG/521muQaIDMdcftoClbwV7yMOcu8PMG+VXsaIuoandoBleBYdzM2XdpY62iK6vUPAMZWBZh3B5Ng==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-spinbutton@9.5.11':
resolution: {integrity: sha512-pYR3RkJfks+0WV47KoDKD04D0pTHtT+lu3AeOpBlIswxtsb1gZEDmTrEHHNeLDKKVhWMWNoEPlxfXuX9tOh7yA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-spinner@9.7.11':
resolution: {integrity: sha512-MhmAisICa3BzBNQH9CnLI5NVPTTXFo1Yaey8kbQPU+gVVF4vIGORB7M1MXSHFxZvojtFpBixiVHqRwh9mowJww==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-swatch-picker@9.4.11':
resolution: {integrity: sha512-M/ZfHqo63F69y2ymEQDDN/BZuI3afeW3U+omyGZZoHts3rVCjPk6sKFemTRpUhGgGfxBdexWEPithZx3dk0IPA==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-switch@9.4.11':
resolution: {integrity: sha512-/WDcoVFQ3I2fe5FTINfyVTIW6wuTgM5QkJgcwbU7HTANq/+wJ2f8wzywoI4x16cJOckBdy+ByDpW7uJ/Uvs8RA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-table@9.19.5':
resolution: {integrity: sha512-In9egEdytjFd6N1RBZd5+3UgdXvEVDP7rz+/I79J10ui2+Nb7r9ah68m5CQB15AKA8F5XFDWPEGvGG3Tmuq4Jg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tabs@9.10.7':
resolution: {integrity: sha512-Kfq6GxZXEKsMdGKmHWNMcEYOYHxl5+fXJOH6ZRgeR2FkHUsPUUe2BHaFnOMRSvCwzECvhOMYs+Ekqt7JzW3BWQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tabster@9.26.10':
resolution: {integrity: sha512-KrddtwbnbgYVAnOkx1pQsMMgq7Kfi+lMRrUrDDJ9Y5X6wiXiajbWRRxYgKiOJc3MpeDCaTCEtjOWNG92vcinMw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tag-picker@9.7.12':
resolution: {integrity: sha512-OJucCDub6b3ceGL6v2UXL+SD3x6nJMbmJ70v38BmrA9t3fNcDvn6RnsfHhF2O0pRGGUOrXbK7vDwVhUAG4Py8w==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tags@9.7.12':
resolution: {integrity: sha512-G7pxP0GGa6J/7mYvB9ycOmD9Jpm6ByUz6JsJI4OBL9UnhenUVTtE7ZKJ9GJ0SiG0GVxS152aSlOR7NLHV7mCqw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-teaching-popover@9.6.12':
resolution: {integrity: sha512-Ugo5SQ3yzSlxUWkeeEdumTWTw662KDh3UPc6RGhU0Jq13skpmsClSJL678BZwsYdAaJXvvG9Bi4PjPeezeB/SA==}
peerDependencies:
'@types/react': '>=16.8.0 <20.0.0'
'@types/react-dom': '>=16.8.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.8.0 <20.0.0'
'@fluentui/react-text@9.6.11':
resolution: {integrity: sha512-U7EiCesOWjkALf7LM6sy+yvE59Px3c6f27jg4aa21UMo61HCVNbjKV8Lz6GzEftEvv++/EZ25yZBiQcKgh/5iA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-textarea@9.6.11':
resolution: {integrity: sha512-5ds8u8hzSqj8cOy0e7HJWjUMq1aO0MIJiaNt/SyIxoZFvsklj/2yaMRVXpWxr3GvX5bzScvFoBY53gPdLKtE/g==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-theme@9.2.0':
resolution: {integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==}
'@fluentui/react-toast@9.7.9':
resolution: {integrity: sha512-PaFh2CwVK4tgvRzBMb46ODHsB+ZYSYE8mx735vqgIG8Oj1AL3wZ5Y9TrjJGxn/lppZgtnwLgt4GQ+GI7MM+e+g==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-toolbar@9.6.12':
resolution: {integrity: sha512-AuOZvp6Jcc/Sngk0OddTsHlJVU/u9mVEw6JDhsCYiwKeq04kdgfco1sjSTGjDhJbf1SnkhmyR6YN16SrpVQWtA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tooltip@9.8.11':
resolution: {integrity: sha512-ke7Hbom3dtC3f9QjJG/F7QfNfukwTtAhoYLmwwQnXYTh/CIVxoC2rVh4c/V8jUD0lnjNPBZZ5ttVUopWljHuFg==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-tree@9.15.6':
resolution: {integrity: sha512-L/uc+SgwXW8DXgSZsyIg5tQkixfrGllANg0I2578WRlfOkERehkg1eSW8Uib/Mbk+W3tB0I8CL20ifoSTL7Ztw==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/react-utilities@9.25.4':
resolution: {integrity: sha512-vvEIFTfqkcBnKNJhlm8csdGNtOWDWDkqAM4tGlW7jLlFrhNkOfDsqdNuBElENPNJ1foHyVTF5ZSr20kVoKWPjQ==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
'@fluentui/react-virtualizer@9.0.0-alpha.107':
resolution: {integrity: sha512-zpTVzJB2BUNv7QdTUlLSBMCbt/EfALRuls/u/8FYaO4PGOFVeS3equytyxSOizz9zJZVhm8sjdp326DEQNiaPA==}
peerDependencies:
'@types/react': '>=16.14.0 <20.0.0'
'@types/react-dom': '>=16.9.0 <20.0.0'
react: '>=16.14.0 <20.0.0'
react-dom: '>=16.14.0 <20.0.0'
'@fluentui/tokens@1.0.0-alpha.22':
resolution: {integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==}
'@giscus/react@3.1.0':
resolution: {integrity: sha512-0TCO2TvL43+oOdyVVGHDItwxD1UMKP2ZYpT6gXmhFOqfAJtZxTzJ9hkn34iAF/b6YzyJ4Um89QIt9z/ajmAEeg==}
peerDependencies:
react: ^16 || ^17 || ^18 || ^19
react-dom: ^16 || ^17 || ^18 || ^19
'@griffel/core@1.19.2':
resolution: {integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==}
'@griffel/react@1.5.32':
resolution: {integrity: sha512-jN3SmSwAUcWFUQuQ9jlhqZ5ELtKY21foaUR0q1mJtiAeSErVgjkpKJyMLRYpvaFGWrDql0Uz23nXUogXbsS2wQ==}
peerDependencies:
react: '>=16.8.0 <20.0.0'
'@griffel/style-types@1.3.0':
resolution: {integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==}
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
'@humanfs/node@0.16.7':
resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/retry@0.4.3':
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
'@jridgewell/remapping@2.3.5':
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
'@lit-labs/ssr-dom-shim@1.4.0':
resolution: {integrity: sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==}
'@lit/reactive-element@2.1.1':
resolution: {integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==}
'@oozcitak/dom@2.0.2':
resolution: {integrity: sha512-GjpKhkSYC3Mj4+lfwEyI1dqnsKTgwGy48ytZEhm4A/xnH/8z9M3ZVXKr/YGQi3uCLs1AEBS+x5T2JPiueEDW8w==}
engines: {node: '>=20.0'}
'@oozcitak/infra@2.0.2':
resolution: {integrity: sha512-2g+E7hoE2dgCz/APPOEK5s3rMhJvNxSMBrP+U+j1OWsIbtSpWxxlUjq1lU8RIsFJNYv7NMlnVsCuHcUzJW+8vA==}
engines: {node: '>=20.0'}
'@oozcitak/url@3.0.0':
resolution: {integrity: sha512-ZKfET8Ak1wsLAiLWNfFkZc/BraDccuTJKR6svTYc7sVjbR+Iu0vtXdiDMY4o6jaFl5TW2TlS7jbLl4VovtAJWQ==}
engines: {node: '>=20.0'}