-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
4925 lines (4427 loc) · 174 KB
/
Copy pathyarn.lock
File metadata and controls
4925 lines (4427 loc) · 174 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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 10
cacheKey: 10c0
"@colordx/core@npm:^5.4.3":
version: 5.5.0
resolution: "@colordx/core@npm:5.5.0"
checksum: 10c0/89cc79e3333b4c4f81bf103c44e66af78ea4fab1033be5fb2fac0401fb34234c956a7607812b87069f0e4c2bd13a0c06717cdc0c2724a375ff193bd91e67b18f
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-bundled-dicts@npm:10.1.1"
dependencies:
"@cspell/dict-ada": "npm:^4.1.1"
"@cspell/dict-al": "npm:^1.1.1"
"@cspell/dict-aws": "npm:^4.0.17"
"@cspell/dict-bash": "npm:^4.2.3"
"@cspell/dict-companies": "npm:^3.2.12"
"@cspell/dict-cpp": "npm:^7.1.0"
"@cspell/dict-cryptocurrencies": "npm:^5.0.5"
"@cspell/dict-csharp": "npm:^4.0.8"
"@cspell/dict-css": "npm:^4.1.2"
"@cspell/dict-dart": "npm:^2.3.2"
"@cspell/dict-data-science": "npm:^2.0.16"
"@cspell/dict-django": "npm:^4.1.6"
"@cspell/dict-docker": "npm:^1.1.17"
"@cspell/dict-dotnet": "npm:^5.0.13"
"@cspell/dict-elixir": "npm:^4.0.8"
"@cspell/dict-en-common-misspellings": "npm:^2.2.0"
"@cspell/dict-en-gb-mit": "npm:^3.1.25"
"@cspell/dict-en_us": "npm:^4.4.36"
"@cspell/dict-filetypes": "npm:^3.0.18"
"@cspell/dict-flutter": "npm:^1.1.1"
"@cspell/dict-fonts": "npm:^4.0.6"
"@cspell/dict-fsharp": "npm:^1.1.1"
"@cspell/dict-fullstack": "npm:^3.2.9"
"@cspell/dict-gaming-terms": "npm:^1.1.2"
"@cspell/dict-git": "npm:^3.1.0"
"@cspell/dict-golang": "npm:^6.0.27"
"@cspell/dict-google": "npm:^1.0.9"
"@cspell/dict-haskell": "npm:^4.0.6"
"@cspell/dict-html": "npm:^4.0.16"
"@cspell/dict-html-symbol-entities": "npm:^4.0.5"
"@cspell/dict-java": "npm:^5.0.12"
"@cspell/dict-julia": "npm:^1.1.1"
"@cspell/dict-k8s": "npm:^1.0.13"
"@cspell/dict-kotlin": "npm:^1.1.1"
"@cspell/dict-latex": "npm:^5.1.0"
"@cspell/dict-lorem-ipsum": "npm:^4.0.5"
"@cspell/dict-lua": "npm:^4.0.8"
"@cspell/dict-makefile": "npm:^1.0.5"
"@cspell/dict-markdown": "npm:^2.0.18"
"@cspell/dict-monkeyc": "npm:^1.1.0"
"@cspell/dict-node": "npm:^5.0.9"
"@cspell/dict-npm": "npm:^5.2.47"
"@cspell/dict-php": "npm:^4.1.1"
"@cspell/dict-powershell": "npm:^5.0.15"
"@cspell/dict-public-licenses": "npm:^2.0.16"
"@cspell/dict-python": "npm:^4.4.0"
"@cspell/dict-r": "npm:^2.1.1"
"@cspell/dict-ruby": "npm:^5.1.2"
"@cspell/dict-rust": "npm:^4.1.2"
"@cspell/dict-scala": "npm:^5.0.9"
"@cspell/dict-shell": "npm:^1.2.0"
"@cspell/dict-software-terms": "npm:^5.4.1"
"@cspell/dict-sql": "npm:^2.2.1"
"@cspell/dict-svelte": "npm:^1.0.7"
"@cspell/dict-swift": "npm:^2.0.6"
"@cspell/dict-terraform": "npm:^1.1.4"
"@cspell/dict-typescript": "npm:^3.2.3"
"@cspell/dict-vue": "npm:^3.0.5"
"@cspell/dict-zig": "npm:^1.0.0"
checksum: 10c0/d4f0ebc06734eb30ff240235a66756170d302c5bbdfe8f4ff8d0181a4b898e435856ac3a113bfc7c03f434cf8b9eb0e9180da9751901df13881abb2d63f68094
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-json-reporter@npm:10.1.1"
dependencies:
"@cspell/cspell-types": "npm:10.1.1"
checksum: 10c0/293ee10461042ec795d98b3b80c75867bd5e34b848e1998204c95306dabd788538b667344fc22cf2f557087c92c3213c1734a84442f14ac92115d98f6f8d64aa
languageName: node
linkType: hard
"@cspell/cspell-performance-monitor@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-performance-monitor@npm:10.1.1"
checksum: 10c0/41bee570cf513415f125f15ebc09b5ee0d3d47b862d2d52938944c56a013f4b880e6edc168dcc42a3a8d523af69f0c0f051db8f51afe7e26db574d9eb619ea8d
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-pipe@npm:10.1.1"
checksum: 10c0/3d7ae23a01791dc3fe9ee006005e06e687abe8a8373c03024a0a5fcf0c265b3af74cf5f07ec44721ac2d997d49b7815c7803ed1b7aea54cdad4f8e6a8018b54a
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-resolver@npm:10.1.1"
dependencies:
global-directory: "npm:^5.0.0"
checksum: 10c0/452b510c83c8e2010e4aeaba1a4d16d5af976b5f2eed0e61ed5531aeaf1badb3ffea9be357a1b24405da72db261ce813237636da8cf0aa9d0916273c32fccead
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-service-bus@npm:10.1.1"
checksum: 10c0/352fb84e05777e27176886cd91ff0dd1e69b740f6b5fafce67207be713645a64ebcc7230f11926bda2ab75bc8c39e50d3ba31a5464628af0324daeb88a03ac0d
languageName: node
linkType: hard
"@cspell/cspell-types@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-types@npm:10.1.1"
checksum: 10c0/e5b5f60f4d2f7c405e8158809fa6d8a24eaed2ce7ffd491d49327583ec68b7de251b78b4dfdcab91757b04ca98326ad0584941f8add4a510b3fc441a1fef32d1
languageName: node
linkType: hard
"@cspell/cspell-worker@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/cspell-worker@npm:10.1.1"
dependencies:
cspell-lib: "npm:10.1.1"
checksum: 10c0/ee1ae59ba07c98d41b474a12c202656cee273719e4dba16594506d83e91e6d903454d4c5fd4608fe9236042142d409775cc94797b266f2bf01e1ad87ee4defc1
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-ada@npm:4.1.1"
checksum: 10c0/4943399b5dd7dbed220b92ddcc6d3c55d0b00f141b52a39f35b9235e8f8cad8c0e63cab6af3f8f9e6ea669e672799215e50320059cae972fcd34174f4cbf38c7
languageName: node
linkType: hard
"@cspell/dict-al@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-al@npm:1.1.1"
checksum: 10c0/a6bd4d57a3027f91a44bd37f29f449beb684032cc88ba742a7b1576a3fac3f9d93c57b0a3b45eea732efb50c322ce2b8de386e1b15f605372ed312d4db6bc292
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.17":
version: 4.0.17
resolution: "@cspell/dict-aws@npm:4.0.17"
checksum: 10c0/d421a78aee8cc3db78a0bdffad2ceda9ca8e476498398809f2975bae9f03233df1112e713f2d699239600a9019d5e8f11ca60dfcb49fdce56815d5e794285c7b
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.2.3":
version: 4.2.3
resolution: "@cspell/dict-bash@npm:4.2.3"
dependencies:
"@cspell/dict-shell": "npm:1.2.0"
checksum: 10c0/b8402dbe76da463c66124140d8ff1e017775402f489cac11d59b2fcd6be8d03b0588ba571c7ff7b851ce88a9bc83a0f098d14454a208a5135aed062b24c0b5bf
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.2.12":
version: 3.2.12
resolution: "@cspell/dict-companies@npm:3.2.12"
checksum: 10c0/b094b34a5a2e964bf9e1547ab5cbbf654af750a63f084278e94d5a99acf0ec01a7bce70367e385cb1469705988f5f17adcec79f97b371624659c9421631bfa9b
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^7.1.0":
version: 7.1.0
resolution: "@cspell/dict-cpp@npm:7.1.0"
checksum: 10c0/9bb931414638a4a07022199e5ad6ab538715b451e88939deef732cbb1c6854d148613a6eb692a240685c8a7ad0fdb9347763f308f81f3164b12aa3679a772898
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.5":
version: 5.0.5
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.5"
checksum: 10c0/d28c05f26d500bf05d08d725b43b5c1d740177b31ebdfcd03ae9929988b7878c3a6c94b99d8e355a5b20201f8af4b71713fb7f417548b69d621129ad6863be51
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-csharp@npm:4.0.8"
checksum: 10c0/b55dbe323b973e0e98d76a17205b103fbb52dec01d45d55aa06a14f1acc6c8bec259f7923bbe6138d1af2b11463969d920214ce0fc6e89eaf6fa08f86b10184e
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.1.2":
version: 4.1.2
resolution: "@cspell/dict-css@npm:4.1.2"
checksum: 10c0/55d376c7a4cb879191281dcd1b2951488187d0ce9b50e94b120c2e6dabf47e1d12d243a94238e15245b70c13b3647b19bc28fdd9c778a32315b120cfb10ceb78
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.3.2":
version: 2.3.2
resolution: "@cspell/dict-dart@npm:2.3.2"
checksum: 10c0/1c0842ff09785aaf2bc2e68f4c05ec5e20331f3fce1503ef5a87305feb223f6e23404c68e4991bb90c6473825a7f8cd65b3ed86eef0d8032d43b13558ddb1753
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.16":
version: 2.0.16
resolution: "@cspell/dict-data-science@npm:2.0.16"
checksum: 10c0/c3201af6b855ee93da81616b254bfba8694108fbda11ce6946cfd9ffc9c67935e0745282d136a98bec84ebe93763b2dffe7969fc3ebb46b16741c9e405d21efc
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.6":
version: 4.1.6
resolution: "@cspell/dict-django@npm:4.1.6"
checksum: 10c0/76f71cba5a692df48554a3cd7cff7e27df85ab826e2cddf0594c21062e5c96de3090508314659a9ec708913a4afd61afb0f044ae8c41a1ec573583d516056f2d
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.17":
version: 1.1.17
resolution: "@cspell/dict-docker@npm:1.1.17"
checksum: 10c0/1aaa4ffba7842b9044d1c4c6ae704907e6be3d8407c7feb986b3b7efa2e0139fc2ea3c3ad955d7ba4c92b5f577e05648ffc00a2a27b76d2bb93acde431452e58
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.13":
version: 5.0.13
resolution: "@cspell/dict-dotnet@npm:5.0.13"
checksum: 10c0/b34792ea2b1258f4e215487c4ff61de2fb3c9c6e0381fec03c4fb8132f2decd2b7b73a6450c507e8a3211e616282a3ace94e7d99363503e0efa4ef2cb6f2fcca
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-elixir@npm:4.0.8"
checksum: 10c0/fe63aace353de8a134102764a58344fe755f27276fddcdf7e858d250ee13732a58f37f940c13bae7080fc286cb5b327ed168d201758da49243a1e45f42512c5f
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.2.0":
version: 2.2.0
resolution: "@cspell/dict-en-common-misspellings@npm:2.2.0"
checksum: 10c0/36aea488627197a2e7e09c6d849f9274911d5a6152d3ccbdb0b9903f083849f3320609d825d2f1dee296d1a78ac3fdfc5934f98e84716c555e341d001c93ca26
languageName: node
linkType: hard
"@cspell/dict-en-gb-mit@npm:^3.1.25":
version: 3.1.26
resolution: "@cspell/dict-en-gb-mit@npm:3.1.26"
checksum: 10c0/5666901aa9043d0947503ef4b3ef29dd39e32a28d3bb6e57c0cbdca06e14a24a1dd1e056dffd4731486beddceaa51323d3612ad02654346921fc76ad19206cf1
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.4.36":
version: 4.4.37
resolution: "@cspell/dict-en_us@npm:4.4.37"
checksum: 10c0/26778921b43641b2dbd4685d03abeefebf978306a560e05d7b04c0c6bbaff70caf5707f398e81831b7e746d721fbe2355a27eae601d3b9f495f8eb5708de890a
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.18":
version: 3.0.18
resolution: "@cspell/dict-filetypes@npm:3.0.18"
checksum: 10c0/b7a223eacef51770ed844b48b64d92b05b41a0a2ecbb6856ba8758fe8e444ca5f4252ecc511ac00ec1d12c1b12aef1198865f612cceaaf6d304c92b049a739cb
languageName: node
linkType: hard
"@cspell/dict-flutter@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-flutter@npm:1.1.1"
checksum: 10c0/77e4533e6e7a38261ba2d744ca0c3aabb78f79b1ba6a2fde32169e475e5f940a526503097e520807155a0d8d0c16db346968873a32f1e99393be687da505e1b4
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-fonts@npm:4.0.6"
checksum: 10c0/73095a5bb3ec6ca24c7f01298b8344646005c0c05857b24ae106d7f795acf0b7107f4aaa677224c899d7aad7d0383f9f82dddd11a6b4cf3b26e3e5166b222674
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-fsharp@npm:1.1.1"
checksum: 10c0/919de1f2a29d646781cb3114985f2730cc5ee0a253dc03c225c4430e73659e1189891fa7fa09c43179437e7386f4094e41d23d754b0a99a342344986094e2846
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.2.9":
version: 3.2.9
resolution: "@cspell/dict-fullstack@npm:3.2.9"
checksum: 10c0/a13d08099d1048797fe37d2a654846ff5086193bd29d57b62423ebc74f6c08c9f3b52c49f08b73d6bd09cdb393b70351f85f151893a20a5f8c858e474dd42e75
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.1.2":
version: 1.1.2
resolution: "@cspell/dict-gaming-terms@npm:1.1.2"
checksum: 10c0/eba9c672d352e54011704d97f5467158c02c238fa1639e64177ee1cd0d2c52deb57f0c9ae5f3c64d1742fd6a479515d0d8de5d1fc4ef8c5db58affb9947c90ea
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.1.0":
version: 3.1.0
resolution: "@cspell/dict-git@npm:3.1.0"
checksum: 10c0/161a9bd35f44173993c84ec2bc394c5fab4fe7d69070daa170be4922e295d60a3e34cecb04869a8b685b761c7ace83241ff4d60db93d2850368d769733a58de9
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.27":
version: 6.0.27
resolution: "@cspell/dict-golang@npm:6.0.27"
checksum: 10c0/875ae15d9c2e4e3fa5523a89e48fc9f8755ba34359c872c2024b9976422726ee2061fa0bafd61e81458e2b33b272683f994a6b26aa3e4943bf215e2a6281c7d6
languageName: node
linkType: hard
"@cspell/dict-google@npm:^1.0.9":
version: 1.0.9
resolution: "@cspell/dict-google@npm:1.0.9"
checksum: 10c0/f7e10353f97910a884f1d5ea4e60d4dd5a475ab27b669e97ade88669b1726eb4ed7c4f2ae5e3a227da77a15433ca3b6faba8d8700ff431b31c812d3c5329c8e4
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-haskell@npm:4.0.6"
checksum: 10c0/cb8a179e26190ca333789dcbd1dae3c03ec28a8d4dd99756e770c9cf837e66a78f291e6db0d8ea7763cdbb968b0369998c593978a3bb52a9b38aaa4ce8746b3a
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.5"
checksum: 10c0/8278b8cca06e6d3654e81b1809227ff1d64e053f79308966ea601194ce51fa3a385dde6844509b26223de70d034e60a85c604a729f021c0de63f8a5e6f29b0ce
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.16":
version: 4.0.16
resolution: "@cspell/dict-html@npm:4.0.16"
checksum: 10c0/e17fb289a839b9b17debdc1398baaeb90bab1c15d1f86846d22cc60d62c9f96726c96c88a1290514e127359235307b5a0e8672a8c4c7f820d1672d255d69364e
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.12":
version: 5.0.12
resolution: "@cspell/dict-java@npm:5.0.12"
checksum: 10c0/aba65f3762350c7e9381f5dc174d3cd1292379eef6b426e1561aeca3476c63268a10b99cfcd7b8cd15bbaef8dfa7abb914a3f34f211c504064a22409a1441923
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-julia@npm:1.1.1"
checksum: 10c0/6dbc4c17bbee1a95491bf77b9438924852e9393699ac24e02a0b6846fdaf00a6ed5baafa94aa91a6f50016c3ab43c399ac814afa6504518da7e2f26a97ff3d0e
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.13":
version: 1.0.13
resolution: "@cspell/dict-k8s@npm:1.0.13"
checksum: 10c0/cc5c4a24ead0bc51cd1cf705c847f0290b8dc33f7230b4438a33f3a1d6e75d825dedaa9c544c2ac9382160f31429000e0c7887b6aad7f6eff843db44ddd2f71d
languageName: node
linkType: hard
"@cspell/dict-kotlin@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-kotlin@npm:1.1.1"
checksum: 10c0/45d0efc3701007b87e562d434eae8b05a16f730b28dd6d3ec237014d1b87dfa49075b57fad1acdb7b7939c64777f5238b991379debd9a45d91a3193a1e3481fc
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^5.1.0":
version: 5.1.0
resolution: "@cspell/dict-latex@npm:5.1.0"
checksum: 10c0/e806722c0ff1581a069245cb297b954f8e24fb6e1942f2547b0fee7783fc9b59d08fe2d2c7ddf3f7f9eef60d783ac9a4290f37956b9723b13e21c9422d7962b0
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.5"
checksum: 10c0/dd28957e60f4f68baec72fb69196394b9993fcadadcf018c58de75bf89434e4cd49e694cd33dccfcd18d4f65e489f37d284044ef75615613369e0a72dd2ec974
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-lua@npm:4.0.8"
checksum: 10c0/24dd577a75bcc5fcd194a337fdcb7a443f239b1b22f7392787ed8e9fd82f03f14b524a5f49a394c2d372ba493ab6cb3aebe7219da69e4565404b11cc29a909a3
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-makefile@npm:1.0.5"
checksum: 10c0/ee6ae5472493cb5fde7326c4ecb9e036b8a3cd348c3c06c2cbe5ce420a13776bd8f6fb0709f2f5bb62f745ea4d1fa63d59e533fbce13bde07743867f77818e86
languageName: node
linkType: hard
"@cspell/dict-markdown@npm:^2.0.18":
version: 2.0.18
resolution: "@cspell/dict-markdown@npm:2.0.18"
peerDependencies:
"@cspell/dict-css": ^4.1.2
"@cspell/dict-html": ^4.0.16
"@cspell/dict-html-symbol-entities": ^4.0.5
"@cspell/dict-typescript": ^3.2.3
checksum: 10c0/e9d7a09f439269d79c6077031219dc5d08573b54ff6c44f775ed76a2168a97a6e57bd50186fd1429fa5aaaf7dcf3594274114f8221bfe462cf9b17d682375e3f
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.1.0":
version: 1.1.0
resolution: "@cspell/dict-monkeyc@npm:1.1.0"
checksum: 10c0/57581b10759d486231d9b4d7f83e9f3fec94f31e265572c1751ecdb65bb233d14c18bfcee4fad453f2f3c009659efe95faae7d10f02d2edd554d7e33b443a39a
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-node@npm:5.0.9"
checksum: 10c0/129fa7cd204e26769829912a8a64225af45b5cf0438f597329966e1c3db5ffca04b4c426d9cee594f271d14500e11319bc7ed371207cb18d73966000303e3072
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.2.47":
version: 5.2.47
resolution: "@cspell/dict-npm@npm:5.2.47"
checksum: 10c0/4198526f88c1b229c8619c47de1dd79fde00efa87eb9c6d5fa0903d65341fa1c551c066c576b3f2d0695de2b84bcd6fdd69109821f96c023675eb8d8e3a467c8
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-php@npm:4.1.1"
checksum: 10c0/e11e2a3799b2c9ea590ce8b2e69838965f3d8f83020961720afde9c9c57b6ccdb013d54346900766ccf422c548c916dd2aaa890563d36cf12498ad3ddfe67d7a
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.15":
version: 5.0.15
resolution: "@cspell/dict-powershell@npm:5.0.15"
checksum: 10c0/be9219dcaaa85ce3c8c51330cab3464b3dc3ea333ef96e98cca16375f80a807ee590f41fc0630e97460292f6a73d4ccb0d7c44b032a7c2fdaa168fe951631797
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.16":
version: 2.0.16
resolution: "@cspell/dict-public-licenses@npm:2.0.16"
checksum: 10c0/473a29eb6fa8cf0d64fffcac0a686c492777dca9a0d6be4c890bcb0e98cb2f01a4afbbfcb88e903a5895593567ec6f2646097f07b0453b689fd70272088aa2a0
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.4.0":
version: 4.5.0
resolution: "@cspell/dict-python@npm:4.5.0"
dependencies:
"@cspell/dict-data-science": "npm:^2.0.16"
checksum: 10c0/960b701454a9a8802f46a448366654c14b3bcd9900001d0cda77d5919b00e025ceb886f84606f1696276f448308175c9d27c55a7074daaf88ac15635b96a34c0
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.1.1":
version: 2.1.1
resolution: "@cspell/dict-r@npm:2.1.1"
checksum: 10c0/ff36a7f8669dde33e09d824de487bbab584c0105c61c97f38375835664a42566874051891d8ede7ac134bab4bd84c12bd333800d9c548386086ac496a87fd576
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.1.2":
version: 5.1.2
resolution: "@cspell/dict-ruby@npm:5.1.2"
checksum: 10c0/f0b0c72028c7f416a6a83bdb0b31336406651436abe186f65bdfed21a58512b382bd4579f1011c47326e6ccdcd1a542d738c807702a72d789055c39911e63e67
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.1.2":
version: 4.1.2
resolution: "@cspell/dict-rust@npm:4.1.2"
checksum: 10c0/ccee1ef1652f8855f2fee1c5b7c173eda9660f0c7f1eadb550ab2e4e8e2ee2e31eee903e294a32052996fed4045907b0a53383f6fe74d28a04de94a4ac69a29d
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-scala@npm:5.0.9"
checksum: 10c0/f6b214f4cebcb68a270f4e5cb4163fdd59b58afb28894ac6f523025f411792454c6645c0c616d00af10ea541d5fbd25d34ad7986ddef1bb2181003e39140abbe
languageName: node
linkType: hard
"@cspell/dict-shell@npm:1.2.0, @cspell/dict-shell@npm:^1.2.0":
version: 1.2.0
resolution: "@cspell/dict-shell@npm:1.2.0"
checksum: 10c0/dd62330908f1d70744178365b36b82e031bb967bd6002fe34ba86863a26fddfdd075e364b397b2404123cd435be8261fc5809068d89027bbf7eb246daf1b491f
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^5.4.1":
version: 5.4.2
resolution: "@cspell/dict-software-terms@npm:5.4.2"
checksum: 10c0/0c1a2b8582dba1161f577cf5a9da12e6ed63d4897eaa82a274ef043e79e84ce4f2c53d6b2212ae7581870b5d3cddc19729811e949fba8b45d7254ec51c330148
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.2.1":
version: 2.2.1
resolution: "@cspell/dict-sql@npm:2.2.1"
checksum: 10c0/0e4e763a81669226cd54888546b0cffb12b66be0f945e97c1ea11638a3e4a074408bafeac10a7cf455781a0e5d55b41f5b0ff6fb0d58ae0b043dc1f37e792d51
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.7":
version: 1.0.7
resolution: "@cspell/dict-svelte@npm:1.0.7"
checksum: 10c0/08aaf8818c6626bb330359d9682893daade5884105421db6916636a54423f043b706d49a3ad0b07fe05e7751753f9fa8dda1ac6c11662d6f16741c87f30d0c2a
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.6":
version: 2.0.6
resolution: "@cspell/dict-swift@npm:2.0.6"
checksum: 10c0/ef8e5a6a63dd29055fd614a4d29e50b81fb88db166bb239a15279583def70786f6f3eb63e0071f771efe35b94739d22e5d48ccb4542dd0f217b71229f93a6377
languageName: node
linkType: hard
"@cspell/dict-terraform@npm:^1.1.4":
version: 1.1.4
resolution: "@cspell/dict-terraform@npm:1.1.4"
checksum: 10c0/30493d25eb3e1ab3c643d16b74dcb6a82d7565525bb0500bf4d4792b4f3e5ecc9eadf30399543cea2edab92fa92455006340fd509719a84296342e6f19075c41
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.2.3":
version: 3.2.3
resolution: "@cspell/dict-typescript@npm:3.2.3"
checksum: 10c0/b4bb34efa2f3ce120cf5a7d4aab4a49ffcb2aaa59c5d81aa5e2550e06d61738399e015c9e1447c1beb9fadbf6b084523be696ae9d5f9d3b63ea6f6189d280316
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.5":
version: 3.0.5
resolution: "@cspell/dict-vue@npm:3.0.5"
checksum: 10c0/da4a1778095c8f56953d1f1934f41369e4e5c9b83e0862cd37782aae875820e8404f8dd3cd4cb2ea5be46370dd1698966f69b50121c75a50b8652414dc26f2cc
languageName: node
linkType: hard
"@cspell/dict-zig@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-zig@npm:1.0.0"
checksum: 10c0/bc302e117002c9d6ebfb5d3e085d9a6f2e65d63440deb9f137dce1d8a75650593f5b83d47488ab394cfbc173be032661dc36bc74c85b9826f60a7d2fc7955ffc
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/dynamic-import@npm:10.1.1"
dependencies:
"@cspell/url": "npm:10.1.1"
import-meta-resolve: "npm:^4.2.0"
checksum: 10c0/8d17b3a0120fc2326672e9a54fa898df1ede0a53bfe9ccabf97f4989d39724d9badc900bad7cee975b6444312f2c5e13b5e1debb21a72d157316b50af388d760
languageName: node
linkType: hard
"@cspell/filetypes@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/filetypes@npm:10.1.1"
checksum: 10c0/8d91a9fefb6c6d2b609fbc194216ef7c0be486e654e8c425819c303978621cff8b3ace515e5714fbe881786b02e3e1ad0c492519b1e1c0b790fe9e2ff471f780
languageName: node
linkType: hard
"@cspell/rpc@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/rpc@npm:10.1.1"
checksum: 10c0/3c4610b27c8eead5a306f5c1d456b18ebcf487123070ea0012be002c2b913b2e3adc6ae355795a3b0935e9520ae3d9eda126a573e4b5e9d09f36498cab2930ac
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/strong-weak-map@npm:10.1.1"
checksum: 10c0/815fca9af36a8727258690d56c3b5eda31be9441abe7f0fcc7033d7657f895de873e99381f32680f76781e32f596920d4a6339020045287e315913e41c514428
languageName: node
linkType: hard
"@cspell/url@npm:10.1.1":
version: 10.1.1
resolution: "@cspell/url@npm:10.1.1"
checksum: 10c0/c5be7270ab4fcd1a0342e0d2c18a0d2647de976f8348efce5791f8c83ce681d124cba3b102aa0379075e19659918766d073d0f5e5854199eecc62ebc4beff8bb
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^1.1.0":
version: 1.1.0
resolution: "@discoveryjs/json-ext@npm:1.1.0"
checksum: 10c0/e48a15f97874cae46181d08b6d4e03f6fd2de92a5323a5e3847ce66b273769e6a81935181fa69be771a2d2252c04faea7157d7dd5744b44ed5abd624fcda8c29
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@jest/pattern@npm:30.4.0":
version: 30.4.0
resolution: "@jest/pattern@npm:30.4.0"
dependencies:
"@types/node": "npm:*"
jest-regex-util: "npm:30.4.0"
checksum: 10c0/05bc0799f84f3750bbbff0f9a546979efd0dbcee86c1be98b9e2811a68885809ec7b5cca39b8dda1497cb7cf17b7be936019fba8dfbcd9c53b181e03e67f4f82
languageName: node
linkType: hard
"@jest/schemas@npm:30.4.1":
version: 30.4.1
resolution: "@jest/schemas@npm:30.4.1"
dependencies:
"@sinclair/typebox": "npm:^0.34.0"
checksum: 10c0/96f388ebfc1974457fcbde2ad36c40a0b549cba3f624fe8d9d6e5903a152dc75e4043f4ac9ac7668622f2ecb0f9a4dcb9a38edf3bc0d52b82045b2bb2b69b72a
languageName: node
linkType: hard
"@jest/types@npm:30.4.1":
version: 30.4.1
resolution: "@jest/types@npm:30.4.1"
dependencies:
"@jest/pattern": "npm:30.4.0"
"@jest/schemas": "npm:30.4.1"
"@types/istanbul-lib-coverage": "npm:^2.0.6"
"@types/istanbul-reports": "npm:^3.0.4"
"@types/node": "npm:*"
"@types/yargs": "npm:^17.0.33"
chalk: "npm:^4.1.2"
checksum: 10c0/4c79f6dbdb1c7eaab5da255fc696c7cae744759d4020e42da8aa63b37fe55ce594be73075fe1ee5407dd59d7e47975be9f674bfc81e91bae2c89c62d27ba55a1
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/9a7d65fb13bd9aec1fbab74cda08496839b7e2ceb31f5ab922b323e94d7c481ce0fc4fd7e12e2610915ed8af51178bdc61e168e92a8c8b8303b030b03489b13b
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.11
resolution: "@jridgewell/source-map@npm:0.3.11"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
checksum: 10c0/50a4fdafe0b8f655cb2877e59fe81320272eaa4ccdbe6b9b87f10614b2220399ae3e05c16137a59db1f189523b42c7f88bd097ee991dbd7bc0e01113c583e844
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25, @jridgewell/trace-mapping@npm:^0.3.31":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@parcel/watcher-android-arm64@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-android-arm64@npm:2.6.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-darwin-arm64@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-darwin-arm64@npm:2.6.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-darwin-x64@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-darwin-x64@npm:2.6.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher-freebsd-x64@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-freebsd-x64@npm:2.6.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher-linux-arm-glibc@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-linux-arm-glibc@npm:2.6.0"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-arm-musl@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-linux-arm-musl@npm:2.6.0"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-linux-arm64-glibc@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.6.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-arm64-musl@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-linux-arm64-musl@npm:2.6.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-linux-x64-glibc@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-linux-x64-glibc@npm:2.6.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-x64-musl@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-linux-x64-musl@npm:2.6.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-win32-arm64@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-win32-arm64@npm:2.6.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-win32-x64@npm:2.6.0":
version: 2.6.0
resolution: "@parcel/watcher-win32-x64@npm:2.6.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher@npm:^2.4.1":
version: 2.6.0
resolution: "@parcel/watcher@npm:2.6.0"
dependencies:
"@parcel/watcher-android-arm64": "npm:2.6.0"
"@parcel/watcher-darwin-arm64": "npm:2.6.0"
"@parcel/watcher-darwin-x64": "npm:2.6.0"
"@parcel/watcher-freebsd-x64": "npm:2.6.0"
"@parcel/watcher-linux-arm-glibc": "npm:2.6.0"
"@parcel/watcher-linux-arm-musl": "npm:2.6.0"
"@parcel/watcher-linux-arm64-glibc": "npm:2.6.0"
"@parcel/watcher-linux-arm64-musl": "npm:2.6.0"
"@parcel/watcher-linux-x64-glibc": "npm:2.6.0"
"@parcel/watcher-linux-x64-musl": "npm:2.6.0"
"@parcel/watcher-win32-arm64": "npm:2.6.0"
"@parcel/watcher-win32-x64": "npm:2.6.0"
detect-libc: "npm:^2.0.3"
is-glob: "npm:^4.0.3"
node-addon-api: "npm:^7.0.0"
node-gyp: "npm:latest"
picomatch: "npm:^4.0.4"
dependenciesMeta:
"@parcel/watcher-android-arm64":
optional: true
"@parcel/watcher-darwin-arm64":
optional: true
"@parcel/watcher-darwin-x64":
optional: true
"@parcel/watcher-freebsd-x64":
optional: true
"@parcel/watcher-linux-arm-glibc":
optional: true
"@parcel/watcher-linux-arm-musl":
optional: true
"@parcel/watcher-linux-arm64-glibc":
optional: true
"@parcel/watcher-linux-arm64-musl":
optional: true
"@parcel/watcher-linux-x64-glibc":
optional: true
"@parcel/watcher-linux-x64-musl":
optional: true
"@parcel/watcher-win32-arm64":
optional: true
"@parcel/watcher-win32-x64":
optional: true
checksum: 10c0/0d6799bdf7d59a1ab5e4a79859035f387a66078586d9543eef0b9bd01c9d61cebe3b64eb96f0bd1f8bf50f07ed7266a1628604b66dc63025a3cee19be2e60d65
languageName: node
linkType: hard
"@popperjs/core@npm:^2.11.8":
version: 2.11.8
resolution: "@popperjs/core@npm:2.11.8"
checksum: 10c0/4681e682abc006d25eb380d0cf3efc7557043f53b6aea7a5057d0d1e7df849a00e281cd8ea79c902a35a414d7919621fc2ba293ecec05f413598e0b23d5a1e63
languageName: node
linkType: hard
"@prettier/plugin-xml@npm:^3.4.2":
version: 3.4.2
resolution: "@prettier/plugin-xml@npm:3.4.2"
dependencies:
"@xml-tools/parser": "npm:^1.0.11"
peerDependencies:
prettier: ^3.0.0
checksum: 10c0/e5343e71b3c2850d879bb4390d9918dab1238eb79adefb1357a4e4c7207a19a1ac8192a967112325e1280f0d6bda397014fd83df6f8844e0afac5e2d747a814b
languageName: node
linkType: hard
"@sinclair/typebox@npm:^0.34.0":
version: 0.34.52
resolution: "@sinclair/typebox@npm:0.34.52"
checksum: 10c0/03e9be17ffb536ddd6dc35b6131c88eb113b2ce6cbec4fa60b1d5219de99e59b2649fc40ad70a85db561104395faa3406608971dc7b0abef529b80fb001dc821
languageName: node
linkType: hard
"@sindresorhus/merge-streams@npm:^4.0.0":
version: 4.0.0
resolution: "@sindresorhus/merge-streams@npm:4.0.0"
checksum: 10c0/482ee543629aa1933b332f811a1ae805a213681ecdd98c042b1c1b89387df63e7812248bb4df3910b02b3cc5589d3d73e4393f30e197c9dde18046ccd471fc6b
languageName: node
linkType: hard
"@taplo/core@npm:^0.2.0":
version: 0.2.0
resolution: "@taplo/core@npm:0.2.0"
checksum: 10c0/4bbc3b696c49e267da2dfcd13e7812e5c09febda583856b35569773542e93f9c28a50dab69c635e1d5e11a4de6962ab08e006985fa38d2df1b3ef19d471efa05
languageName: node
linkType: hard
"@taplo/lib@npm:^0.5.0":
version: 0.5.0
resolution: "@taplo/lib@npm:0.5.0"
dependencies:
"@taplo/core": "npm:^0.2.0"
checksum: 10c0/0d1ea190586cac09a1c28fc43f807ba843a3313329744aacf49200da909beacbc43e5ebb89677d608b821458ad9378bc3d398c2aa7eff7e567ad59f85cc5ed82
languageName: node
linkType: hard
"@types/debug@npm:^4.0.0":
version: 4.1.13
resolution: "@types/debug@npm:4.1.13"
dependencies:
"@types/ms": "npm:*"
checksum: 10c0/e5e124021bbdb23a82727eee0a726ae0fc8a3ae1f57253cbcc47497f259afb357de7f6941375e773e1abbfa1604c1555b901a409d762ec2bb4c1612131d4afb7
languageName: node
linkType: hard
"@types/estree@npm:^1.0.8":
version: 1.0.9
resolution: "@types/estree@npm:1.0.9"
checksum: 10c0/3ad3286ca2988cd550dafb8f2ad599c8474868e954fa601a36655bdfefd8039f7c714b8c1c7f2ae219ffbd58bd4660e66fa7479a0120fc02d4777057d4865387
languageName: node
linkType: hard
"@types/html-minifier-terser@npm:^6.0.0":
version: 6.1.0
resolution: "@types/html-minifier-terser@npm:6.1.0"
checksum: 10c0/a62fb8588e2f3818d82a2d7b953ad60a4a52fd767ae04671de1c16f5788bd72f1ed3a6109ed63fd190c06a37d919e3c39d8adbc1793a005def76c15a3f5f5dab
languageName: node
linkType: hard
"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.6":
version: 2.0.6
resolution: "@types/istanbul-lib-coverage@npm:2.0.6"
checksum: 10c0/3948088654f3eeb45363f1db158354fb013b362dba2a5c2c18c559484d5eb9f6fd85b23d66c0a7c2fcfab7308d0a585b14dadaca6cc8bf89ebfdc7f8f5102fb7
languageName: node
linkType: hard
"@types/istanbul-lib-report@npm:*":
version: 3.0.3
resolution: "@types/istanbul-lib-report@npm:3.0.3"
dependencies:
"@types/istanbul-lib-coverage": "npm:*"
checksum: 10c0/247e477bbc1a77248f3c6de5dadaae85ff86ac2d76c5fc6ab1776f54512a745ff2a5f791d22b942e3990ddbd40f3ef5289317c4fca5741bedfaa4f01df89051c
languageName: node
linkType: hard
"@types/istanbul-reports@npm:^3.0.4":
version: 3.0.4
resolution: "@types/istanbul-reports@npm:3.0.4"
dependencies:
"@types/istanbul-lib-report": "npm:*"
checksum: 10c0/1647fd402aced5b6edac87274af14ebd6b3a85447ef9ad11853a70fd92a98d35f81a5d3ea9fcb5dbb5834e800c6e35b64475e33fcae6bfa9acc70d61497c54ee
languageName: node
linkType: hard
"@types/json-schema@npm:^7.0.15, @types/json-schema@npm:^7.0.9":
version: 7.0.15
resolution: "@types/json-schema@npm:7.0.15"
checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db
languageName: node
linkType: hard
"@types/katex@npm:^0.16.0":
version: 0.16.8
resolution: "@types/katex@npm:0.16.8"
checksum: 10c0/0661609353f4f5e62bd2dc78da99e842761c6474b19f2268b195bbe9dbf20e6f766a31155d79eec2e7c3eff4e7eba4b30f4f519e9c6a11c75bb45e257a2ddb69
languageName: node
linkType: hard
"@types/ms@npm:*":
version: 2.1.0
resolution: "@types/ms@npm:2.1.0"
checksum: 10c0/5ce692ffe1549e1b827d99ef8ff71187457e0eb44adbae38fdf7b9a74bae8d20642ee963c14516db1d35fa2652e65f47680fdf679dcbde52bbfadd021f497225
languageName: node
linkType: hard
"@types/node@npm:*":
version: 26.2.0
resolution: "@types/node@npm:26.2.0"
dependencies:
undici-types: "npm:~8.3.0"
checksum: 10c0/f8566d88162241eb55a46f7e4ea097188eab0aaafefea7a58e63adab8c4144eb98c08b7911452c846104c339a0f82282f5e1ed4b26b578d60709614fe2843f4d
languageName: node
linkType: hard
"@types/react-dom@npm:^19.2.5":
version: 19.2.5
resolution: "@types/react-dom@npm:19.2.5"
peerDependencies:
"@types/react": ^19.2.0
checksum: 10c0/7a59467b043debf392d109daa1ba672e791f20ce6f24ae81fb54715f890f8119d24967e61e3644b6307428603b695b7d59e69eaf531bd1963a74a6cb462f5f49
languageName: node
linkType: hard
"@types/react@npm:^19.0.0":
version: 19.2.18
resolution: "@types/react@npm:19.2.18"
dependencies:
csstype: "npm:^3.2.2"
checksum: 10c0/d04216172b4b4362b310017c210dfbe019fb4f4e7dffd0313e70b3acb3051d5c3e76e7e84e3cf4c6a3c824993ffadfe3949e589a6398a09d4200e7670e2962de
languageName: node
linkType: hard
"@types/unist@npm:^2.0.0":
version: 2.0.11
resolution: "@types/unist@npm:2.0.11"
checksum: 10c0/24dcdf25a168f453bb70298145eb043cfdbb82472db0bc0b56d6d51cd2e484b9ed8271d4ac93000a80da568f2402e9339723db262d0869e2bf13bc58e081768d
languageName: node