-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pnpm-lock.yaml
8975 lines (8052 loc) · 437 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@siyuan-community/siyuan-sdk':
specifier: ^0.3.12
version: registry.npmmirror.com/@siyuan-community/siyuan-sdk@0.3.12
'@vercel/kv':
specifier: ^2.0.0
version: registry.npmmirror.com/@vercel/kv@2.0.0
'@vercel/speed-insights':
specifier: ^1.0.12
version: registry.npmmirror.com/@vercel/speed-insights@1.0.12(vue@3.4.37)
npm-run-all:
specifier: ^4.1.5
version: registry.npmmirror.com/npm-run-all@4.1.5
devDependencies:
'@antfu/eslint-config':
specifier: ^2.24.1
version: registry.npmmirror.com/@antfu/eslint-config@2.25.0(@vue/compiler-sfc@3.4.37)(eslint-plugin-format@0.1.2)(eslint@9.8.0)(typescript@5.5.4)
'@commitlint/cli':
specifier: ^19.3.0
version: registry.npmmirror.com/@commitlint/cli@19.4.0(@types/node@22.1.0)(typescript@5.5.4)
'@commitlint/config-conventional':
specifier: ^19.2.2
version: registry.npmmirror.com/@commitlint/config-conventional@19.2.2
'@commitlint/types':
specifier: ^19.0.3
version: registry.npmmirror.com/@commitlint/types@19.0.3
'@types/lint-staged':
specifier: ^13.3.0
version: registry.npmmirror.com/@types/lint-staged@13.3.0
'@types/node':
specifier: ^22.1.0
version: registry.npmmirror.com/@types/node@22.1.0
'@vercel/node':
specifier: ^3.2.8
version: registry.npmmirror.com/@vercel/node@3.2.8
cspell:
specifier: ^8.13.1
version: registry.npmmirror.com/cspell@8.13.2
eslint:
specifier: ^9.8.0
version: registry.npmmirror.com/eslint@9.8.0
eslint-plugin-format:
specifier: ^0.1.2
version: registry.npmmirror.com/eslint-plugin-format@0.1.2(eslint@9.8.0)
eslint-plugin-tsdoc:
specifier: ^0.3.0
version: registry.npmmirror.com/eslint-plugin-tsdoc@0.3.0
gray-matter:
specifier: ^4.0.3
version: registry.npmmirror.com/gray-matter@4.0.3
husky:
specifier: ^9.1.4
version: registry.npmmirror.com/husky@9.1.4
lint-staged:
specifier: ^15.2.8
version: registry.npmmirror.com/lint-staged@15.2.8
markdown-it-mathjax3:
specifier: ^4.3.2
version: registry.npmmirror.com/markdown-it-mathjax3@4.3.2
prettier:
specifier: ^3.3.3
version: registry.npmmirror.com/prettier@3.3.3
sass-embedded:
specifier: ^1.77.8
version: registry.npmmirror.com/sass-embedded@1.77.8
vitepress:
specifier: ^1.3.2
version: registry.npmmirror.com/vitepress@1.3.2(@algolia/client-search@4.24.0)(@types/node@22.1.0)(markdown-it-mathjax3@4.3.2)(sass-embedded@1.77.8)(search-insights@2.16.0)(typescript@5.5.4)
vue:
specifier: ^3.4.35
version: registry.npmmirror.com/vue@3.4.37(typescript@5.5.4)
packages:
registry.npmmirror.com/@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0):
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==, tarball: https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz}
id: registry.npmmirror.com/@algolia/autocomplete-core/1.9.3
name: '@algolia/autocomplete-core'
version: 1.9.3
dependencies:
'@algolia/autocomplete-plugin-algolia-insights': registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
dev: true
registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0):
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==, tarball: https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz}
id: registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/1.9.3
name: '@algolia/autocomplete-plugin-algolia-insights'
version: 1.9.3
peerDependencies:
search-insights: '>= 1 < 3'
dependencies:
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
search-insights: registry.npmmirror.com/search-insights@2.16.0
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
dev: true
registry.npmmirror.com/@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0):
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==, tarball: https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz}
id: registry.npmmirror.com/@algolia/autocomplete-preset-algolia/1.9.3
name: '@algolia/autocomplete-preset-algolia'
version: 1.9.3
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
'@algolia/autocomplete-shared': registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
'@algolia/client-search': registry.npmmirror.com/@algolia/client-search@4.24.0
algoliasearch: registry.npmmirror.com/algoliasearch@4.24.0
dev: true
registry.npmmirror.com/@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0):
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==, tarball: https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz}
id: registry.npmmirror.com/@algolia/autocomplete-shared/1.9.3
name: '@algolia/autocomplete-shared'
version: 1.9.3
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
'@algolia/client-search': registry.npmmirror.com/@algolia/client-search@4.24.0
algoliasearch: registry.npmmirror.com/algoliasearch@4.24.0
dev: true
registry.npmmirror.com/@algolia/cache-browser-local-storage@4.24.0:
resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==, tarball: https://registry.npmmirror.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.24.0.tgz}
name: '@algolia/cache-browser-local-storage'
version: 4.24.0
dependencies:
'@algolia/cache-common': registry.npmmirror.com/@algolia/cache-common@4.24.0
dev: true
registry.npmmirror.com/@algolia/cache-common@4.24.0:
resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==, tarball: https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.24.0.tgz}
name: '@algolia/cache-common'
version: 4.24.0
dev: true
registry.npmmirror.com/@algolia/cache-in-memory@4.24.0:
resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==, tarball: https://registry.npmmirror.com/@algolia/cache-in-memory/-/cache-in-memory-4.24.0.tgz}
name: '@algolia/cache-in-memory'
version: 4.24.0
dependencies:
'@algolia/cache-common': registry.npmmirror.com/@algolia/cache-common@4.24.0
dev: true
registry.npmmirror.com/@algolia/client-account@4.24.0:
resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==, tarball: https://registry.npmmirror.com/@algolia/client-account/-/client-account-4.24.0.tgz}
name: '@algolia/client-account'
version: 4.24.0
dependencies:
'@algolia/client-common': registry.npmmirror.com/@algolia/client-common@4.24.0
'@algolia/client-search': registry.npmmirror.com/@algolia/client-search@4.24.0
'@algolia/transporter': registry.npmmirror.com/@algolia/transporter@4.24.0
dev: true
registry.npmmirror.com/@algolia/client-analytics@4.24.0:
resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==, tarball: https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-4.24.0.tgz}
name: '@algolia/client-analytics'
version: 4.24.0
dependencies:
'@algolia/client-common': registry.npmmirror.com/@algolia/client-common@4.24.0
'@algolia/client-search': registry.npmmirror.com/@algolia/client-search@4.24.0
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
'@algolia/transporter': registry.npmmirror.com/@algolia/transporter@4.24.0
dev: true
registry.npmmirror.com/@algolia/client-common@4.24.0:
resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==, tarball: https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.24.0.tgz}
name: '@algolia/client-common'
version: 4.24.0
dependencies:
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
'@algolia/transporter': registry.npmmirror.com/@algolia/transporter@4.24.0
dev: true
registry.npmmirror.com/@algolia/client-personalization@4.24.0:
resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==, tarball: https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-4.24.0.tgz}
name: '@algolia/client-personalization'
version: 4.24.0
dependencies:
'@algolia/client-common': registry.npmmirror.com/@algolia/client-common@4.24.0
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
'@algolia/transporter': registry.npmmirror.com/@algolia/transporter@4.24.0
dev: true
registry.npmmirror.com/@algolia/client-search@4.24.0:
resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==, tarball: https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.24.0.tgz}
name: '@algolia/client-search'
version: 4.24.0
dependencies:
'@algolia/client-common': registry.npmmirror.com/@algolia/client-common@4.24.0
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
'@algolia/transporter': registry.npmmirror.com/@algolia/transporter@4.24.0
dev: true
registry.npmmirror.com/@algolia/logger-common@4.24.0:
resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==, tarball: https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.24.0.tgz}
name: '@algolia/logger-common'
version: 4.24.0
dev: true
registry.npmmirror.com/@algolia/logger-console@4.24.0:
resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==, tarball: https://registry.npmmirror.com/@algolia/logger-console/-/logger-console-4.24.0.tgz}
name: '@algolia/logger-console'
version: 4.24.0
dependencies:
'@algolia/logger-common': registry.npmmirror.com/@algolia/logger-common@4.24.0
dev: true
registry.npmmirror.com/@algolia/recommend@4.24.0:
resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==, tarball: https://registry.npmmirror.com/@algolia/recommend/-/recommend-4.24.0.tgz}
name: '@algolia/recommend'
version: 4.24.0
dependencies:
'@algolia/cache-browser-local-storage': registry.npmmirror.com/@algolia/cache-browser-local-storage@4.24.0
'@algolia/cache-common': registry.npmmirror.com/@algolia/cache-common@4.24.0
'@algolia/cache-in-memory': registry.npmmirror.com/@algolia/cache-in-memory@4.24.0
'@algolia/client-common': registry.npmmirror.com/@algolia/client-common@4.24.0
'@algolia/client-search': registry.npmmirror.com/@algolia/client-search@4.24.0
'@algolia/logger-common': registry.npmmirror.com/@algolia/logger-common@4.24.0
'@algolia/logger-console': registry.npmmirror.com/@algolia/logger-console@4.24.0
'@algolia/requester-browser-xhr': registry.npmmirror.com/@algolia/requester-browser-xhr@4.24.0
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
'@algolia/requester-node-http': registry.npmmirror.com/@algolia/requester-node-http@4.24.0
'@algolia/transporter': registry.npmmirror.com/@algolia/transporter@4.24.0
dev: true
registry.npmmirror.com/@algolia/requester-browser-xhr@4.24.0:
resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==, tarball: https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz}
name: '@algolia/requester-browser-xhr'
version: 4.24.0
dependencies:
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
dev: true
registry.npmmirror.com/@algolia/requester-common@4.24.0:
resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==, tarball: https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.24.0.tgz}
name: '@algolia/requester-common'
version: 4.24.0
dev: true
registry.npmmirror.com/@algolia/requester-node-http@4.24.0:
resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==, tarball: https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz}
name: '@algolia/requester-node-http'
version: 4.24.0
dependencies:
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
dev: true
registry.npmmirror.com/@algolia/transporter@4.24.0:
resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==, tarball: https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.24.0.tgz}
name: '@algolia/transporter'
version: 4.24.0
dependencies:
'@algolia/cache-common': registry.npmmirror.com/@algolia/cache-common@4.24.0
'@algolia/logger-common': registry.npmmirror.com/@algolia/logger-common@4.24.0
'@algolia/requester-common': registry.npmmirror.com/@algolia/requester-common@4.24.0
dev: true
registry.npmmirror.com/@antfu/eslint-config@2.25.0(@vue/compiler-sfc@3.4.37)(eslint-plugin-format@0.1.2)(eslint@9.8.0)(typescript@5.5.4):
resolution: {integrity: sha512-yugrgIgGBZvzvCkULTJwAFxGyv7YDDyGrEevMhQYvmTaT6MypxOPaj6wmacVuHXgfmEIO4YxvYWsQgfFuaVS1A==, tarball: https://registry.npmmirror.com/@antfu/eslint-config/-/eslint-config-2.25.0.tgz}
id: registry.npmmirror.com/@antfu/eslint-config/2.25.0
name: '@antfu/eslint-config'
version: 2.25.0
hasBin: true
peerDependencies:
'@eslint-react/eslint-plugin': ^1.5.8
'@prettier/plugin-xml': ^3.4.1
'@unocss/eslint-plugin': '>=0.50.0'
astro-eslint-parser: ^1.0.2
eslint: '>=8.40.0'
eslint-plugin-astro: ^1.2.0
eslint-plugin-format: '>=0.1.0'
eslint-plugin-react-hooks: ^4.6.0
eslint-plugin-react-refresh: ^0.4.4
eslint-plugin-solid: ^0.13.2
eslint-plugin-svelte: '>=2.35.1'
prettier-plugin-astro: ^0.13.0
prettier-plugin-slidev: ^1.0.5
svelte-eslint-parser: '>=0.37.0'
peerDependenciesMeta:
'@eslint-react/eslint-plugin':
optional: true
'@prettier/plugin-xml':
optional: true
'@unocss/eslint-plugin':
optional: true
astro-eslint-parser:
optional: true
eslint-plugin-astro:
optional: true
eslint-plugin-format:
optional: true
eslint-plugin-react-hooks:
optional: true
eslint-plugin-react-refresh:
optional: true
eslint-plugin-solid:
optional: true
eslint-plugin-svelte:
optional: true
prettier-plugin-astro:
optional: true
prettier-plugin-slidev:
optional: true
svelte-eslint-parser:
optional: true
dependencies:
'@antfu/install-pkg': registry.npmmirror.com/@antfu/install-pkg@0.3.3
'@clack/prompts': registry.npmmirror.com/@clack/prompts@0.7.0
'@stylistic/eslint-plugin': registry.npmmirror.com/@stylistic/eslint-plugin@2.6.2(eslint@9.8.0)(typescript@5.5.4)
'@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin@8.0.1(@typescript-eslint/parser@8.0.1)(eslint@9.8.0)(typescript@5.5.4)
'@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser@8.0.1(eslint@9.8.0)(typescript@5.5.4)
eslint: registry.npmmirror.com/eslint@9.8.0
eslint-config-flat-gitignore: registry.npmmirror.com/eslint-config-flat-gitignore@0.1.8
eslint-flat-config-utils: registry.npmmirror.com/eslint-flat-config-utils@0.3.0
eslint-merge-processors: registry.npmmirror.com/eslint-merge-processors@0.1.0(eslint@9.8.0)
eslint-plugin-antfu: registry.npmmirror.com/eslint-plugin-antfu@2.3.4(eslint@9.8.0)
eslint-plugin-command: registry.npmmirror.com/eslint-plugin-command@0.2.3(eslint@9.8.0)
eslint-plugin-eslint-comments: registry.npmmirror.com/eslint-plugin-eslint-comments@3.2.0(eslint@9.8.0)
eslint-plugin-format: registry.npmmirror.com/eslint-plugin-format@0.1.2(eslint@9.8.0)
eslint-plugin-import-x: registry.npmmirror.com/eslint-plugin-import-x@3.1.0(eslint@9.8.0)(typescript@5.5.4)
eslint-plugin-jsdoc: registry.npmmirror.com/eslint-plugin-jsdoc@48.11.0(eslint@9.8.0)
eslint-plugin-jsonc: registry.npmmirror.com/eslint-plugin-jsonc@2.16.0(eslint@9.8.0)
eslint-plugin-markdown: registry.npmmirror.com/eslint-plugin-markdown@5.1.0(eslint@9.8.0)
eslint-plugin-n: registry.npmmirror.com/eslint-plugin-n@17.10.2(eslint@9.8.0)
eslint-plugin-no-only-tests: registry.npmmirror.com/eslint-plugin-no-only-tests@3.1.0
eslint-plugin-perfectionist: registry.npmmirror.com/eslint-plugin-perfectionist@3.1.3(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3)
eslint-plugin-regexp: registry.npmmirror.com/eslint-plugin-regexp@2.6.0(eslint@9.8.0)
eslint-plugin-toml: registry.npmmirror.com/eslint-plugin-toml@0.11.1(eslint@9.8.0)
eslint-plugin-unicorn: registry.npmmirror.com/eslint-plugin-unicorn@55.0.0(eslint@9.8.0)
eslint-plugin-unused-imports: registry.npmmirror.com/eslint-plugin-unused-imports@4.1.2(@typescript-eslint/eslint-plugin@8.0.1)(eslint@9.8.0)
eslint-plugin-vitest: registry.npmmirror.com/eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.0.1)(eslint@9.8.0)(typescript@5.5.4)
eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue@9.27.0(eslint@9.8.0)
eslint-plugin-yml: registry.npmmirror.com/eslint-plugin-yml@1.14.0(eslint@9.8.0)
eslint-processor-vue-blocks: registry.npmmirror.com/eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.4.37)(eslint@9.8.0)
globals: registry.npmmirror.com/globals@15.9.0
jsonc-eslint-parser: registry.npmmirror.com/jsonc-eslint-parser@2.4.0
local-pkg: registry.npmmirror.com/local-pkg@0.5.0
parse-gitignore: registry.npmmirror.com/parse-gitignore@2.0.0
picocolors: registry.npmmirror.com/picocolors@1.0.1
toml-eslint-parser: registry.npmmirror.com/toml-eslint-parser@0.10.0
vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser@9.4.3(eslint@9.8.0)
yaml-eslint-parser: registry.npmmirror.com/yaml-eslint-parser@1.2.3
yargs: registry.npmmirror.com/yargs@17.7.2
transitivePeerDependencies:
- '@vue/compiler-sfc'
- supports-color
- svelte
- typescript
- vitest
dev: true
registry.npmmirror.com/@antfu/install-pkg@0.3.3:
resolution: {integrity: sha512-nHHsk3NXQ6xkCfiRRC8Nfrg8pU5kkr3P3Y9s9dKqiuRmBD0Yap7fymNDjGFKeWhZQHqqbCS5CfeMy9wtExM24w==, tarball: https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-0.3.3.tgz}
name: '@antfu/install-pkg'
version: 0.3.3
dependencies:
'@jsdevtools/ez-spawn': registry.npmmirror.com/@jsdevtools/ez-spawn@3.0.4
dev: true
registry.npmmirror.com/@antfu/utils@0.7.10:
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.10.tgz}
name: '@antfu/utils'
version: 0.7.10
dev: true
registry.npmmirror.com/@babel/code-frame@7.24.7:
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.24.7.tgz}
name: '@babel/code-frame'
version: 7.24.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight@7.24.7
picocolors: registry.npmmirror.com/picocolors@1.0.1
dev: true
registry.npmmirror.com/@babel/helper-string-parser@7.24.8:
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz}
name: '@babel/helper-string-parser'
version: 7.24.8
engines: {node: '>=6.9.0'}
registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7:
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz}
name: '@babel/helper-validator-identifier'
version: 7.24.7
engines: {node: '>=6.9.0'}
registry.npmmirror.com/@babel/highlight@7.24.7:
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.24.7.tgz}
name: '@babel/highlight'
version: 7.24.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7
chalk: registry.npmmirror.com/chalk@2.4.2
js-tokens: registry.npmmirror.com/js-tokens@4.0.0
picocolors: registry.npmmirror.com/picocolors@1.0.1
dev: true
registry.npmmirror.com/@babel/parser@7.25.3:
resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.25.3.tgz}
name: '@babel/parser'
version: 7.25.3
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.25.2
registry.npmmirror.com/@babel/types@7.25.2:
resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.25.2.tgz}
name: '@babel/types'
version: 7.25.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser@7.24.8
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7
to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0
registry.npmmirror.com/@bufbuild/protobuf@1.10.0:
resolution: {integrity: sha512-QDdVFLoN93Zjg36NoQPZfsVH9tZew7wKDKyV5qRdj8ntT4wQCOradQjRaTdwMhWUYsgKsvCINKKm87FdEk96Ag==, tarball: https://registry.npmmirror.com/@bufbuild/protobuf/-/protobuf-1.10.0.tgz}
name: '@bufbuild/protobuf'
version: 1.10.0
dev: true
registry.npmmirror.com/@clack/core@0.3.4:
resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==, tarball: https://registry.npmmirror.com/@clack/core/-/core-0.3.4.tgz}
name: '@clack/core'
version: 0.3.4
dependencies:
picocolors: registry.npmmirror.com/picocolors@1.0.1
sisteransi: registry.npmmirror.com/sisteransi@1.0.5
dev: true
registry.npmmirror.com/@clack/prompts@0.7.0:
resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==, tarball: https://registry.npmmirror.com/@clack/prompts/-/prompts-0.7.0.tgz}
name: '@clack/prompts'
version: 0.7.0
dependencies:
'@clack/core': registry.npmmirror.com/@clack/core@0.3.4
picocolors: registry.npmmirror.com/picocolors@1.0.1
sisteransi: registry.npmmirror.com/sisteransi@1.0.5
dev: true
bundledDependencies:
- is-unicode-supported
registry.npmmirror.com/@commitlint/cli@19.4.0(@types/node@22.1.0)(typescript@5.5.4):
resolution: {integrity: sha512-sJX4J9UioVwZHq7JWM9tjT5bgWYaIN3rC4FP7YwfEwBYiIO+wMyRttRvQLNkow0vCdM0D67r9NEWU0Ui03I4Eg==, tarball: https://registry.npmmirror.com/@commitlint/cli/-/cli-19.4.0.tgz}
id: registry.npmmirror.com/@commitlint/cli/19.4.0
name: '@commitlint/cli'
version: 19.4.0
engines: {node: '>=v18'}
hasBin: true
dependencies:
'@commitlint/format': registry.npmmirror.com/@commitlint/format@19.3.0
'@commitlint/lint': registry.npmmirror.com/@commitlint/lint@19.2.2
'@commitlint/load': registry.npmmirror.com/@commitlint/load@19.4.0(@types/node@22.1.0)(typescript@5.5.4)
'@commitlint/read': registry.npmmirror.com/@commitlint/read@19.4.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
execa: registry.npmmirror.com/execa@8.0.1
yargs: registry.npmmirror.com/yargs@17.7.2
transitivePeerDependencies:
- '@types/node'
- typescript
dev: true
registry.npmmirror.com/@commitlint/config-conventional@19.2.2:
resolution: {integrity: sha512-mLXjsxUVLYEGgzbxbxicGPggDuyWNkf25Ht23owXIH+zV2pv1eJuzLK3t1gDY5Gp6pxdE60jZnWUY5cvgL3ufw==, tarball: https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-19.2.2.tgz}
name: '@commitlint/config-conventional'
version: 19.2.2
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
conventional-changelog-conventionalcommits: registry.npmmirror.com/conventional-changelog-conventionalcommits@7.0.2
dev: true
registry.npmmirror.com/@commitlint/config-validator@19.0.3:
resolution: {integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==, tarball: https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-19.0.3.tgz}
name: '@commitlint/config-validator'
version: 19.0.3
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
ajv: registry.npmmirror.com/ajv@8.17.1
dev: true
registry.npmmirror.com/@commitlint/ensure@19.0.3:
resolution: {integrity: sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==, tarball: https://registry.npmmirror.com/@commitlint/ensure/-/ensure-19.0.3.tgz}
name: '@commitlint/ensure'
version: 19.0.3
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
lodash.camelcase: registry.npmmirror.com/lodash.camelcase@4.3.0
lodash.kebabcase: registry.npmmirror.com/lodash.kebabcase@4.1.1
lodash.snakecase: registry.npmmirror.com/lodash.snakecase@4.1.1
lodash.startcase: registry.npmmirror.com/lodash.startcase@4.4.0
lodash.upperfirst: registry.npmmirror.com/lodash.upperfirst@4.3.1
dev: true
registry.npmmirror.com/@commitlint/execute-rule@19.0.0:
resolution: {integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==, tarball: https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-19.0.0.tgz}
name: '@commitlint/execute-rule'
version: 19.0.0
engines: {node: '>=v18'}
dev: true
registry.npmmirror.com/@commitlint/format@19.3.0:
resolution: {integrity: sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==, tarball: https://registry.npmmirror.com/@commitlint/format/-/format-19.3.0.tgz}
name: '@commitlint/format'
version: 19.3.0
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
chalk: registry.npmmirror.com/chalk@5.3.0
dev: true
registry.npmmirror.com/@commitlint/is-ignored@19.2.2:
resolution: {integrity: sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==, tarball: https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-19.2.2.tgz}
name: '@commitlint/is-ignored'
version: 19.2.2
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
semver: registry.npmmirror.com/semver@7.6.3
dev: true
registry.npmmirror.com/@commitlint/lint@19.2.2:
resolution: {integrity: sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==, tarball: https://registry.npmmirror.com/@commitlint/lint/-/lint-19.2.2.tgz}
name: '@commitlint/lint'
version: 19.2.2
engines: {node: '>=v18'}
dependencies:
'@commitlint/is-ignored': registry.npmmirror.com/@commitlint/is-ignored@19.2.2
'@commitlint/parse': registry.npmmirror.com/@commitlint/parse@19.0.3
'@commitlint/rules': registry.npmmirror.com/@commitlint/rules@19.0.3
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
dev: true
registry.npmmirror.com/@commitlint/load@19.4.0(@types/node@22.1.0)(typescript@5.5.4):
resolution: {integrity: sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==, tarball: https://registry.npmmirror.com/@commitlint/load/-/load-19.4.0.tgz}
id: registry.npmmirror.com/@commitlint/load/19.4.0
name: '@commitlint/load'
version: 19.4.0
engines: {node: '>=v18'}
dependencies:
'@commitlint/config-validator': registry.npmmirror.com/@commitlint/config-validator@19.0.3
'@commitlint/execute-rule': registry.npmmirror.com/@commitlint/execute-rule@19.0.0
'@commitlint/resolve-extends': registry.npmmirror.com/@commitlint/resolve-extends@19.1.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
chalk: registry.npmmirror.com/chalk@5.3.0
cosmiconfig: registry.npmmirror.com/cosmiconfig@9.0.0(typescript@5.5.4)
cosmiconfig-typescript-loader: registry.npmmirror.com/cosmiconfig-typescript-loader@5.0.0(@types/node@22.1.0)(cosmiconfig@9.0.0)(typescript@5.5.4)
lodash.isplainobject: registry.npmmirror.com/lodash.isplainobject@4.0.6
lodash.merge: registry.npmmirror.com/lodash.merge@4.6.2
lodash.uniq: registry.npmmirror.com/lodash.uniq@4.5.0
transitivePeerDependencies:
- '@types/node'
- typescript
dev: true
registry.npmmirror.com/@commitlint/message@19.0.0:
resolution: {integrity: sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==, tarball: https://registry.npmmirror.com/@commitlint/message/-/message-19.0.0.tgz}
name: '@commitlint/message'
version: 19.0.0
engines: {node: '>=v18'}
dev: true
registry.npmmirror.com/@commitlint/parse@19.0.3:
resolution: {integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==, tarball: https://registry.npmmirror.com/@commitlint/parse/-/parse-19.0.3.tgz}
name: '@commitlint/parse'
version: 19.0.3
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
conventional-changelog-angular: registry.npmmirror.com/conventional-changelog-angular@7.0.0
conventional-commits-parser: registry.npmmirror.com/conventional-commits-parser@5.0.0
dev: true
registry.npmmirror.com/@commitlint/read@19.4.0:
resolution: {integrity: sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==, tarball: https://registry.npmmirror.com/@commitlint/read/-/read-19.4.0.tgz}
name: '@commitlint/read'
version: 19.4.0
engines: {node: '>=v18'}
dependencies:
'@commitlint/top-level': registry.npmmirror.com/@commitlint/top-level@19.0.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
execa: registry.npmmirror.com/execa@8.0.1
git-raw-commits: registry.npmmirror.com/git-raw-commits@4.0.0
minimist: registry.npmmirror.com/minimist@1.2.8
dev: true
registry.npmmirror.com/@commitlint/resolve-extends@19.1.0:
resolution: {integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==, tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-19.1.0.tgz}
name: '@commitlint/resolve-extends'
version: 19.1.0
engines: {node: '>=v18'}
dependencies:
'@commitlint/config-validator': registry.npmmirror.com/@commitlint/config-validator@19.0.3
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
global-directory: registry.npmmirror.com/global-directory@4.0.1
import-meta-resolve: registry.npmmirror.com/import-meta-resolve@4.1.0
lodash.mergewith: registry.npmmirror.com/lodash.mergewith@4.6.2
resolve-from: registry.npmmirror.com/resolve-from@5.0.0
dev: true
registry.npmmirror.com/@commitlint/rules@19.0.3:
resolution: {integrity: sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==, tarball: https://registry.npmmirror.com/@commitlint/rules/-/rules-19.0.3.tgz}
name: '@commitlint/rules'
version: 19.0.3
engines: {node: '>=v18'}
dependencies:
'@commitlint/ensure': registry.npmmirror.com/@commitlint/ensure@19.0.3
'@commitlint/message': registry.npmmirror.com/@commitlint/message@19.0.0
'@commitlint/to-lines': registry.npmmirror.com/@commitlint/to-lines@19.0.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types@19.0.3
execa: registry.npmmirror.com/execa@8.0.1
dev: true
registry.npmmirror.com/@commitlint/to-lines@19.0.0:
resolution: {integrity: sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==, tarball: https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-19.0.0.tgz}
name: '@commitlint/to-lines'
version: 19.0.0
engines: {node: '>=v18'}
dev: true
registry.npmmirror.com/@commitlint/top-level@19.0.0:
resolution: {integrity: sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==, tarball: https://registry.npmmirror.com/@commitlint/top-level/-/top-level-19.0.0.tgz}
name: '@commitlint/top-level'
version: 19.0.0
engines: {node: '>=v18'}
dependencies:
find-up: registry.npmmirror.com/find-up@7.0.0
dev: true
registry.npmmirror.com/@commitlint/types@19.0.3:
resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==, tarball: https://registry.npmmirror.com/@commitlint/types/-/types-19.0.3.tgz}
name: '@commitlint/types'
version: 19.0.3
engines: {node: '>=v18'}
dependencies:
'@types/conventional-commits-parser': registry.npmmirror.com/@types/conventional-commits-parser@5.0.0
chalk: registry.npmmirror.com/chalk@5.3.0
dev: true
registry.npmmirror.com/@cspell/cspell-bundled-dicts@8.13.2:
resolution: {integrity: sha512-BLXah6gUvPeZM8bj1I0F5YJ0CzDZ3d3xpbDCrDB0NfHIsF9zn0la+ie0O15VcVWNBrNIToc6enjxWg1JSF3E5g==, tarball: https://registry.npmmirror.com/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.13.2.tgz}
name: '@cspell/cspell-bundled-dicts'
version: 8.13.2
engines: {node: '>=18'}
dependencies:
'@cspell/dict-ada': registry.npmmirror.com/@cspell/dict-ada@4.0.2
'@cspell/dict-aws': registry.npmmirror.com/@cspell/dict-aws@4.0.3
'@cspell/dict-bash': registry.npmmirror.com/@cspell/dict-bash@4.1.3
'@cspell/dict-companies': registry.npmmirror.com/@cspell/dict-companies@3.1.4
'@cspell/dict-cpp': registry.npmmirror.com/@cspell/dict-cpp@5.1.12
'@cspell/dict-cryptocurrencies': registry.npmmirror.com/@cspell/dict-cryptocurrencies@5.0.0
'@cspell/dict-csharp': registry.npmmirror.com/@cspell/dict-csharp@4.0.2
'@cspell/dict-css': registry.npmmirror.com/@cspell/dict-css@4.0.12
'@cspell/dict-dart': registry.npmmirror.com/@cspell/dict-dart@2.0.3
'@cspell/dict-django': registry.npmmirror.com/@cspell/dict-django@4.1.0
'@cspell/dict-docker': registry.npmmirror.com/@cspell/dict-docker@1.1.7
'@cspell/dict-dotnet': registry.npmmirror.com/@cspell/dict-dotnet@5.0.2
'@cspell/dict-elixir': registry.npmmirror.com/@cspell/dict-elixir@4.0.3
'@cspell/dict-en-common-misspellings': registry.npmmirror.com/@cspell/dict-en-common-misspellings@2.0.4
'@cspell/dict-en-gb': registry.npmmirror.com/@cspell/dict-en-gb@1.1.33
'@cspell/dict-en_us': registry.npmmirror.com/@cspell/dict-en_us@4.3.23
'@cspell/dict-filetypes': registry.npmmirror.com/@cspell/dict-filetypes@3.0.4
'@cspell/dict-fonts': registry.npmmirror.com/@cspell/dict-fonts@4.0.0
'@cspell/dict-fsharp': registry.npmmirror.com/@cspell/dict-fsharp@1.0.1
'@cspell/dict-fullstack': registry.npmmirror.com/@cspell/dict-fullstack@3.2.0
'@cspell/dict-gaming-terms': registry.npmmirror.com/@cspell/dict-gaming-terms@1.0.5
'@cspell/dict-git': registry.npmmirror.com/@cspell/dict-git@3.0.0
'@cspell/dict-golang': registry.npmmirror.com/@cspell/dict-golang@6.0.9
'@cspell/dict-google': registry.npmmirror.com/@cspell/dict-google@1.0.1
'@cspell/dict-haskell': registry.npmmirror.com/@cspell/dict-haskell@4.0.1
'@cspell/dict-html': registry.npmmirror.com/@cspell/dict-html@4.0.5
'@cspell/dict-html-symbol-entities': registry.npmmirror.com/@cspell/dict-html-symbol-entities@4.0.0
'@cspell/dict-java': registry.npmmirror.com/@cspell/dict-java@5.0.7
'@cspell/dict-julia': registry.npmmirror.com/@cspell/dict-julia@1.0.1
'@cspell/dict-k8s': registry.npmmirror.com/@cspell/dict-k8s@1.0.6
'@cspell/dict-latex': registry.npmmirror.com/@cspell/dict-latex@4.0.0
'@cspell/dict-lorem-ipsum': registry.npmmirror.com/@cspell/dict-lorem-ipsum@4.0.0
'@cspell/dict-lua': registry.npmmirror.com/@cspell/dict-lua@4.0.3
'@cspell/dict-makefile': registry.npmmirror.com/@cspell/dict-makefile@1.0.0
'@cspell/dict-monkeyc': registry.npmmirror.com/@cspell/dict-monkeyc@1.0.6
'@cspell/dict-node': registry.npmmirror.com/@cspell/dict-node@5.0.1
'@cspell/dict-npm': registry.npmmirror.com/@cspell/dict-npm@5.0.18
'@cspell/dict-php': registry.npmmirror.com/@cspell/dict-php@4.0.8
'@cspell/dict-powershell': registry.npmmirror.com/@cspell/dict-powershell@5.0.5
'@cspell/dict-public-licenses': registry.npmmirror.com/@cspell/dict-public-licenses@2.0.7
'@cspell/dict-python': registry.npmmirror.com/@cspell/dict-python@4.2.4
'@cspell/dict-r': registry.npmmirror.com/@cspell/dict-r@2.0.1
'@cspell/dict-ruby': registry.npmmirror.com/@cspell/dict-ruby@5.0.2
'@cspell/dict-rust': registry.npmmirror.com/@cspell/dict-rust@4.0.5
'@cspell/dict-scala': registry.npmmirror.com/@cspell/dict-scala@5.0.3
'@cspell/dict-software-terms': registry.npmmirror.com/@cspell/dict-software-terms@4.0.5
'@cspell/dict-sql': registry.npmmirror.com/@cspell/dict-sql@2.1.5
'@cspell/dict-svelte': registry.npmmirror.com/@cspell/dict-svelte@1.0.2
'@cspell/dict-swift': registry.npmmirror.com/@cspell/dict-swift@2.0.1
'@cspell/dict-terraform': registry.npmmirror.com/@cspell/dict-terraform@1.0.0
'@cspell/dict-typescript': registry.npmmirror.com/@cspell/dict-typescript@3.1.6
'@cspell/dict-vue': registry.npmmirror.com/@cspell/dict-vue@3.0.0
dev: true
registry.npmmirror.com/@cspell/cspell-json-reporter@8.13.2:
resolution: {integrity: sha512-UOINJikJs9tRWc2RrFmXK4s3hpasAIbSq+6ed7NojY/2kYv6u0bHNhh4D+4DAroHcFsU24vl/PeTa9V4Z5CelA==, tarball: https://registry.npmmirror.com/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.13.2.tgz}
name: '@cspell/cspell-json-reporter'
version: 8.13.2
engines: {node: '>=18'}
dependencies:
'@cspell/cspell-types': registry.npmmirror.com/@cspell/cspell-types@8.13.2
dev: true
registry.npmmirror.com/@cspell/cspell-pipe@8.13.2:
resolution: {integrity: sha512-67N6UHaHRc3H9Nl5TKO/r1lCMgnMPQH+scR6aJxHjcwlKLSoNpGF9LiURhmYaItIhfTH4TDfB2hVPzsslRzaWg==, tarball: https://registry.npmmirror.com/@cspell/cspell-pipe/-/cspell-pipe-8.13.2.tgz}
name: '@cspell/cspell-pipe'
version: 8.13.2
engines: {node: '>=18'}
dev: true
registry.npmmirror.com/@cspell/cspell-resolver@8.13.2:
resolution: {integrity: sha512-SCAH4LbV0uFP9ldXB49mRGnAnPCKZV8W96EMHv9Tdh7Fp3btF5FFaVf0h3/ms1g3quzWJq1+EZvJCKCpm9JY5g==, tarball: https://registry.npmmirror.com/@cspell/cspell-resolver/-/cspell-resolver-8.13.2.tgz}
name: '@cspell/cspell-resolver'
version: 8.13.2
engines: {node: '>=18'}
dependencies:
global-directory: registry.npmmirror.com/global-directory@4.0.1
dev: true
registry.npmmirror.com/@cspell/cspell-service-bus@8.13.2:
resolution: {integrity: sha512-lKgRzJlCPc4BLlqDjWQgIo0ikX4nQ04M1vu0H3CQjfcwr2PVEGLSlXXyJnA6S3A80WxVXhGehyMBhXzItmpKIQ==, tarball: https://registry.npmmirror.com/@cspell/cspell-service-bus/-/cspell-service-bus-8.13.2.tgz}
name: '@cspell/cspell-service-bus'
version: 8.13.2
engines: {node: '>=18'}
dev: true
registry.npmmirror.com/@cspell/cspell-types@8.13.2:
resolution: {integrity: sha512-0QFLcerzBapst1A729VTegeEcsHFK/YfDvOYWUwsZcmPrpacJ8qHmRPVyyFLvN5punXWwB7pIdtbrVRPDQT49w==, tarball: https://registry.npmmirror.com/@cspell/cspell-types/-/cspell-types-8.13.2.tgz}
name: '@cspell/cspell-types'
version: 8.13.2
engines: {node: '>=18'}
dev: true
registry.npmmirror.com/@cspell/dict-ada@4.0.2:
resolution: {integrity: sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA==, tarball: https://registry.npmmirror.com/@cspell/dict-ada/-/dict-ada-4.0.2.tgz}
name: '@cspell/dict-ada'
version: 4.0.2
dev: true
registry.npmmirror.com/@cspell/dict-aws@4.0.3:
resolution: {integrity: sha512-0C0RQ4EM29fH0tIYv+EgDQEum0QI6OrmjENC9u98pB8UcnYxGG/SqinuPxo+TgcEuInj0Q73MsBpJ1l5xUnrsw==, tarball: https://registry.npmmirror.com/@cspell/dict-aws/-/dict-aws-4.0.3.tgz}
name: '@cspell/dict-aws'
version: 4.0.3
dev: true
registry.npmmirror.com/@cspell/dict-bash@4.1.3:
resolution: {integrity: sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw==, tarball: https://registry.npmmirror.com/@cspell/dict-bash/-/dict-bash-4.1.3.tgz}
name: '@cspell/dict-bash'
version: 4.1.3
dev: true
registry.npmmirror.com/@cspell/dict-companies@3.1.4:
resolution: {integrity: sha512-y9e0amzEK36EiiKx3VAA+SHQJPpf2Qv5cCt5eTUSggpTkiFkCh6gRKQ97rVlrKh5GJrqinDwYIJtTsxuh2vy2Q==, tarball: https://registry.npmmirror.com/@cspell/dict-companies/-/dict-companies-3.1.4.tgz}
name: '@cspell/dict-companies'
version: 3.1.4
dev: true
registry.npmmirror.com/@cspell/dict-cpp@5.1.12:
resolution: {integrity: sha512-6lXLOFIa+k/qBcu0bjaE/Kc6v3sh9VhsDOXD1Dalm3zgd0QIMjp5XBmkpSdCAK3pWCPV0Se7ysVLDfCea1BuXg==, tarball: https://registry.npmmirror.com/@cspell/dict-cpp/-/dict-cpp-5.1.12.tgz}
name: '@cspell/dict-cpp'
version: 5.1.12
dev: true
registry.npmmirror.com/@cspell/dict-cryptocurrencies@5.0.0:
resolution: {integrity: sha512-Z4ARIw5+bvmShL+4ZrhDzGhnc9znaAGHOEMaB/GURdS/jdoreEDY34wdN0NtdLHDO5KO7GduZnZyqGdRoiSmYA==, tarball: https://registry.npmmirror.com/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.0.tgz}
name: '@cspell/dict-cryptocurrencies'
version: 5.0.0
dev: true
registry.npmmirror.com/@cspell/dict-csharp@4.0.2:
resolution: {integrity: sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==, tarball: https://registry.npmmirror.com/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz}
name: '@cspell/dict-csharp'
version: 4.0.2
dev: true
registry.npmmirror.com/@cspell/dict-css@4.0.12:
resolution: {integrity: sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw==, tarball: https://registry.npmmirror.com/@cspell/dict-css/-/dict-css-4.0.12.tgz}
name: '@cspell/dict-css'
version: 4.0.12
dev: true
registry.npmmirror.com/@cspell/dict-dart@2.0.3:
resolution: {integrity: sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw==, tarball: https://registry.npmmirror.com/@cspell/dict-dart/-/dict-dart-2.0.3.tgz}
name: '@cspell/dict-dart'
version: 2.0.3
dev: true
registry.npmmirror.com/@cspell/dict-data-science@2.0.1:
resolution: {integrity: sha512-xeutkzK0eBe+LFXOFU2kJeAYO6IuFUc1g7iRLr7HeCmlC4rsdGclwGHh61KmttL3+YHQytYStxaRBdGAXWC8Lw==, tarball: https://registry.npmmirror.com/@cspell/dict-data-science/-/dict-data-science-2.0.1.tgz}
name: '@cspell/dict-data-science'
version: 2.0.1
dev: true
registry.npmmirror.com/@cspell/dict-django@4.1.0:
resolution: {integrity: sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==, tarball: https://registry.npmmirror.com/@cspell/dict-django/-/dict-django-4.1.0.tgz}
name: '@cspell/dict-django'
version: 4.1.0
dev: true
registry.npmmirror.com/@cspell/dict-docker@1.1.7:
resolution: {integrity: sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A==, tarball: https://registry.npmmirror.com/@cspell/dict-docker/-/dict-docker-1.1.7.tgz}
name: '@cspell/dict-docker'
version: 1.1.7
dev: true
registry.npmmirror.com/@cspell/dict-dotnet@5.0.2:
resolution: {integrity: sha512-UD/pO2A2zia/YZJ8Kck/F6YyDSpCMq0YvItpd4YbtDVzPREfTZ48FjZsbYi4Jhzwfvc6o8R56JusAE58P+4sNQ==, tarball: https://registry.npmmirror.com/@cspell/dict-dotnet/-/dict-dotnet-5.0.2.tgz}
name: '@cspell/dict-dotnet'
version: 5.0.2
dev: true
registry.npmmirror.com/@cspell/dict-elixir@4.0.3:
resolution: {integrity: sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==, tarball: https://registry.npmmirror.com/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz}
name: '@cspell/dict-elixir'
version: 4.0.3
dev: true
registry.npmmirror.com/@cspell/dict-en-common-misspellings@2.0.4:
resolution: {integrity: sha512-lvOiRjV/FG4pAGZL3PN2GCVHSTCE92cwhfLGGkOsQtxSmef6WCHfHwp9auafkBlX0yFQSKDfq6/TlpQbjbJBtQ==, tarball: https://registry.npmmirror.com/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.4.tgz}
name: '@cspell/dict-en-common-misspellings'
version: 2.0.4
dev: true
registry.npmmirror.com/@cspell/dict-en-gb@1.1.33:
resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==, tarball: https://registry.npmmirror.com/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz}
name: '@cspell/dict-en-gb'
version: 1.1.33
dev: true
registry.npmmirror.com/@cspell/dict-en_us@4.3.23:
resolution: {integrity: sha512-l0SoEQBsi3zDSl3OuL4/apBkxjuj4hLIg/oy6+gZ7LWh03rKdF6VNtSZNXWAmMY+pmb1cGA3ouleTiJIglbsIg==, tarball: https://registry.npmmirror.com/@cspell/dict-en_us/-/dict-en_us-4.3.23.tgz}
name: '@cspell/dict-en_us'
version: 4.3.23
dev: true
registry.npmmirror.com/@cspell/dict-filetypes@3.0.4:
resolution: {integrity: sha512-IBi8eIVdykoGgIv5wQhOURi5lmCNJq0we6DvqKoPQJHthXbgsuO1qrHSiUVydMiQl/XvcnUWTMeAlVUlUClnVg==, tarball: https://registry.npmmirror.com/@cspell/dict-filetypes/-/dict-filetypes-3.0.4.tgz}
name: '@cspell/dict-filetypes'
version: 3.0.4
dev: true
registry.npmmirror.com/@cspell/dict-fonts@4.0.0:
resolution: {integrity: sha512-t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q==, tarball: https://registry.npmmirror.com/@cspell/dict-fonts/-/dict-fonts-4.0.0.tgz}
name: '@cspell/dict-fonts'
version: 4.0.0
dev: true
registry.npmmirror.com/@cspell/dict-fsharp@1.0.1:
resolution: {integrity: sha512-23xyPcD+j+NnqOjRHgW3IU7Li912SX9wmeefcY0QxukbAxJ/vAN4rBpjSwwYZeQPAn3fxdfdNZs03fg+UM+4yQ==, tarball: https://registry.npmmirror.com/@cspell/dict-fsharp/-/dict-fsharp-1.0.1.tgz}
name: '@cspell/dict-fsharp'
version: 1.0.1
dev: true
registry.npmmirror.com/@cspell/dict-fullstack@3.2.0:
resolution: {integrity: sha512-sIGQwU6G3rLTo+nx0GKyirR5dQSFeTIzFTOrURw51ISf+jKG9a3OmvsVtc2OANfvEAOLOC9Wfd8WYhmsO8KRDQ==, tarball: https://registry.npmmirror.com/@cspell/dict-fullstack/-/dict-fullstack-3.2.0.tgz}
name: '@cspell/dict-fullstack'
version: 3.2.0
dev: true
registry.npmmirror.com/@cspell/dict-gaming-terms@1.0.5:
resolution: {integrity: sha512-C3riccZDD3d9caJQQs1+MPfrUrQ+0KHdlj9iUR1QD92FgTOF6UxoBpvHUUZ9YSezslcmpFQK4xQQ5FUGS7uWfw==, tarball: https://registry.npmmirror.com/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.5.tgz}
name: '@cspell/dict-gaming-terms'
version: 1.0.5
dev: true
registry.npmmirror.com/@cspell/dict-git@3.0.0:
resolution: {integrity: sha512-simGS/lIiXbEaqJu9E2VPoYW1OTC2xrwPPXNXFMa2uo/50av56qOuaxDrZ5eH1LidFXwoc8HROCHYeKoNrDLSw==, tarball: https://registry.npmmirror.com/@cspell/dict-git/-/dict-git-3.0.0.tgz}
name: '@cspell/dict-git'
version: 3.0.0
dev: true
registry.npmmirror.com/@cspell/dict-golang@6.0.9:
resolution: {integrity: sha512-etDt2WQauyEQDA+qPS5QtkYTb2I9l5IfQftAllVoB1aOrT6bxxpHvMEpJ0Hsn/vezxrCqa/BmtUbRxllIxIuSg==, tarball: https://registry.npmmirror.com/@cspell/dict-golang/-/dict-golang-6.0.9.tgz}
name: '@cspell/dict-golang'
version: 6.0.9
dev: true
registry.npmmirror.com/@cspell/dict-google@1.0.1:
resolution: {integrity: sha512-dQr4M3n95uOhtloNSgB9tYYGXGGEGEykkFyRtfcp5pFuEecYUa0BSgtlGKx9RXVtJtKgR+yFT/a5uQSlt8WjqQ==, tarball: https://registry.npmmirror.com/@cspell/dict-google/-/dict-google-1.0.1.tgz}
name: '@cspell/dict-google'
version: 1.0.1
dev: true
registry.npmmirror.com/@cspell/dict-haskell@4.0.1:
resolution: {integrity: sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==, tarball: https://registry.npmmirror.com/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz}
name: '@cspell/dict-haskell'
version: 4.0.1
dev: true
registry.npmmirror.com/@cspell/dict-html-symbol-entities@4.0.0:
resolution: {integrity: sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==, tarball: https://registry.npmmirror.com/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz}
name: '@cspell/dict-html-symbol-entities'
version: 4.0.0
dev: true
registry.npmmirror.com/@cspell/dict-html@4.0.5:
resolution: {integrity: sha512-p0brEnRybzSSWi8sGbuVEf7jSTDmXPx7XhQUb5bgG6b54uj+Z0Qf0V2n8b/LWwIPJNd1GygaO9l8k3HTCy1h4w==, tarball: https://registry.npmmirror.com/@cspell/dict-html/-/dict-html-4.0.5.tgz}
name: '@cspell/dict-html'
version: 4.0.5
dev: true
registry.npmmirror.com/@cspell/dict-java@5.0.7:
resolution: {integrity: sha512-ejQ9iJXYIq7R09BScU2y5OUGrSqwcD+J5mHFOKbduuQ5s/Eh/duz45KOzykeMLI6KHPVxhBKpUPBWIsfewECpQ==, tarball: https://registry.npmmirror.com/@cspell/dict-java/-/dict-java-5.0.7.tgz}
name: '@cspell/dict-java'
version: 5.0.7
dev: true
registry.npmmirror.com/@cspell/dict-julia@1.0.1:
resolution: {integrity: sha512-4JsCLCRhhLMLiaHpmR7zHFjj1qOauzDI5ZzCNQS31TUMfsOo26jAKDfo0jljFAKgw5M2fEG7sKr8IlPpQAYrmQ==, tarball: https://registry.npmmirror.com/@cspell/dict-julia/-/dict-julia-1.0.1.tgz}
name: '@cspell/dict-julia'
version: 1.0.1
dev: true
registry.npmmirror.com/@cspell/dict-k8s@1.0.6:
resolution: {integrity: sha512-srhVDtwrd799uxMpsPOQqeDJY+gEocgZpoK06EFrb4GRYGhv7lXo9Fb+xQMyQytzOW9dw4DNOEck++nacDuymg==, tarball: https://registry.npmmirror.com/@cspell/dict-k8s/-/dict-k8s-1.0.6.tgz}
name: '@cspell/dict-k8s'
version: 1.0.6
dev: true
registry.npmmirror.com/@cspell/dict-latex@4.0.0:
resolution: {integrity: sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==, tarball: https://registry.npmmirror.com/@cspell/dict-latex/-/dict-latex-4.0.0.tgz}
name: '@cspell/dict-latex'
version: 4.0.0
dev: true
registry.npmmirror.com/@cspell/dict-lorem-ipsum@4.0.0:
resolution: {integrity: sha512-1l3yjfNvMzZPibW8A7mQU4kTozwVZVw0AvFEdy+NcqtbxH+TvbSkNMqROOFWrkD2PjnKG0+Ea0tHI2Pi6Gchnw==, tarball: https://registry.npmmirror.com/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.0.tgz}
name: '@cspell/dict-lorem-ipsum'
version: 4.0.0
dev: true
registry.npmmirror.com/@cspell/dict-lua@4.0.3:
resolution: {integrity: sha512-lDHKjsrrbqPaea13+G9s0rtXjMO06gPXPYRjRYawbNmo4E/e3XFfVzeci3OQDQNDmf2cPOwt9Ef5lu2lDmwfJg==, tarball: https://registry.npmmirror.com/@cspell/dict-lua/-/dict-lua-4.0.3.tgz}
name: '@cspell/dict-lua'
version: 4.0.3
dev: true
registry.npmmirror.com/@cspell/dict-makefile@1.0.0:
resolution: {integrity: sha512-3W9tHPcSbJa6s0bcqWo6VisEDTSN5zOtDbnPabF7rbyjRpNo0uHXHRJQF8gAbFzoTzBBhgkTmrfSiuyQm7vBUQ==, tarball: https://registry.npmmirror.com/@cspell/dict-makefile/-/dict-makefile-1.0.0.tgz}
name: '@cspell/dict-makefile'
version: 1.0.0
dev: true
registry.npmmirror.com/@cspell/dict-monkeyc@1.0.6:
resolution: {integrity: sha512-oO8ZDu/FtZ55aq9Mb67HtaCnsLn59xvhO/t2mLLTHAp667hJFxpp7bCtr2zOrR1NELzFXmKln/2lw/PvxMSvrA==, tarball: https://registry.npmmirror.com/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.6.tgz}
name: '@cspell/dict-monkeyc'
version: 1.0.6
dev: true
registry.npmmirror.com/@cspell/dict-node@5.0.1:
resolution: {integrity: sha512-lax/jGz9h3Dv83v8LHa5G0bf6wm8YVRMzbjJPG/9rp7cAGPtdrga+XANFq+B7bY5+jiSA3zvj10LUFCFjnnCCg==, tarball: https://registry.npmmirror.com/@cspell/dict-node/-/dict-node-5.0.1.tgz}
name: '@cspell/dict-node'
version: 5.0.1
dev: true
registry.npmmirror.com/@cspell/dict-npm@5.0.18:
resolution: {integrity: sha512-weMTyxWpzz19q4wv9n183BtFvdD5fCjtze+bFKpl+4rO/YlPhHL2cXLAeexJz/VDSBecwX4ybTZYoknd1h2J4w==, tarball: https://registry.npmmirror.com/@cspell/dict-npm/-/dict-npm-5.0.18.tgz}
name: '@cspell/dict-npm'
version: 5.0.18
dev: true
registry.npmmirror.com/@cspell/dict-php@4.0.8:
resolution: {integrity: sha512-TBw3won4MCBQ2wdu7kvgOCR3dY2Tb+LJHgDUpuquy3WnzGiSDJ4AVelrZdE1xu7mjFJUr4q48aB21YT5uQqPZA==, tarball: https://registry.npmmirror.com/@cspell/dict-php/-/dict-php-4.0.8.tgz}
name: '@cspell/dict-php'
version: 4.0.8
dev: true
registry.npmmirror.com/@cspell/dict-powershell@5.0.5:
resolution: {integrity: sha512-3JVyvMoDJesAATYGOxcUWPbQPUvpZmkinV3m8HL1w1RrjeMVXXuK7U1jhopSneBtLhkU+9HKFwgh9l9xL9mY2Q==, tarball: https://registry.npmmirror.com/@cspell/dict-powershell/-/dict-powershell-5.0.5.tgz}
name: '@cspell/dict-powershell'
version: 5.0.5
dev: true
registry.npmmirror.com/@cspell/dict-public-licenses@2.0.7: