forked from Tatsh/kate-wakatime
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathyarn.lock
More file actions
2093 lines (1864 loc) · 76.8 KB
/
yarn.lock
File metadata and controls
2093 lines (1864 loc) · 76.8 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: 8
cacheKey: 10c0
"@cspell/cspell-bundled-dicts@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/cspell-bundled-dicts@npm:9.1.2"
dependencies:
"@cspell/dict-ada": "npm:^4.1.0"
"@cspell/dict-al": "npm:^1.1.0"
"@cspell/dict-aws": "npm:^4.0.10"
"@cspell/dict-bash": "npm:^4.2.0"
"@cspell/dict-companies": "npm:^3.2.1"
"@cspell/dict-cpp": "npm:^6.0.8"
"@cspell/dict-cryptocurrencies": "npm:^5.0.4"
"@cspell/dict-csharp": "npm:^4.0.6"
"@cspell/dict-css": "npm:^4.0.17"
"@cspell/dict-dart": "npm:^2.3.0"
"@cspell/dict-data-science": "npm:^2.0.8"
"@cspell/dict-django": "npm:^4.1.4"
"@cspell/dict-docker": "npm:^1.1.14"
"@cspell/dict-dotnet": "npm:^5.0.9"
"@cspell/dict-elixir": "npm:^4.0.7"
"@cspell/dict-en-common-misspellings": "npm:^2.1.1"
"@cspell/dict-en-gb-mit": "npm:^3.1.1"
"@cspell/dict-en_us": "npm:^4.4.11"
"@cspell/dict-filetypes": "npm:^3.0.12"
"@cspell/dict-flutter": "npm:^1.1.0"
"@cspell/dict-fonts": "npm:^4.0.4"
"@cspell/dict-fsharp": "npm:^1.1.0"
"@cspell/dict-fullstack": "npm:^3.2.6"
"@cspell/dict-gaming-terms": "npm:^1.1.1"
"@cspell/dict-git": "npm:^3.0.6"
"@cspell/dict-golang": "npm:^6.0.22"
"@cspell/dict-google": "npm:^1.0.8"
"@cspell/dict-haskell": "npm:^4.0.5"
"@cspell/dict-html": "npm:^4.0.11"
"@cspell/dict-html-symbol-entities": "npm:^4.0.3"
"@cspell/dict-java": "npm:^5.0.11"
"@cspell/dict-julia": "npm:^1.1.0"
"@cspell/dict-k8s": "npm:^1.0.11"
"@cspell/dict-kotlin": "npm:^1.1.0"
"@cspell/dict-latex": "npm:^4.0.3"
"@cspell/dict-lorem-ipsum": "npm:^4.0.4"
"@cspell/dict-lua": "npm:^4.0.7"
"@cspell/dict-makefile": "npm:^1.0.4"
"@cspell/dict-markdown": "npm:^2.0.11"
"@cspell/dict-monkeyc": "npm:^1.0.10"
"@cspell/dict-node": "npm:^5.0.7"
"@cspell/dict-npm": "npm:^5.2.7"
"@cspell/dict-php": "npm:^4.0.14"
"@cspell/dict-powershell": "npm:^5.0.14"
"@cspell/dict-public-licenses": "npm:^2.0.13"
"@cspell/dict-python": "npm:^4.2.18"
"@cspell/dict-r": "npm:^2.1.0"
"@cspell/dict-ruby": "npm:^5.0.8"
"@cspell/dict-rust": "npm:^4.0.11"
"@cspell/dict-scala": "npm:^5.0.7"
"@cspell/dict-shell": "npm:^1.1.0"
"@cspell/dict-software-terms": "npm:^5.1.1"
"@cspell/dict-sql": "npm:^2.2.0"
"@cspell/dict-svelte": "npm:^1.0.6"
"@cspell/dict-swift": "npm:^2.0.5"
"@cspell/dict-terraform": "npm:^1.1.1"
"@cspell/dict-typescript": "npm:^3.2.2"
"@cspell/dict-vue": "npm:^3.0.4"
checksum: 10c0/46672800c19c281ae6286960e6f644a30e5bf32e71fdc92a2255860f2157953d57f0349f5376103d1336ba0df479a826df6a7881b14edfc8596e6f77053d2fb6
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/cspell-json-reporter@npm:9.1.2"
dependencies:
"@cspell/cspell-types": "npm:9.1.2"
checksum: 10c0/c49437206078b2f5ad6c6dd510679c041829499df7b6c81b0161fd8d2440f51aa93157685c2ba2b66e3de14a5722f3629f7bc6cb7f756adbe9455e73b420604d
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/cspell-pipe@npm:9.1.2"
checksum: 10c0/fb654b7e9b2864d827fb1eeb9b71ecf7a73b426ed0350087ab036220132742476af214210e7a2669c3ec5f2565d30dd9e76e905c0405d6b0f0a3f55a176a9bca
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/cspell-resolver@npm:9.1.2"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 10c0/4206694e2de298f18da56c4eb28b52f355d176dfe4700436b5bd2d842ff4c8e661a9fc579a8b13fcb9ff7fa0f7dcf7ef7d1aa852b385a1d512f2fefd6736363d
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/cspell-service-bus@npm:9.1.2"
checksum: 10c0/56ae4048c844b6ae8cc5d4f4188dd84c2c81b4d47c6e2bdf215dedc8fe8fa4704f19344b5df5e7cf80c9c1c7357c36401000f27f71b6a224ae1f2419e2958199
languageName: node
linkType: hard
"@cspell/cspell-types@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/cspell-types@npm:9.1.2"
checksum: 10c0/55e37c833b7c71ac79495e2d1f35808f89c8554d49e4947617ad5e4e46d336856852830ba932e6a5a7b86b0399790bf4dac8607026262dc77b2ec04ce42be2ba
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-ada@npm:4.1.0"
checksum: 10c0/1600b1fc4f033f41edf07d18ee71232d9b6ae654dc4256ce759ae663186e1e2f6fbbc605508d11ee756d909e53a0e2dfcf1171371333de06094f709ee9172af7
languageName: node
linkType: hard
"@cspell/dict-al@npm:^1.1.0":
version: 1.1.0
resolution: "@cspell/dict-al@npm:1.1.0"
checksum: 10c0/448be78bf11a3775e766122efcf322f6cebe689f2a2e9c7bb83e7745c666b80ef6411806552a66af4112a95ae007d3b342874e69d3d280173839cc55df295ea5
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.10":
version: 4.0.10
resolution: "@cspell/dict-aws@npm:4.0.10"
checksum: 10c0/938d8bbd9960f152aea5cb2712fdd644d734acfda9f72aaf490ccdce6dd016dc5a4d2a38e37d8a13234e69346e6b1a74178fb4ae3d9525c4e64656c1d90fe057
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.2.0":
version: 4.2.0
resolution: "@cspell/dict-bash@npm:4.2.0"
dependencies:
"@cspell/dict-shell": "npm:1.1.0"
checksum: 10c0/9fa084d80f64fa706e87e1ad1db459433a5d0ba4a7c850de9f165b7a50f24410e447589b3374b53ca4da6397ee13c8c0205ff4bc5083d9c25a32e69b3bd2fe8b
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.2.1":
version: 3.2.1
resolution: "@cspell/dict-companies@npm:3.2.1"
checksum: 10c0/8e98d9321277a1e05b88a95f3ac2c421568c2806a5319177b8a998316dedd888d063793135f57b73f1b88d636bbbe45e43249574804c1a42913f8fbd252263b2
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^6.0.8":
version: 6.0.8
resolution: "@cspell/dict-cpp@npm:6.0.8"
checksum: 10c0/8388be63c7db452c556af908951b91bb141e3320d640a967d90c847a5ba6e09b41356772d842b586074b4ec1beb8049b9abd56a8fe9037650b2ddd9b28f6724c
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.4":
version: 5.0.4
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.4"
checksum: 10c0/f9bf46de9efc543f7270f46ec424151aa297c0e3d969f7f350eaa9f1e6ad0a7eecb668ceeb53c23c5dd54fc49277dbbaa96d476b71515f72b246cbd0c2569b4d
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-csharp@npm:4.0.6"
checksum: 10c0/d10ceb009e6a2b838d5ba5b035124bc1e02cf0e3eff10631b814ae8e4c1de7f7b35d60f3509f4b6b81a59e86bf1fdd0dee925191811825f7e1454d080cf3ebba
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.17":
version: 4.0.17
resolution: "@cspell/dict-css@npm:4.0.17"
checksum: 10c0/87ceb92f3a65b0b4089e2150abb86431d09ad27f4a00af233c01c799d9786495ae66ea8b1a7f089a923ad5fb6efcdbf92227a6728b0b826a76fa03a24c379a7c
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.3.0":
version: 2.3.0
resolution: "@cspell/dict-dart@npm:2.3.0"
checksum: 10c0/493ac7de691fd93596014168f3def8253dd4e97a139ba60715c4368ef5183df5a75c2bb04ba63f2d791686bf5a6d91005237e5ed96636959e77e5a7e79e0999e
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.8":
version: 2.0.8
resolution: "@cspell/dict-data-science@npm:2.0.8"
checksum: 10c0/fd93eea55bab6d418f6e36a0dd2fd28ea7ec15598139086dcf6d664e0fae5c3235f5ec71c2d2449315e58bd23b153aa0bbd84d894ecfbf2e619d8f93c2e3614f
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.4":
version: 4.1.4
resolution: "@cspell/dict-django@npm:4.1.4"
checksum: 10c0/bf55dc7aaf575d4cb50f48a9fd6b5619ae23a8f6c741197a8a4942fbc4188280d5fdd614b07a659d6828ca7004f2707101ed268ac48cc41e606cf9694bad9523
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.14":
version: 1.1.14
resolution: "@cspell/dict-docker@npm:1.1.14"
checksum: 10c0/cf929524dff283db90a1c8e4a6363ccbbed9d49c41d33038ca98cacca7a159e960798224b23433e008d842cc091069b23aa4de915ef1278fc023efc2a38079bd
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-dotnet@npm:5.0.9"
checksum: 10c0/ac30f0a8d4e3f9c1468060e1d6cbe09ff4c60046c01ef665539996fdb62ca794bc1fbee75347c1d50e11e82782b9eeeadb175ab4e8746501ed561400d611d3a8
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.7":
version: 4.0.7
resolution: "@cspell/dict-elixir@npm:4.0.7"
checksum: 10c0/c65521e34aa4d7eb6ed4cb1bb86033dfd98d7d40715846d8d987801ce392ac96f1f4280a8e8be166fa6918660441c140e80b37799734393a3e4572a36b1975f9
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.1.1":
version: 2.1.1
resolution: "@cspell/dict-en-common-misspellings@npm:2.1.1"
checksum: 10c0/0648c70ce45d4f15f8858605f0a33973b7cfd7031e4c1db3b7855cfcfebfd7857e01701ad0f9880974533597488786e6d9e9962bf4553f3741a41b6b96081268
languageName: node
linkType: hard
"@cspell/dict-en-gb-mit@npm:^3.1.1":
version: 3.1.2
resolution: "@cspell/dict-en-gb-mit@npm:3.1.2"
checksum: 10c0/91fbae9f2a40da317ad3b29a2f21c56467e5aaae5509fe2949a11ae2a54e2392942d461dfaca5a1e1009c30d8e0f1ec7338b6b4a9936b52de9b90fee27c7ff64
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.4.11":
version: 4.4.12
resolution: "@cspell/dict-en_us@npm:4.4.12"
checksum: 10c0/07be86111bcf3da24490191320505023f5a2853352f1ac8ba141577f648df462cbfaf100aecb3452a81c7740f010735477106e0e436b23e6b6d12d7e72f3c7c6
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.12":
version: 3.0.12
resolution: "@cspell/dict-filetypes@npm:3.0.12"
checksum: 10c0/9674c3e8a7ec52654ba01c691d9817479690efbe796c5b6cc30ba51ce68d6a6f7da68c8be2a385964007328db8d1c65d30d7a876c12382f726faa35fe29c6a74
languageName: node
linkType: hard
"@cspell/dict-flutter@npm:^1.1.0":
version: 1.1.0
resolution: "@cspell/dict-flutter@npm:1.1.0"
checksum: 10c0/b72e82a7bdd76b7383f227eaf8714b940406bdcd39d63fcd576ae9cbd80b7c579fe7a11a07c92200550a6e9583e18a4b45501b80684f02f8da5731d8af154974
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.4":
version: 4.0.4
resolution: "@cspell/dict-fonts@npm:4.0.4"
checksum: 10c0/589c680baf00cf41153ff9e9a3e6d948ca4d451f7626edbfce6ee5c3f4dd60ea293c0d8f9f442f000730c2f064b8013425735de25267c406e11a10e94809696a
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.1.0":
version: 1.1.0
resolution: "@cspell/dict-fsharp@npm:1.1.0"
checksum: 10c0/78d994fe596db26f7ca7465e39f0924661c83fbadcd107d2f1f4148de76ef4054dd54d41c8dc128804130573f16285569f88f7ca1f1d17f156e97089e937d533
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.2.6":
version: 3.2.6
resolution: "@cspell/dict-fullstack@npm:3.2.6"
checksum: 10c0/bf3482a116586a4d45881ec5e9264f396e1fb2426b172901d799baa6533f6aa19055f8b2f651546272b7bdd73f0223d2a723c3ce0e3df1cb398fe37a9161df5c
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-gaming-terms@npm:1.1.1"
checksum: 10c0/93ee860370074503732750dbcaf6fb6c030a1518e694b3c77597c9956b0f594a66a583fed22392fbfa1f1ca244e16fbd31cd5734c509ce3bfbe583177b5ba5b4
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.0.6":
version: 3.0.6
resolution: "@cspell/dict-git@npm:3.0.6"
checksum: 10c0/bf9c5a2e103f45a9063795e6a0a5201fddd99104d7612c071d7f20f82500a256f4ed0911bd1cbf4064ab2320617058471c601d7cbe7cab4a86e2c9d8c5ce365a
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.22":
version: 6.0.22
resolution: "@cspell/dict-golang@npm:6.0.22"
checksum: 10c0/b9d44b9a913f27015863814a9a5ceb6a24234893fa134f2ab6de41fcc284ad054486e436ed1b6b6c6773e5b0d2ceccbbbb4d0f0dcb0f3df718612fb113ddbd38
languageName: node
linkType: hard
"@cspell/dict-google@npm:^1.0.8":
version: 1.0.8
resolution: "@cspell/dict-google@npm:1.0.8"
checksum: 10c0/89385531361d1b00da54c2cade3e29442b6ba7baa2f5a4922b628ee79fb97c860319480061dd01a5a99b527514cad0594699c15a57bdf6c4c17c783aa257a0ab
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-haskell@npm:4.0.5"
checksum: 10c0/a2d8cf98c208ecc5733c888037c9366d26f37ff8c7ed46756ad4d8651efe69a5d98447c0bf859cb3660b1c541ab1f8b4b0650591c327ff07a10c9d458b9be24a
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.3"
checksum: 10c0/d7fbffb484b4d826890c873792ac383892ed2013c6e7436fc1223a181ef3b11bf98d33f2faa50dba1461853eebf6006451ff853caf8fa1948dca4f228b9248ca
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.11":
version: 4.0.11
resolution: "@cspell/dict-html@npm:4.0.11"
checksum: 10c0/6bb7751cae019a2dd2df8660f2b220078cbf7cdbbb3e7bf647428295f7483c1efce31f04a3ea459da5c6b6d22f87c0b5fc77f5a14f3ed17aa382c25f1483f9ad
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.11":
version: 5.0.11
resolution: "@cspell/dict-java@npm:5.0.11"
checksum: 10c0/167ad55bec88ad9986d39fc483e20c0af64ffc5127bff42114ede20c8f90dc26074ee680266a8d09517a83c37bf50b2f0f5581ada870326ae2212c0c8caabb40
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.1.0":
version: 1.1.0
resolution: "@cspell/dict-julia@npm:1.1.0"
checksum: 10c0/851cc5d4e6f15f7b15fad6b601ae4a67158a9522e5dbdf675fddcd20255d0e89ff265a740a0c05a37c80d7aadfd0e9027de2b81b9d8d698ccdb5fdf26dcf1f89
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.11":
version: 1.0.11
resolution: "@cspell/dict-k8s@npm:1.0.11"
checksum: 10c0/5e63f0cc2ac9b474072b952bd7d5d1db84d7eb377123eb8789c76ecf2a1abb703f6c5fe597d87fea7c9c4349c4f52c04d40bff07ffc2a68e802083014f772046
languageName: node
linkType: hard
"@cspell/dict-kotlin@npm:^1.1.0":
version: 1.1.0
resolution: "@cspell/dict-kotlin@npm:1.1.0"
checksum: 10c0/39e5c979d63958a06e2bfd89aa0a7f70217aac3a847603a5516395290d7c877ccb600cc5270e83edb25251106980592000dee5fb6700812c27ee6c61d281952f
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-latex@npm:4.0.3"
checksum: 10c0/bba028fb61a38e48615f865f7cbeab4bf9d84f3305cb9828321b4d2ed2b592555a30aef0db9188273acabc0c88d7e8c04e72a30b2364c3c7c6fbf3b0fbc4a6ec
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.4":
version: 4.0.4
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.4"
checksum: 10c0/a8f734acdab01f4171a38b079a2509fb27ceafef347ff02464e32211bf6877655f79ca411a681e415bb1b0a3feb524f00f3397734e945ada368179fe9080834a
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.7":
version: 4.0.7
resolution: "@cspell/dict-lua@npm:4.0.7"
checksum: 10c0/4f6ea6d098f44a7bb5c87326ddb7f6e6e2e728f04445baef0c7d217c7399cea566a2b16e58724c8ed7ccf7dabdb1218c318330013ffa43f71782c288287855ca
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.4":
version: 1.0.4
resolution: "@cspell/dict-makefile@npm:1.0.4"
checksum: 10c0/ac59836e7dcf95de7e2c04e5cf17a357c7aa06e72c638352beb3e8c7d94ab7736c3d1387f4829d24db3d4b1868fceddfb728ec3812c5f5062faf609668d3a970
languageName: node
linkType: hard
"@cspell/dict-markdown@npm:^2.0.11":
version: 2.0.11
resolution: "@cspell/dict-markdown@npm:2.0.11"
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.2
checksum: 10c0/2bcd668636eb76e3302b118d1cd7939331752cfd10dc9939b2a290772c73ff440dc7ec85b3e86467bad8818a5d4ce1a99df37383aa3a0d89f4f9aba67bf4f911
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.0.10":
version: 1.0.10
resolution: "@cspell/dict-monkeyc@npm:1.0.10"
checksum: 10c0/a48278f3d751b9d8f90930c55b9736c72aac02589c353849e68782de2e8019a16be88d5014693341a52db627ef9989ac4ea71b973a67c0cf2f8bacce8ec75a14
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.7":
version: 5.0.7
resolution: "@cspell/dict-node@npm:5.0.7"
checksum: 10c0/46520be977286bcc497ac883e47c407335dfd0522fff7c4a0e2d84e9b592ee5cdac432a19610f88f75550d1e2bea227c5fb5fb30eb13f47cc8b02ace24a7cad2
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.2.7":
version: 5.2.8
resolution: "@cspell/dict-npm@npm:5.2.8"
checksum: 10c0/82750319260300e0fca1445e51bdb722ad0c80afdba4df098a37e8ad66f240513cb348279013e5808fdbcc5515d5b82272c895ccc214f2d28984d961839f5ae9
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.14":
version: 4.0.14
resolution: "@cspell/dict-php@npm:4.0.14"
checksum: 10c0/185754d3e56de9db37db265e2073cca2977ad15d7b228c6a2a272db5699d8019b1d7096a8b76483bd757b0c00bbc426abffad37dcec404cdfc9912d7380b0cf9
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.14":
version: 5.0.14
resolution: "@cspell/dict-powershell@npm:5.0.14"
checksum: 10c0/2409aeb029c0abe869ce9d684fc17e9d117bf3f2d55a227a6229924c69ba70e1bd3683dd6f3cc309e1abdd435d6610dd6ad1a794ea28116997eeacd07efbc107
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.13":
version: 2.0.13
resolution: "@cspell/dict-public-licenses@npm:2.0.13"
checksum: 10c0/c9fafd755e7543a14483abebe743b6e69eb3ce6d321e91c589ef2931d18de721c0c8f71e5fe750c7c3dd4146903aba56d54fac853c83d4d2779ce4989db3e650
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.2.18":
version: 4.2.18
resolution: "@cspell/dict-python@npm:4.2.18"
dependencies:
"@cspell/dict-data-science": "npm:^2.0.8"
checksum: 10c0/4d1023b720dbf6fc7eeeed4d3bda35ef4cf8c8a8ebbf339abdbe407f7c69b621bd5cf63c8327ee06b1d94f15753973528a5529f4720da2a6e30a5e379ca1904a
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.1.0":
version: 2.1.0
resolution: "@cspell/dict-r@npm:2.1.0"
checksum: 10c0/96a1057a5789b15e85e7a3eca9042b0f94645da953b7919840fcb97f6ab72d1ebaae792e962cabb7479e1adbb9d8e565a9340c7b415518c713d578f2779c802a
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.0.8":
version: 5.0.8
resolution: "@cspell/dict-ruby@npm:5.0.8"
checksum: 10c0/24807292b33f3468c1580ef9bc781a6c93bb3b745b9130fa1d23ae9fe685609e08f13b0bdd61d271ec7307cf86273909fcff3958cc190a08b4fc2433729cf950
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.11":
version: 4.0.11
resolution: "@cspell/dict-rust@npm:4.0.11"
checksum: 10c0/f5adf582f45b02c0695e1118b1f99952cc3a443625b279b0d657dce1c297b74f9782c000e45959b9ab096509de99c0549c1dd01b49a83a3fd6d7453444a4d776
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.7":
version: 5.0.7
resolution: "@cspell/dict-scala@npm:5.0.7"
checksum: 10c0/273eb0123b59d55624ce837b793c12a06f672ffd7653c40565d9647682b11851862929ae6f1171fe5b28dbb3ef4f5f7b892d4b3f939130f6947f75358684e59b
languageName: node
linkType: hard
"@cspell/dict-shell@npm:1.1.0, @cspell/dict-shell@npm:^1.1.0":
version: 1.1.0
resolution: "@cspell/dict-shell@npm:1.1.0"
checksum: 10c0/820343ea423769099fc27ed1c5aa1e23b2f6d9f2552375b0f6343d4d6b34b2d010c15167883d46d3e68d5612770d23704ce0baf5c8fef4b0864224d38605a7f8
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^5.1.1":
version: 5.1.2
resolution: "@cspell/dict-software-terms@npm:5.1.2"
checksum: 10c0/959af4d079303bb28b5584eb439f71844bb5aad208f03157f4fe18b6b1d27283a9dde6393a2c2cee0038b01fa3174e03294bb922cbaced8f960a00068f81a025
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.2.0":
version: 2.2.0
resolution: "@cspell/dict-sql@npm:2.2.0"
checksum: 10c0/bf509e15ef2973f829a1e52620b004a5c507837a25342645ea2776ff4c529f2c6422887316f78a1c217d490d65da41da385da98935f955c681e515a6b7a71703
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.6":
version: 1.0.6
resolution: "@cspell/dict-svelte@npm:1.0.6"
checksum: 10c0/81864325d7bc97d51abbfbd717e2b3dca9eeffb1042be9483407493664c5c53fa7176cb07f648a2a7633da39870de37a20067e13a3ddc008803c5e80c37c5f15
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.5":
version: 2.0.5
resolution: "@cspell/dict-swift@npm:2.0.5"
checksum: 10c0/3123cfde3661ae2b6255863ce4afc648e7e30f20ffb3289e51a624c4b9688cb4e489aff864987e7a1b6f893026f97f5082a8c688e05491f60cad6cc03558ef3c
languageName: node
linkType: hard
"@cspell/dict-terraform@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-terraform@npm:1.1.1"
checksum: 10c0/c6d54c4e9cae5f8e83fe07051d09224c7d8cdbe02e3d8c75613f1c01e187a0959065fbe9c67fcaf8715aac6633196b32839e5ae05e9a63d7b07448b3e7e33eb3
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.2.2":
version: 3.2.2
resolution: "@cspell/dict-typescript@npm:3.2.2"
checksum: 10c0/e8ea707af91ad47730046a0539bf634fa709297c41e99f430ace627684bb46276e7cf85400e219718a14e06399b60e92dacb78ce1a36839ab2cb068f99e93796
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.4":
version: 3.0.4
resolution: "@cspell/dict-vue@npm:3.0.4"
checksum: 10c0/8a39099c15a6d2ae640aa5a2947dc0c9baf782a8754afaccc0d1fb014fda20be121cf4c2cff6f7e9e61c62fab52a7b8b2a3a07dfe2996b6ea6e4d80165746416
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/dynamic-import@npm:9.1.2"
dependencies:
"@cspell/url": "npm:9.1.2"
import-meta-resolve: "npm:^4.1.0"
checksum: 10c0/4387139368b981ec5ee91bf23670b86aaf18c80d9c5742e40368ca47cea787e4e6ce5dcf350b1b984955a99496ed093e501403e97af8b06cf4dbe1c9c8542451
languageName: node
linkType: hard
"@cspell/filetypes@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/filetypes@npm:9.1.2"
checksum: 10c0/413ed978eff3cb222c7ebef0856ae3ca9c9e207c2e6ceff3b5684ead5c04ef72367798ed5e77f0eeae2e3f9ccd60e827b726342a8afda81f68001d3e62bc7824
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/strong-weak-map@npm:9.1.2"
checksum: 10c0/0cf9288e825e5aa50ebce3f0f47f236b00cd3f83c625a01d29b324bba50acd44f8a03aaf934d62050b56e3cc8007d8fd11b0d9334273154c5fa4476dcf665d0f
languageName: node
linkType: hard
"@cspell/url@npm:9.1.2":
version: 9.1.2
resolution: "@cspell/url@npm:9.1.2"
checksum: 10c0/967a4df28818974a5d94fc58f1619a9d3a829a777f664287c1e45279e1c2e2bacb56d869cdde0cf8b5ead1f5899dd0e617a27dd4b1b9a9d2ea26255efe4d2a22
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
"@prettier/plugin-xml@npm:^3.4.1":
version: 3.4.1
resolution: "@prettier/plugin-xml@npm:3.4.1"
dependencies:
"@xml-tools/parser": "npm:^1.0.11"
peerDependencies:
prettier: ^3.0.0
checksum: 10c0/39bdc3d6e475ed4f804ea4dad8ad66c1e36743935eefde87bf9a68c44434695e74e52c8c6d70239de12dae141153f8979cce0b1c5c8f820693ff1f62bbe66044
languageName: node
linkType: hard
"@sindresorhus/merge-streams@npm:^2.1.0":
version: 2.3.0
resolution: "@sindresorhus/merge-streams@npm:2.3.0"
checksum: 10c0/69ee906f3125fb2c6bb6ec5cdd84e8827d93b49b3892bce8b62267116cc7e197b5cccf20c160a1d32c26014ecd14470a72a5e3ee37a58f1d6dadc0db1ccf3894
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.12
resolution: "@types/debug@npm:4.1.12"
dependencies:
"@types/ms": "npm:*"
checksum: 10c0/5dcd465edbb5a7f226e9a5efd1f399c6172407ef5840686b73e3608ce135eeca54ae8037dcd9f16bdb2768ac74925b820a8b9ecc588a58ca09eca6acabe33e2f
languageName: node
linkType: hard
"@types/fs-extra@npm:^11.0.4":
version: 11.0.4
resolution: "@types/fs-extra@npm:11.0.4"
dependencies:
"@types/jsonfile": "npm:*"
"@types/node": "npm:*"
checksum: 10c0/9e34f9b24ea464f3c0b18c3f8a82aefc36dc524cc720fc2b886e5465abc66486ff4e439ea3fb2c0acebf91f6d3f74e514f9983b1f02d4243706bdbb7511796ad
languageName: node
linkType: hard
"@types/jsonfile@npm:*":
version: 6.1.4
resolution: "@types/jsonfile@npm:6.1.4"
dependencies:
"@types/node": "npm:*"
checksum: 10c0/b12d068b021e4078f6ac4441353965769be87acf15326173e2aea9f3bf8ead41bd0ad29421df5bbeb0123ec3fc02eb0a734481d52903704a1454a1845896b9eb
languageName: node
linkType: hard
"@types/katex@npm:^0.16.0":
version: 0.16.7
resolution: "@types/katex@npm:0.16.7"
checksum: 10c0/68dcb9f68a90513ec78ca0196a142e15c2a2c270b1520d752bafd47a99207115085a64087b50140359017d7e9c870b3c68e7e4d36668c9e348a9ef0c48919b5a
languageName: node
linkType: hard
"@types/lodash-es@npm:^4.17.12":
version: 4.17.12
resolution: "@types/lodash-es@npm:4.17.12"
dependencies:
"@types/lodash": "npm:*"
checksum: 10c0/5d12d2cede07f07ab067541371ed1b838a33edb3c35cb81b73284e93c6fd0c4bbeaefee984e69294bffb53f62d7272c5d679fdba8e595ff71e11d00f2601dde0
languageName: node
linkType: hard
"@types/lodash@npm:*":
version: 4.17.19
resolution: "@types/lodash@npm:4.17.19"
checksum: 10c0/0d512e90a92c09b48ec0e46945876392d3ef60c0be7d023fdab22ecb0224a65ff4ed0b76c7acbf1c0152c27768aa4661ea7a1c3afb5b5ab13a50bda674a7c3f7
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: 24.0.4
resolution: "@types/node@npm:24.0.4"
dependencies:
undici-types: "npm:~7.8.0"
checksum: 10c0/590e8cb0ec59fb9cd566402120e690d87ecbdf57f1ee2b8493266121ed33aa4b25949a0c6156b84a6ffb9250baaf1f80e9af142da542ed603e6ee73fc4d1115f
languageName: node
linkType: hard
"@types/semver@npm:^7.5.8":
version: 7.7.0
resolution: "@types/semver@npm:7.7.0"
checksum: 10c0/6b5f65f647474338abbd6ee91a6bbab434662ddb8fe39464edcbcfc96484d388baad9eb506dff217b6fc1727a88894930eb1f308617161ac0f376fe06be4e1ee
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
linkType: hard
"@types/yarnpkg__lockfile@npm:^1.1.9":
version: 1.1.9
resolution: "@types/yarnpkg__lockfile@npm:1.1.9"
checksum: 10c0/18f365ec90372d9e3c838cb76ddbfb0cc181562151f7a91144604e683e740afb8fd89b0e88559147e3b051709046b0ed84ec8f6535b0494b17cabef6580ac3f1
languageName: node
linkType: hard
"@xml-tools/parser@npm:^1.0.11":
version: 1.0.11
resolution: "@xml-tools/parser@npm:1.0.11"
dependencies:
chevrotain: "npm:7.1.1"
checksum: 10c0/5abc75163d6b2ac8e9006a54576523513535953237463297137c5a3665ce1b9d220b77b6dbb68ab93df3fab40bbc98bbb10e90dd690fd7646fdb021323827971
languageName: node
linkType: hard
"@yarnpkg/lockfile@npm:^1.1.0":
version: 1.1.0
resolution: "@yarnpkg/lockfile@npm:1.1.0"
checksum: 10c0/0bfa50a3d756623d1f3409bc23f225a1d069424dbc77c6fd2f14fb377390cd57ec703dc70286e081c564be9051ead9ba85d81d66a3e68eeb6eb506d4e0c0fbda
languageName: node
linkType: hard
"argparse@npm:^2.0.1":
version: 2.0.1
resolution: "argparse@npm:2.0.1"
checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e
languageName: node
linkType: hard
"array-timsort@npm:^1.0.3":
version: 1.0.3
resolution: "array-timsort@npm:1.0.3"
checksum: 10c0/bd3a1707b621947265c89867e67c9102b9b9f4c50f5b3974220112290d8b60d26ce60595edec5deed3325207b759d70b758bed3cd310b5ddadb835657ffb6d12
languageName: node
linkType: hard
"braces@npm:^3.0.3":
version: 3.0.3
resolution: "braces@npm:3.0.3"
dependencies:
fill-range: "npm:^7.1.1"
checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04
languageName: node
linkType: hard
"callsites@npm:^3.0.0, callsites@npm:^3.1.0":
version: 3.1.0
resolution: "callsites@npm:3.1.0"
checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301
languageName: node
linkType: hard
"chalk-template@npm:^1.1.0":
version: 1.1.0
resolution: "chalk-template@npm:1.1.0"
dependencies:
chalk: "npm:^5.2.0"
checksum: 10c0/bb6eda6115a33d06828caf8c44f786c26e0d392c74c2bd6bb0f7526588b15664e3e7c0305858531cdd9b266fc54a31fe71fe3844afcd47a3e67445313f149437
languageName: node
linkType: hard
"chalk@npm:^5.2.0, chalk@npm:^5.3.0, chalk@npm:^5.4.1":
version: 5.4.1
resolution: "chalk@npm:5.4.1"
checksum: 10c0/b23e88132c702f4855ca6d25cb5538b1114343e41472d5263ee8a37cccfccd9c4216d111e1097c6a27830407a1dc81fecdf2a56f2c63033d4dbbd88c10b0dcef
languageName: node
linkType: hard
"character-entities-legacy@npm:^3.0.0":
version: 3.0.0
resolution: "character-entities-legacy@npm:3.0.0"
checksum: 10c0/ec4b430af873661aa754a896a2b55af089b4e938d3d010fad5219299a6b6d32ab175142699ee250640678cd64bdecd6db3c9af0b8759ab7b155d970d84c4c7d1
languageName: node
linkType: hard
"character-entities@npm:^2.0.0":
version: 2.0.2
resolution: "character-entities@npm:2.0.2"
checksum: 10c0/b0c645a45bcc90ff24f0e0140f4875a8436b8ef13b6bcd31ec02cfb2ca502b680362aa95386f7815bdc04b6464d48cf191210b3840d7c04241a149ede591a308
languageName: node
linkType: hard
"character-reference-invalid@npm:^2.0.0":
version: 2.0.1
resolution: "character-reference-invalid@npm:2.0.1"
checksum: 10c0/2ae0dec770cd8659d7e8b0ce24392d83b4c2f0eb4a3395c955dce5528edd4cc030a794cfa06600fcdd700b3f2de2f9b8e40e309c0011c4180e3be64a0b42e6a1
languageName: node
linkType: hard
"chevrotain@npm:7.1.1":
version: 7.1.1
resolution: "chevrotain@npm:7.1.1"
dependencies:
regexp-to-ast: "npm:0.5.0"
checksum: 10c0/3fbbb7a30fb87a4cd141a28bdfa2851f54fde4099aa92071442b47605dfc5974eee0388ec25a517087fcea4dcc1f0ce6b371bc975591346327829aa83b3c843d
languageName: node
linkType: hard
"clear-module@npm:^4.1.2":
version: 4.1.2
resolution: "clear-module@npm:4.1.2"
dependencies:
parent-module: "npm:^2.0.0"
resolve-from: "npm:^5.0.0"
checksum: 10c0/73207f06af256e3c8901ceaa74f7e4468a777aa68dedc7f745db4116861a7f8e69c558e16dbdf7b3d2295675d5896f916ba55b5dc737dda81792dbeee1488127
languageName: node
linkType: hard
"colors@npm:1.4.0":
version: 1.4.0
resolution: "colors@npm:1.4.0"
checksum: 10c0/9af357c019da3c5a098a301cf64e3799d27549d8f185d86f79af23069e4f4303110d115da98483519331f6fb71c8568d5688fa1c6523600044fd4a54e97c4efb
languageName: node
linkType: hard
"commander@npm:^12.1.0":
version: 12.1.0
resolution: "commander@npm:12.1.0"
checksum: 10c0/6e1996680c083b3b897bfc1cfe1c58dfbcd9842fd43e1aaf8a795fbc237f65efcc860a3ef457b318e73f29a4f4a28f6403c3d653d021d960e4632dd45bde54a9
languageName: node
linkType: hard
"commander@npm:^14.0.0":
version: 14.0.0
resolution: "commander@npm:14.0.0"
checksum: 10c0/73c4babfa558077868d84522b11ef56834165d472b9e86a634cd4c3ae7fc72d59af6377d8878e06bd570fe8f3161eced3cbe383c38f7093272bb65bd242b595b
languageName: node
linkType: hard
"commander@npm:^2.11.0":
version: 2.20.3
resolution: "commander@npm:2.20.3"
checksum: 10c0/74c781a5248c2402a0a3e966a0a2bba3c054aad144f5c023364be83265e796b20565aa9feff624132ff629aa64e16999fa40a743c10c12f7c61e96a794b99288
languageName: node
linkType: hard
"commander@npm:^7.2.0":
version: 7.2.0
resolution: "commander@npm:7.2.0"
checksum: 10c0/8d690ff13b0356df7e0ebbe6c59b4712f754f4b724d4f473d3cc5b3fdcf978e3a5dc3078717858a2ceb50b0f84d0660a7f22a96cdc50fb877d0c9bb31593d23a
languageName: node
linkType: hard
"commander@npm:^8.3.0":
version: 8.3.0
resolution: "commander@npm:8.3.0"
checksum: 10c0/8b043bb8322ea1c39664a1598a95e0495bfe4ca2fad0d84a92d7d1d8d213e2a155b441d2470c8e08de7c4a28cf2bc6e169211c49e1b21d9f7edc6ae4d9356060
languageName: node
linkType: hard
"comment-json@npm:^4.2.5":
version: 4.2.5
resolution: "comment-json@npm:4.2.5"
dependencies:
array-timsort: "npm:^1.0.3"
core-util-is: "npm:^1.0.3"
esprima: "npm:^4.0.1"
has-own-prop: "npm:^2.0.0"
repeat-string: "npm:^1.6.1"
checksum: 10c0/e22f13f18fcc484ac33c8bc02a3d69c3f9467ae5063fdfb3df7735f83a8d9a2cab6a32b7d4a0c53123413a9577de8e17c8cc88369c433326799558febb34ef9c
languageName: node
linkType: hard
"core-util-is@npm:^1.0.3":
version: 1.0.3
resolution: "core-util-is@npm:1.0.3"
checksum: 10c0/90a0e40abbddfd7618f8ccd63a74d88deea94e77d0e8dbbea059fa7ebebb8fbb4e2909667fe26f3a467073de1a542ebe6ae4c73a73745ac5833786759cd906c9
languageName: node
linkType: hard
"cspell-config-lib@npm:9.1.2":
version: 9.1.2
resolution: "cspell-config-lib@npm:9.1.2"
dependencies:
"@cspell/cspell-types": "npm:9.1.2"
comment-json: "npm:^4.2.5"
yaml: "npm:^2.8.0"
checksum: 10c0/0cee6592d0174c10b962ee800a9c42381949e3a7dbd89b61d6d532a8e76cd747baef180ad9288ae7d90a1b7f5de499aa6d17d33d7e9e85532d7d1c86486298cd
languageName: node
linkType: hard
"cspell-dictionary@npm:9.1.2":
version: 9.1.2
resolution: "cspell-dictionary@npm:9.1.2"
dependencies:
"@cspell/cspell-pipe": "npm:9.1.2"
"@cspell/cspell-types": "npm:9.1.2"
cspell-trie-lib: "npm:9.1.2"
fast-equals: "npm:^5.2.2"
checksum: 10c0/be4b649230c3af8142de5f4c9064ae528540d7a33900cec35a2da9f6f9d98d70f9d427558b6506604574b1d29b814aca7e65e2886e8d2ef2bf7b36033b0a5cf4
languageName: node
linkType: hard
"cspell-gitignore@npm:9.1.2":
version: 9.1.2
resolution: "cspell-gitignore@npm:9.1.2"
dependencies:
"@cspell/url": "npm:9.1.2"
cspell-glob: "npm:9.1.2"
cspell-io: "npm:9.1.2"
bin:
cspell-gitignore: bin.mjs
checksum: 10c0/3c4cbfc5a576b0bd611da1135ec48ce9c07ddd39b55fc302900d244682941a5034378682a99524bd0304b3eae3387d6ac545540b8d16ddbd52985c2c9b344d14
languageName: node
linkType: hard
"cspell-glob@npm:9.1.2":
version: 9.1.2
resolution: "cspell-glob@npm:9.1.2"
dependencies:
"@cspell/url": "npm:9.1.2"
picomatch: "npm:^4.0.2"
checksum: 10c0/4d1615718458a7eeab2dd70d5cbc59313353ffeb3475c31e1a66d42f74add1d30f653460fdeeb9411065dc5bbaa6e9476f83433ff7a697a2ad98b883beac9a99
languageName: node
linkType: hard
"cspell-grammar@npm:9.1.2":
version: 9.1.2
resolution: "cspell-grammar@npm:9.1.2"
dependencies:
"@cspell/cspell-pipe": "npm:9.1.2"
"@cspell/cspell-types": "npm:9.1.2"
bin:
cspell-grammar: bin.mjs
checksum: 10c0/808f5bafa34a61f2685bf6f2ec6d5b700fa33b04ac1ea48cdfc741952847054ad2c615e0bae404e1c98cb1f49789f0ba182f65a097d3a02a7bea1dea0f1068f1
languageName: node
linkType: hard
"cspell-io@npm:9.1.2":
version: 9.1.2
resolution: "cspell-io@npm:9.1.2"
dependencies:
"@cspell/cspell-service-bus": "npm:9.1.2"
"@cspell/url": "npm:9.1.2"
checksum: 10c0/5fb04df69b13eebeb7de0dce35c4a1d8c859ee96df8e0e4e8ad3a010549340f40a0481152b9c3101fe98868f4645f54992472f07965d032356e7c543028ad1f5
languageName: node
linkType: hard
"cspell-lib@npm:9.1.2":
version: 9.1.2
resolution: "cspell-lib@npm:9.1.2"
dependencies:
"@cspell/cspell-bundled-dicts": "npm:9.1.2"
"@cspell/cspell-pipe": "npm:9.1.2"
"@cspell/cspell-resolver": "npm:9.1.2"
"@cspell/cspell-types": "npm:9.1.2"
"@cspell/dynamic-import": "npm:9.1.2"
"@cspell/filetypes": "npm:9.1.2"
"@cspell/strong-weak-map": "npm:9.1.2"
"@cspell/url": "npm:9.1.2"
clear-module: "npm:^4.1.2"
comment-json: "npm:^4.2.5"
cspell-config-lib: "npm:9.1.2"
cspell-dictionary: "npm:9.1.2"
cspell-glob: "npm:9.1.2"
cspell-grammar: "npm:9.1.2"
cspell-io: "npm:9.1.2"
cspell-trie-lib: "npm:9.1.2"
env-paths: "npm:^3.0.0"
fast-equals: "npm:^5.2.2"
gensequence: "npm:^7.0.0"
import-fresh: "npm:^3.3.1"
resolve-from: "npm:^5.0.0"
vscode-languageserver-textdocument: "npm:^1.0.12"
vscode-uri: "npm:^3.1.0"
xdg-basedir: "npm:^5.1.0"
checksum: 10c0/3b6d8c455ba4ced26897125b2a1a32a60fca20bcb6302a1789f0ba1700e4b6d8e1c9e1ffb2b43df1da191679ef56f3f382fd77cbe1853d9f07e8a936fa00e9b3
languageName: node
linkType: hard
"cspell-trie-lib@npm:9.1.2":
version: 9.1.2
resolution: "cspell-trie-lib@npm:9.1.2"
dependencies:
"@cspell/cspell-pipe": "npm:9.1.2"
"@cspell/cspell-types": "npm:9.1.2"
gensequence: "npm:^7.0.0"
checksum: 10c0/e5ed05ca865d943f402f49f53719c79d463535979fffa6de3f4ae9be8aa195b5e196fe15977dc93fe29a6b7d51e1afa80d3f3f017c2f68ea5e10cc79d1c3f8c7
languageName: node
linkType: hard
"cspell@npm:^9.1.1":
version: 9.1.2
resolution: "cspell@npm:9.1.2"
dependencies:
"@cspell/cspell-json-reporter": "npm:9.1.2"
"@cspell/cspell-pipe": "npm:9.1.2"
"@cspell/cspell-types": "npm:9.1.2"
"@cspell/dynamic-import": "npm:9.1.2"
"@cspell/url": "npm:9.1.2"
chalk: "npm:^5.4.1"
chalk-template: "npm:^1.1.0"
commander: "npm:^14.0.0"
cspell-config-lib: "npm:9.1.2"
cspell-dictionary: "npm:9.1.2"
cspell-gitignore: "npm:9.1.2"
cspell-glob: "npm:9.1.2"
cspell-io: "npm:9.1.2"
cspell-lib: "npm:9.1.2"