-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage-lock.json
3114 lines (3114 loc) · 120 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "thesis",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"devDependencies": {
"@cspell/dict-en_us": "^4.3.13",
"@cspell/dict-it-it": "^3.1.0",
"@cspell/dict-latex": "^4.0.0",
"@cspell/dict-markdown": "^2.0.1",
"@cspell/dict-npm": "^5.1.11",
"cspell": "^8.17.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.1",
"prettier-plugin-latex": "^2.0.1",
"shx": "^0.3.4"
}
},
"node_modules/@cspell/cspell-bundled-dicts": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.17.2.tgz",
"integrity": "sha512-t+DQtruJF2cYfXF5GC4F0O/PQR04hL5WH55R9oOaor5i7K8ejbw6+jex2LB0XbZFf3qBhXNSnMPuM3b/113LnA==",
"dev": true,
"dependencies": {
"@cspell/dict-ada": "^4.1.0",
"@cspell/dict-al": "^1.1.0",
"@cspell/dict-aws": "^4.0.9",
"@cspell/dict-bash": "^4.2.0",
"@cspell/dict-companies": "^3.1.12",
"@cspell/dict-cpp": "^6.0.3",
"@cspell/dict-cryptocurrencies": "^5.0.4",
"@cspell/dict-csharp": "^4.0.6",
"@cspell/dict-css": "^4.0.17",
"@cspell/dict-dart": "^2.3.0",
"@cspell/dict-data-science": "^2.0.6",
"@cspell/dict-django": "^4.1.4",
"@cspell/dict-docker": "^1.1.12",
"@cspell/dict-dotnet": "^5.0.9",
"@cspell/dict-elixir": "^4.0.7",
"@cspell/dict-en_us": "^4.3.29",
"@cspell/dict-en-common-misspellings": "^2.0.8",
"@cspell/dict-en-gb": "1.1.33",
"@cspell/dict-filetypes": "^3.0.10",
"@cspell/dict-flutter": "^1.1.0",
"@cspell/dict-fonts": "^4.0.4",
"@cspell/dict-fsharp": "^1.1.0",
"@cspell/dict-fullstack": "^3.2.3",
"@cspell/dict-gaming-terms": "^1.1.0",
"@cspell/dict-git": "^3.0.4",
"@cspell/dict-golang": "^6.0.18",
"@cspell/dict-google": "^1.0.5",
"@cspell/dict-haskell": "^4.0.5",
"@cspell/dict-html": "^4.0.11",
"@cspell/dict-html-symbol-entities": "^4.0.3",
"@cspell/dict-java": "^5.0.11",
"@cspell/dict-julia": "^1.1.0",
"@cspell/dict-k8s": "^1.0.10",
"@cspell/dict-kotlin": "^1.1.0",
"@cspell/dict-latex": "^4.0.3",
"@cspell/dict-lorem-ipsum": "^4.0.4",
"@cspell/dict-lua": "^4.0.7",
"@cspell/dict-makefile": "^1.0.4",
"@cspell/dict-markdown": "^2.0.9",
"@cspell/dict-monkeyc": "^1.0.10",
"@cspell/dict-node": "^5.0.6",
"@cspell/dict-npm": "^5.1.22",
"@cspell/dict-php": "^4.0.14",
"@cspell/dict-powershell": "^5.0.14",
"@cspell/dict-public-licenses": "^2.0.12",
"@cspell/dict-python": "^4.2.14",
"@cspell/dict-r": "^2.1.0",
"@cspell/dict-ruby": "^5.0.7",
"@cspell/dict-rust": "^4.0.11",
"@cspell/dict-scala": "^5.0.7",
"@cspell/dict-shell": "^1.1.0",
"@cspell/dict-software-terms": "^4.2.2",
"@cspell/dict-sql": "^2.2.0",
"@cspell/dict-svelte": "^1.0.6",
"@cspell/dict-swift": "^2.0.5",
"@cspell/dict-terraform": "^1.1.0",
"@cspell/dict-typescript": "^3.2.0",
"@cspell/dict-vue": "^3.0.4"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/cspell-json-reporter": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.17.2.tgz",
"integrity": "sha512-9QFzuSApaK7SYB50iCTRIUDjFZf6DXTFj8+qTR2cky+/YmEcHDpJieJVCd3STONO4m2JyqIsV7faEuA6M0YcHg==",
"dev": true,
"dependencies": {
"@cspell/cspell-types": "8.17.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/cspell-pipe": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.17.2.tgz",
"integrity": "sha512-LOTKK+hZSUc7vaN8SBEOcv+9dMYbo84awbsjjdI+HkKVBfTt3Lzlu6IJImw39L6pTDAJ1ZxOUdWO89jcxpyihg==",
"dev": true,
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/cspell-resolver": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.17.2.tgz",
"integrity": "sha512-Z2ndlzVIiXOCBnQby9q+OXcxeddiuCi//pnhO9Jf6Ixgthn+Yg7bwzAnHu+CM1SJaQnZCntGyimdxfojm+WDdA==",
"dev": true,
"dependencies": {
"global-directory": "^4.0.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/cspell-service-bus": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.17.2.tgz",
"integrity": "sha512-Cp4kVxJRyyDRd5RVTASlu+ygWG+dgy6GyH7lzb6P8SOXt1mxzCBK6Q5Dc1XHAsvhRaLrnMziCO/5Pj9/0DKs6w==",
"dev": true,
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/cspell-types": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.17.2.tgz",
"integrity": "sha512-4kMBhX92p0pchEzYTpyLCoe/bUJ29YYvMINTeHTd//hLQh0ZAyMGY1opDm1tqaXX0qpYmWG60KcvN4fCR0i6lw==",
"dev": true,
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/dict-ada": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.1.0.tgz",
"integrity": "sha512-7SvmhmX170gyPd+uHXrfmqJBY5qLcCX8kTGURPVeGxmt8XNXT75uu9rnZO+jwrfuU2EimNoArdVy5GZRGljGNg==",
"dev": true
},
"node_modules/@cspell/dict-al": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-al/-/dict-al-1.1.0.tgz",
"integrity": "sha512-PtNI1KLmYkELYltbzuoztBxfi11jcE9HXBHCpID2lou/J4VMYKJPNqe4ZjVzSI9NYbMnMnyG3gkbhIdx66VSXg==",
"dev": true
},
"node_modules/@cspell/dict-aws": {
"version": "4.0.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.9.tgz",
"integrity": "sha512-bDYdnnJGwSkIZ4gzrauu7qzOs/ZAY/FnU4k11LgdMI8BhwMfsbsy2EI1iS+sD/BI5ZnNT9kU5YR3WADeNOmhRg==",
"dev": true
},
"node_modules/@cspell/dict-bash": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.2.0.tgz",
"integrity": "sha512-HOyOS+4AbCArZHs/wMxX/apRkjxg6NDWdt0jF9i9XkvJQUltMwEhyA2TWYjQ0kssBsnof+9amax2lhiZnh3kCg==",
"dev": true,
"dependencies": {
"@cspell/dict-shell": "1.1.0"
}
},
"node_modules/@cspell/dict-companies": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.1.13.tgz",
"integrity": "sha512-EAaFMxnSG4eQKup9D81EnWAYIzorLWG7b7Zzf+Suu0bVeFBpCYESss/EWtnmb5ZZNfKAGxtoMqfL3vRfyJERIQ==",
"dev": true
},
"node_modules/@cspell/dict-cpp": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.3.tgz",
"integrity": "sha512-OFrVXdxCeGKnon36Pe3yFjBuY4kzzEwWFf3vDz+cJTodZDkjFkBifQeTtt5YfimgF8cfAJZXkBCsxjipAgmAiw==",
"dev": true
},
"node_modules/@cspell/dict-cryptocurrencies": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.4.tgz",
"integrity": "sha512-6iFu7Abu+4Mgqq08YhTKHfH59mpMpGTwdzDB2Y8bbgiwnGFCeoiSkVkgLn1Kel2++hYcZ8vsAW/MJS9oXxuMag==",
"dev": true
},
"node_modules/@cspell/dict-csharp": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.6.tgz",
"integrity": "sha512-w/+YsqOknjQXmIlWDRmkW+BHBPJZ/XDrfJhZRQnp0wzpPOGml7W0q1iae65P2AFRtTdPKYmvSz7AL5ZRkCnSIw==",
"dev": true
},
"node_modules/@cspell/dict-css": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.17.tgz",
"integrity": "sha512-2EisRLHk6X/PdicybwlajLGKF5aJf4xnX2uuG5lexuYKt05xV/J/OiBADmi8q9obhxf1nesrMQbqAt+6CsHo/w==",
"dev": true
},
"node_modules/@cspell/dict-dart": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.3.0.tgz",
"integrity": "sha512-1aY90lAicek8vYczGPDKr70pQSTQHwMFLbmWKTAI6iavmb1fisJBS1oTmMOKE4ximDf86MvVN6Ucwx3u/8HqLg==",
"dev": true
},
"node_modules/@cspell/dict-data-science": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.7.tgz",
"integrity": "sha512-XhAkK+nSW6zmrnWzusmZ1BpYLc62AWYHZc2p17u4nE2Z9XG5DleG55PCZxXQTKz90pmwlhFM9AfpkJsYaBWATA==",
"dev": true
},
"node_modules/@cspell/dict-django": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.4.tgz",
"integrity": "sha512-fX38eUoPvytZ/2GA+g4bbdUtCMGNFSLbdJJPKX2vbewIQGfgSFJKY56vvcHJKAvw7FopjvgyS/98Ta9WN1gckg==",
"dev": true
},
"node_modules/@cspell/dict-docker": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.12.tgz",
"integrity": "sha512-6d25ZPBnYZaT9D9An/x6g/4mk542R8bR3ipnby3QFCxnfdd6xaWiTcwDPsCgwN2aQZIQ1jX/fil9KmBEqIK/qA==",
"dev": true
},
"node_modules/@cspell/dict-dotnet": {
"version": "5.0.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.9.tgz",
"integrity": "sha512-JGD6RJW5sHtO5lfiJl11a5DpPN6eKSz5M1YBa1I76j4dDOIqgZB6rQexlDlK1DH9B06X4GdDQwdBfnpAB0r2uQ==",
"dev": true
},
"node_modules/@cspell/dict-elixir": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.7.tgz",
"integrity": "sha512-MAUqlMw73mgtSdxvbAvyRlvc3bYnrDqXQrx5K9SwW8F7fRYf9V4vWYFULh+UWwwkqkhX9w03ZqFYRTdkFku6uA==",
"dev": true
},
"node_modules/@cspell/dict-en_us": {
"version": "4.3.30",
"resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.30.tgz",
"integrity": "sha512-p0G5fByj5fUnMyFUlkN3kaqE3nuQkqpYV47Gn9n8k2TszsdLY55xj9UoFE4YIcjOiyU1bR/YDJ5daiPMYXTJ/A==",
"dev": true
},
"node_modules/@cspell/dict-en-common-misspellings": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.9.tgz",
"integrity": "sha512-O/jAr1VNtuyCFckbTmpeEf43ZFWVD9cJFvWaA6rO2IVmLirJViHWJUyBZOuQcesSplzEIw80MAYmnK06/MDWXQ==",
"dev": true
},
"node_modules/@cspell/dict-en-gb": {
"version": "1.1.33",
"resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz",
"integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==",
"dev": true
},
"node_modules/@cspell/dict-filetypes": {
"version": "3.0.10",
"resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.10.tgz",
"integrity": "sha512-JEN3627joBVtpa1yfkdN9vz1Z129PoKGHBKjXCEziJvf2Zt1LeULWYYYg/O6pzRR4yzRa5YbXDTuyrN7vX7DFg==",
"dev": true
},
"node_modules/@cspell/dict-flutter": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-flutter/-/dict-flutter-1.1.0.tgz",
"integrity": "sha512-3zDeS7zc2p8tr9YH9tfbOEYfopKY/srNsAa+kE3rfBTtQERAZeOhe5yxrnTPoufctXLyuUtcGMUTpxr3dO0iaA==",
"dev": true
},
"node_modules/@cspell/dict-fonts": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.4.tgz",
"integrity": "sha512-cHFho4hjojBcHl6qxidl9CvUb492IuSk7xIf2G2wJzcHwGaCFa2o3gRcxmIg1j62guetAeDDFELizDaJlVRIOg==",
"dev": true
},
"node_modules/@cspell/dict-fsharp": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.1.0.tgz",
"integrity": "sha512-oguWmHhGzgbgbEIBKtgKPrFSVAFtvGHaQS0oj+vacZqMObwkapcTGu7iwf4V3Bc2T3caf0QE6f6rQfIJFIAVsw==",
"dev": true
},
"node_modules/@cspell/dict-fullstack": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.3.tgz",
"integrity": "sha512-62PbndIyQPH11mAv0PyiyT0vbwD0AXEocPpHlCHzfb5v9SspzCCbzQ/LIBiFmyRa+q5LMW35CnSVu6OXdT+LKg==",
"dev": true
},
"node_modules/@cspell/dict-gaming-terms": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.1.0.tgz",
"integrity": "sha512-46AnDs9XkgJ2f1Sqol1WgfJ8gOqp60fojpc9Wxch7x+BA63g4JfMV5/M5x0sI0TLlLY8EBSglcr8wQF/7C80AQ==",
"dev": true
},
"node_modules/@cspell/dict-git": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-3.0.4.tgz",
"integrity": "sha512-C44M+m56rYn6QCsLbiKiedyPTMZxlDdEYAsPwwlL5bhMDDzXZ3Ic8OCQIhMbiunhCOJJT+er4URmOmM+sllnjg==",
"dev": true
},
"node_modules/@cspell/dict-golang": {
"version": "6.0.18",
"resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.18.tgz",
"integrity": "sha512-Mt+7NwfodDwUk7423DdaQa0YaA+4UoV3XSxQwZioqjpFBCuxfvvv4l80MxCTAAbK6duGj0uHbGTwpv8fyKYPKg==",
"dev": true
},
"node_modules/@cspell/dict-google": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/@cspell/dict-google/-/dict-google-1.0.7.tgz",
"integrity": "sha512-2ArNqLFUbjhzpPEMLiUUZKDpM4kBd3iWem6OPAp9PKIPhPsEQkkWJFLE5e0X68TdUUPH+ISM9BVmsB9GyRQBng==",
"dev": true
},
"node_modules/@cspell/dict-haskell": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.5.tgz",
"integrity": "sha512-s4BG/4tlj2pPM9Ha7IZYMhUujXDnI0Eq1+38UTTCpatYLbQqDwRFf2KNPLRqkroU+a44yTUAe0rkkKbwy4yRtQ==",
"dev": true
},
"node_modules/@cspell/dict-html": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.11.tgz",
"integrity": "sha512-QR3b/PB972SRQ2xICR1Nw/M44IJ6rjypwzA4jn+GH8ydjAX9acFNfc+hLZVyNe0FqsE90Gw3evLCOIF0vy1vQw==",
"dev": true
},
"node_modules/@cspell/dict-html-symbol-entities": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.3.tgz",
"integrity": "sha512-aABXX7dMLNFdSE8aY844X4+hvfK7977sOWgZXo4MTGAmOzR8524fjbJPswIBK7GaD3+SgFZ2yP2o0CFvXDGF+A==",
"dev": true
},
"node_modules/@cspell/dict-it-it": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-it-it/-/dict-it-it-3.1.0.tgz",
"integrity": "sha512-n+Z3qn9/yrYD8tFXeTm2999rKN/ELFPQI2A469nUTo8I/tGnIWj71ndZZxOgG85b0CTsf17i1HejpMIeAGFeZQ==",
"dev": true
},
"node_modules/@cspell/dict-java": {
"version": "5.0.11",
"resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.11.tgz",
"integrity": "sha512-T4t/1JqeH33Raa/QK/eQe26FE17eUCtWu+JsYcTLkQTci2dk1DfcIKo8YVHvZXBnuM43ATns9Xs0s+AlqDeH7w==",
"dev": true
},
"node_modules/@cspell/dict-julia": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-julia/-/dict-julia-1.1.0.tgz",
"integrity": "sha512-CPUiesiXwy3HRoBR3joUseTZ9giFPCydSKu2rkh6I2nVjXnl5vFHzOMLXpbF4HQ1tH2CNfnDbUndxD+I+7eL9w==",
"dev": true
},
"node_modules/@cspell/dict-k8s": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.10.tgz",
"integrity": "sha512-313haTrX9prep1yWO7N6Xw4D6tvUJ0Xsx+YhCP+5YrrcIKoEw5Rtlg8R4PPzLqe6zibw6aJ+Eqq+y76Vx5BZkw==",
"dev": true
},
"node_modules/@cspell/dict-kotlin": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-kotlin/-/dict-kotlin-1.1.0.tgz",
"integrity": "sha512-vySaVw6atY7LdwvstQowSbdxjXG6jDhjkWVWSjg1XsUckyzH1JRHXe9VahZz1i7dpoFEUOWQrhIe5B9482UyJQ==",
"dev": true
},
"node_modules/@cspell/dict-latex": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.3.tgz",
"integrity": "sha512-2KXBt9fSpymYHxHfvhUpjUFyzrmN4c4P8mwIzweLyvqntBT3k0YGZJSriOdjfUjwSygrfEwiuPI1EMrvgrOMJw==",
"dev": true
},
"node_modules/@cspell/dict-lorem-ipsum": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.4.tgz",
"integrity": "sha512-+4f7vtY4dp2b9N5fn0za/UR0kwFq2zDtA62JCbWHbpjvO9wukkbl4rZg4YudHbBgkl73HRnXFgCiwNhdIA1JPw==",
"dev": true
},
"node_modules/@cspell/dict-lua": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.7.tgz",
"integrity": "sha512-Wbr7YSQw+cLHhTYTKV6cAljgMgcY+EUAxVIZW3ljKswEe4OLxnVJ7lPqZF5JKjlXdgCjbPSimsHqyAbC5pQN/Q==",
"dev": true
},
"node_modules/@cspell/dict-makefile": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-makefile/-/dict-makefile-1.0.4.tgz",
"integrity": "sha512-E4hG/c0ekPqUBvlkrVvzSoAA+SsDA9bLi4xSV3AXHTVru7Y2bVVGMPtpfF+fI3zTkww/jwinprcU1LSohI3ylw==",
"dev": true
},
"node_modules/@cspell/dict-markdown": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@cspell/dict-markdown/-/dict-markdown-2.0.9.tgz",
"integrity": "sha512-j2e6Eg18BlTb1mMP1DkyRFMM/FLS7qiZjltpURzDckB57zDZbUyskOFdl4VX7jItZZEeY0fe22bSPOycgS1Z5A==",
"dev": true,
"peerDependencies": {
"@cspell/dict-css": "^4.0.17",
"@cspell/dict-html": "^4.0.11",
"@cspell/dict-html-symbol-entities": "^4.0.3",
"@cspell/dict-typescript": "^3.2.0"
}
},
"node_modules/@cspell/dict-monkeyc": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.10.tgz",
"integrity": "sha512-7RTGyKsTIIVqzbvOtAu6Z/lwwxjGRtY5RkKPlXKHEoEAgIXwfDxb5EkVwzGQwQr8hF/D3HrdYbRT8MFBfsueZw==",
"dev": true
},
"node_modules/@cspell/dict-node": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-5.0.6.tgz",
"integrity": "sha512-CEbhPCpxGvRNByGolSBTrXXW2rJA4bGqZuTx1KKO85mwR6aadeOmUE7xf/8jiCkXSy+qvr9aJeh+jlfXcsrziQ==",
"dev": true
},
"node_modules/@cspell/dict-npm": {
"version": "5.1.23",
"resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.23.tgz",
"integrity": "sha512-/xK7G1/H5M73J3CAb3WmVXlMbK6zjZrfwmOOBiB7SSbK6h7/WmwRBuLC0UwO50x07NJUuVmJek5ELaNa81guVw==",
"dev": true
},
"node_modules/@cspell/dict-php": {
"version": "4.0.14",
"resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.14.tgz",
"integrity": "sha512-7zur8pyncYZglxNmqsRycOZ6inpDoVd4yFfz1pQRe5xaRWMiK3Km4n0/X/1YMWhh3e3Sl/fQg5Axb2hlN68t1g==",
"dev": true
},
"node_modules/@cspell/dict-powershell": {
"version": "5.0.14",
"resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.14.tgz",
"integrity": "sha512-ktjjvtkIUIYmj/SoGBYbr3/+CsRGNXGpvVANrY0wlm/IoGlGywhoTUDYN0IsGwI2b8Vktx3DZmQkfb3Wo38jBA==",
"dev": true
},
"node_modules/@cspell/dict-public-licenses": {
"version": "2.0.13",
"resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.13.tgz",
"integrity": "sha512-1Wdp/XH1ieim7CadXYE7YLnUlW0pULEjVl9WEeziZw3EKCAw8ZI8Ih44m4bEa5VNBLnuP5TfqC4iDautAleQzQ==",
"dev": true
},
"node_modules/@cspell/dict-python": {
"version": "4.2.15",
"resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.15.tgz",
"integrity": "sha512-VNXhj0Eh+hdHN89MgyaoSAexBQKmYtJaMhucbMI7XmBs4pf8fuFFN3xugk51/A4TZJr8+RImdFFsGMOw+I4bDA==",
"dev": true,
"dependencies": {
"@cspell/dict-data-science": "^2.0.7"
}
},
"node_modules/@cspell/dict-r": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.1.0.tgz",
"integrity": "sha512-k2512wgGG0lTpTYH9w5Wwco+lAMf3Vz7mhqV8+OnalIE7muA0RSuD9tWBjiqLcX8zPvEJr4LdgxVju8Gk3OKyA==",
"dev": true
},
"node_modules/@cspell/dict-ruby": {
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.7.tgz",
"integrity": "sha512-4/d0hcoPzi5Alk0FmcyqlzFW9lQnZh9j07MJzPcyVO62nYJJAGKaPZL2o4qHeCS/od/ctJC5AHRdoUm0ktsw6Q==",
"dev": true
},
"node_modules/@cspell/dict-rust": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.11.tgz",
"integrity": "sha512-OGWDEEzm8HlkSmtD8fV3pEcO2XBpzG2XYjgMCJCRwb2gRKvR+XIm6Dlhs04N/K2kU+iH8bvrqNpM8fS/BFl0uw==",
"dev": true
},
"node_modules/@cspell/dict-scala": {
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.7.tgz",
"integrity": "sha512-yatpSDW/GwulzO3t7hB5peoWwzo+Y3qTc0pO24Jf6f88jsEeKmDeKkfgPbYuCgbE4jisGR4vs4+jfQZDIYmXPA==",
"dev": true
},
"node_modules/@cspell/dict-shell": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-shell/-/dict-shell-1.1.0.tgz",
"integrity": "sha512-D/xHXX7T37BJxNRf5JJHsvziFDvh23IF/KvkZXNSh8VqcRdod3BAz9VGHZf6VDqcZXr1VRqIYR3mQ8DSvs3AVQ==",
"dev": true
},
"node_modules/@cspell/dict-software-terms": {
"version": "4.2.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-4.2.4.tgz",
"integrity": "sha512-GRkuaFfjFHPYynyRMuisKyE3gRiVK0REClRWfnH9+5iCs5TKDURsMpWJGNsgQ6N5jAKKrtWXVKjepkDHjMldjQ==",
"dev": true
},
"node_modules/@cspell/dict-sql": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.2.0.tgz",
"integrity": "sha512-MUop+d1AHSzXpBvQgQkCiok8Ejzb+nrzyG16E8TvKL2MQeDwnIvMe3bv90eukP6E1HWb+V/MA/4pnq0pcJWKqQ==",
"dev": true
},
"node_modules/@cspell/dict-svelte": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.6.tgz",
"integrity": "sha512-8LAJHSBdwHCoKCSy72PXXzz7ulGROD0rP1CQ0StOqXOOlTUeSFaJJlxNYjlONgd2c62XBQiN2wgLhtPN+1Zv7Q==",
"dev": true
},
"node_modules/@cspell/dict-swift": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.5.tgz",
"integrity": "sha512-3lGzDCwUmnrfckv3Q4eVSW3sK3cHqqHlPprFJZD4nAqt23ot7fic5ALR7J4joHpvDz36nHX34TgcbZNNZOC/JA==",
"dev": true
},
"node_modules/@cspell/dict-terraform": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.1.0.tgz",
"integrity": "sha512-G55pcUUxeXAhejstmD35B47SkFd4uqCQimc+CMgq8Nx0dr03guL2iMsz8faRWQGkCnGimX8S91rbOhDv9p/heg==",
"dev": true
},
"node_modules/@cspell/dict-typescript": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.2.0.tgz",
"integrity": "sha512-Pk3zNePLT8qg51l0M4g1ISowYAEGxTuNfZlgkU5SvHa9Cu7x/BWoyYq9Fvc3kAyoisCjRPyvWF4uRYrPitPDFw==",
"dev": true
},
"node_modules/@cspell/dict-vue": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.4.tgz",
"integrity": "sha512-0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w==",
"dev": true
},
"node_modules/@cspell/dynamic-import": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.17.2.tgz",
"integrity": "sha512-n3AVbyBlTn/pLtYK62mqgDfJIuQHUTY/k8SMUCjyjfgoqd3LcKhS1PmbLfDWPMTODK30cSMMTLejjy2bL6ksEw==",
"dev": true,
"dependencies": {
"@cspell/url": "8.17.2",
"import-meta-resolve": "^4.1.0"
},
"engines": {
"node": ">=18.0"
}
},
"node_modules/@cspell/filetypes": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.17.2.tgz",
"integrity": "sha512-2B+dB4Ls2xiOjg+vEEbAuJTHtMfXSihVzfLGnj9+qUfq47iqrz4ZBvCOfZhYdiVaaZJoZUgIw8ljrUfqFzYDAg==",
"dev": true,
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/strong-weak-map": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.17.2.tgz",
"integrity": "sha512-LbbhdVwtqyJ71X+O7e2PqpDp7zLiY8jmW2CJFLjZYWTUawgav2bpwECGq6O9Gnwqe+fj7yWxGJFDSpXQcCJQAw==",
"dev": true,
"engines": {
"node": ">=18"
}
},
"node_modules/@cspell/url": {
"version": "8.17.2",
"resolved": "https://registry.npmjs.org/@cspell/url/-/url-8.17.2.tgz",
"integrity": "sha512-yy4eYWNX2iutXmy4Igbn/hL/NYaNt94DylohPtgVr0Zxnn/AAArt9Bv1KXPpjB8VFy2wzzPzWmZ+MWDUVpHCbg==",
"dev": true,
"engines": {
"node": ">=18.0"
}
},
"node_modules/@types/unist": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz",
"integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==",
"dev": true
},
"node_modules/@unified-latex/unified-latex-builder": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-builder/-/unified-latex-builder-1.4.2.tgz",
"integrity": "sha512-XVJJiMPiUOus/ZHtdsK9RADVsihUswSjI7IT+UAufIrJdQiLq5WlPI5pq26/T9HuPlZll3Dm4pWo9dmh15a3KQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-ctan": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-ctan/-/unified-latex-ctan-1.4.2.tgz",
"integrity": "sha512-jJ4mVjt0mEhMx98uYKRfVh2VqMuF43mvFD0GSysTgZb31+GE4OvPSpjjTjVtrmVmWfXIeqtc6RyDpRGKCmenyQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-builder": "^1.4.2",
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-argspec": "^1.4.2",
"@unified-latex/unified-latex-util-arguments": "^1.4.2",
"@unified-latex/unified-latex-util-comments": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-pegjs": "^1.4.2",
"@unified-latex/unified-latex-util-print-raw": "^1.4.2",
"@unified-latex/unified-latex-util-render-info": "^1.4.2",
"@unified-latex/unified-latex-util-replace": "^1.4.2",
"@unified-latex/unified-latex-util-scan": "^1.4.2",
"@unified-latex/unified-latex-util-split": "^1.4.2",
"@unified-latex/unified-latex-util-trim": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2",
"color": "^4.2.3"
}
},
"node_modules/@unified-latex/unified-latex-prettier": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-prettier/-/unified-latex-prettier-2.4.2.tgz",
"integrity": "sha512-gMvlKGiGi9zOWVHXPhzeURhPYwPIJ7MBht42et/sVb4Z2wTjhcn+bU7kookT067ywOptVZNBgJw+iAgSORAd+w==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-ctan": "^1.4.1",
"@unified-latex/unified-latex-types": "^1.3.1",
"@unified-latex/unified-latex-util-align": "^1.4.0",
"@unified-latex/unified-latex-util-match": "^1.4.0",
"@unified-latex/unified-latex-util-parse": "^1.4.1",
"@unified-latex/unified-latex-util-pgfkeys": "^1.4.0",
"@unified-latex/unified-latex-util-print-raw": "^1.4.0",
"@unified-latex/unified-latex-util-trim": "^1.4.0",
"@unified-latex/unified-latex-util-visit": "^1.4.0",
"prettier": "^3.0.3",
"unified": "^10.1.2"
}
},
"node_modules/@unified-latex/unified-latex-types": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-types/-/unified-latex-types-1.4.2.tgz",
"integrity": "sha512-aSUMXpdf2UOuCld9P6Ll3IRw7LcE3K0vvlJa2KVpUS1mJA7UDBJ5OOChwFKiPzl/I4NKWJq0LOIsb+54a5Vo5w==",
"dev": true
},
"node_modules/@unified-latex/unified-latex-util-align": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-align/-/unified-latex-util-align-1.4.2.tgz",
"integrity": "sha512-JJGXaz0GLnYYaMNCafRydWbBl9ZEnKaUubUtUH//K2g9RSg/bHigP1Yo47u7g3fJSuNOFxMiNlZISmU+BnrmMA==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-pegjs": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-argspec": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-argspec/-/unified-latex-util-argspec-1.4.2.tgz",
"integrity": "sha512-u8lu0awTJ6o1a0xZOpIV3RXqlNuy3HyGb17BHEjRIzOLIyqgF5LsVH4OX4MwK5Kjh9GySUE+mDMNqO2b1czIfQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-util-pegjs": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-arguments": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-arguments/-/unified-latex-util-arguments-1.4.2.tgz",
"integrity": "sha512-u0yocEmQc8Nbjg0CvUhmfsOPPiXQjHwquPiEMvWqxEV31KGty7jDCq+vDs7rALvMCrgkOR0ugeNtfjAsKa11HA==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-builder": "^1.4.2",
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-argspec": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-render-info": "^1.4.2",
"@unified-latex/unified-latex-util-scan": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2",
"unified": "^10.1.2"
}
},
"node_modules/@unified-latex/unified-latex-util-catcode": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-catcode/-/unified-latex-util-catcode-1.4.2.tgz",
"integrity": "sha512-05CooHT89eXBKjdUUO4KdOunRyfm1fb+ZyRgjD1kaJ3qxAF64KiyFapCgLPFDL98OyDjRYdELoU2GPzEHiP2xA==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-comments": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-comments/-/unified-latex-util-comments-1.4.2.tgz",
"integrity": "sha512-90bbeaSZmgK9ueRno7fH25FNFmnkesLkIJtWjbBasdhMQWjI9jQtM3sgjDjMBHjFaNJSAiwm5cphGt4HhLy1BA==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-replace": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-environments": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-environments/-/unified-latex-util-environments-1.4.2.tgz",
"integrity": "sha512-Mcv+C3Lr0+jx0DKGJOnIPXkhVHPmX+mr1+IO97ZWCC6ibmT8BdkQ0CCN1lUg0pEtEC+JU7KzcoEBkMyS7ftEvQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-arguments": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-print-raw": "^1.4.2",
"@unified-latex/unified-latex-util-render-info": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2",
"unified": "^10.1.2"
}
},
"node_modules/@unified-latex/unified-latex-util-match": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-match/-/unified-latex-util-match-1.4.2.tgz",
"integrity": "sha512-LEa1zE/hrZrUyGuA94AjTWN9/dIqGCdu/ETCT0eCD8jZmRTQPRnn/uKUEIXWTn5yvF6USYzM9Dx5w4pHaTUWaQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-print-raw": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-parse": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-parse/-/unified-latex-util-parse-1.4.2.tgz",
"integrity": "sha512-tTCIFnxfqS4xmPS/EENaEwjtf4ECiOSXStOm9MCt9EANgpxLR9qteLgagC5u7sFzvN6NHYYZDhe4XhcyRTvuRg==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-ctan": "^1.4.2",
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-arguments": "^1.4.2",
"@unified-latex/unified-latex-util-catcode": "^1.4.2",
"@unified-latex/unified-latex-util-environments": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-pegjs": "^1.4.2",
"@unified-latex/unified-latex-util-print-raw": "^1.4.2",
"@unified-latex/unified-latex-util-trim": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2",
"unified": "^10.1.2"
}
},
"node_modules/@unified-latex/unified-latex-util-pegjs": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-pegjs/-/unified-latex-util-pegjs-1.4.2.tgz",
"integrity": "sha512-y0WSOpXRXx64dJ9mMLTe44ZzgRy+axNaZ6R0QgX6hc3IDnQph+gUZJG3sXgZCqZZBVV0/RGJOq9f804PZ9hKAg==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-pgfkeys": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-pgfkeys/-/unified-latex-util-pgfkeys-1.4.2.tgz",
"integrity": "sha512-+iu/HRxqfWMUlr/F4oN2YbA+nwERbhDJXCknsDWBtNUw2dxX35Vu0Ldq9wuTKdJA+q0Lw2xakfZ58lVPgtXVIw==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-pegjs": "^1.4.2",
"@unified-latex/unified-latex-util-print-raw": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-print-raw": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-print-raw/-/unified-latex-util-print-raw-1.4.2.tgz",
"integrity": "sha512-vOY48R72bEQDIIvW21gjFs+y/F+61UIq0UXUBnf4eyR7SWlQwuWt+rO1FTuT0faZJKXRZymB8c1oOLGQl+gWRQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-render-info": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-render-info/-/unified-latex-util-render-info-1.4.2.tgz",
"integrity": "sha512-b5vZqpgo3yyH3zDww3PRUDp8DiDEampBRZ3xX7nXbG/B26s4fydToDbMHP5Q9r5YD/hsjGEgHZzGeb96kV997w==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-replace": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-replace/-/unified-latex-util-replace-1.4.2.tgz",
"integrity": "sha512-kUdd/M9guhSCQk485BIO7ysIeEENkq3wixVNPEViC1hxR5GjSXnPIqEX0IWTE3uwcPZzskuTiccYG+z46ELULg==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-split": "^1.4.2",
"@unified-latex/unified-latex-util-trim": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2",
"unified": "^10.1.2"
}
},
"node_modules/@unified-latex/unified-latex-util-scan": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-scan/-/unified-latex-util-scan-1.4.2.tgz",
"integrity": "sha512-veoarQeQVW1A/oSRCH7RI7qz410MecmT1NjzptNz982ODxWT9SS42QSraxm80R4bVooMxjv8r2P5ShlH5u7uWQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-print-raw": "^1.4.2",
"trie-prefix-tree": "^1.5.1"
}
},
"node_modules/@unified-latex/unified-latex-util-split": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-split/-/unified-latex-util-split-1.4.2.tgz",
"integrity": "sha512-IQpUheQpd+jE3fjbzsubhySL80hSRlxix/23/b5h4hwEeBOWU2epAnKG9pcWjvd7xefIH4cvtPvcuqnzry8kcQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2"
}
},
"node_modules/@unified-latex/unified-latex-util-trim": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-trim/-/unified-latex-util-trim-1.4.2.tgz",
"integrity": "sha512-uAxX03qGnCD+e3jtX3wcjDPvD0amGQeIwCsvBQ1ONhODInq+aBMxf6t1UGC2LpPCmJqAaLevP0pSR39Fzw8zLA==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2",
"@unified-latex/unified-latex-util-render-info": "^1.4.2",
"@unified-latex/unified-latex-util-visit": "^1.4.2",
"unified": "^10.1.2"
}
},
"node_modules/@unified-latex/unified-latex-util-visit": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@unified-latex/unified-latex-util-visit/-/unified-latex-util-visit-1.4.2.tgz",
"integrity": "sha512-rGqiqiQsyywAZC6rBGteJYE0nSDw/AGddwZWB/KgWvN6VYXZEY8UeBQjcqf01CmaRC8hDXjYk6Pw+By5XfQ4fQ==",
"dev": true,
"dependencies": {
"@unified-latex/unified-latex-types": "^1.4.2",
"@unified-latex/unified-latex-util-match": "^1.4.2"
}
},
"node_modules/array-buffer-byte-length": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
"integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"is-array-buffer": "^3.0.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array-timsort": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz",
"integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==",
"dev": true
},
"node_modules/arraybuffer.prototype.slice": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz",
"integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==",
"dev": true,
"dependencies": {
"array-buffer-byte-length": "^1.0.0",
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
"es-abstract": "^1.22.1",
"get-intrinsic": "^1.2.1",
"is-array-buffer": "^3.0.2",
"is-shared-array-buffer": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/available-typed-arrays": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
"integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
"dev": true,
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/bail": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
"dev": true,
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"dev": true
},
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dev": true,
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/braces": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dev": true,
"dependencies": {
"fill-range": "^7.1.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/call-bind": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz",
"integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==",
"dev": true,
"dependencies": {
"function-bind": "^1.1.2",
"get-intrinsic": "^1.2.1",
"set-function-length": "^1.1.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/callsites": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
"dev": true,
"engines": {
"node": ">=6"
}
},
"node_modules/chalk": {
"version": "5.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
"integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
"dev": true,
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/chalk-template": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-1.1.0.tgz",
"integrity": "sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==",
"dev": true,
"dependencies": {
"chalk": "^5.2.0"
},
"engines": {
"node": ">=14.16"
},
"funding": {
"url": "https://github.com/chalk/chalk-template?sponsor=1"
}
},
"node_modules/clear-module": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz",
"integrity": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==",
"dev": true,
"dependencies": {
"parent-module": "^2.0.0",
"resolve-from": "^5.0.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/color": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
"dev": true,
"dependencies": {
"color-convert": "^2.0.1",
"color-string": "^1.9.0"
},
"engines": {
"node": ">=12.5.0"
}
},
"node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"dependencies": {
"color-name": "~1.1.4"
},
"engines": {
"node": ">=7.0.0"
}
},
"node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true
},
"node_modules/color-string": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",