-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathyarn.lock
More file actions
9518 lines (8522 loc) · 338 KB
/
Copy pathyarn.lock
File metadata and controls
9518 lines (8522 loc) · 338 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 10
cacheKey: 10c0
"@algolia/abtesting@npm:1.16.2":
version: 1.16.2
resolution: "@algolia/abtesting@npm:1.16.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/599180e072a119123bff1013c3e87ac62f9e52b1b4d97574d19f1132bba4cf88cb88ed8018fe579c66f4cb49323ec9e5580eae63c33367e2ed2686ef6ecd37ab
languageName: node
linkType: hard
"@algolia/autocomplete-core@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-core@npm:1.17.7"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.17.7"
"@algolia/autocomplete-shared": "npm:1.17.7"
checksum: 10c0/603e0f0157eed71a8fabfba2d14ca846e399dc4e10bc300eb2f018529f9ac68f689193f582b6e97828e01bb150c045bb7d251aa40950a058a191dc560895ed98
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.17.7"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.7"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10c0/4f0f6b87ca76ea2fb45bfaa8a14c206d5bead60962b80bad10fd26928a37835d61a7420cbfd07cc2f1eb027b23b2e14f5796acfc35a74a9f51653367ee95e506
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-preset-algolia@npm:1.17.7"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.7"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/eb20746cbba532f8ade62fb48b7d2b6e9b2e0b5acc33bc80071630d3da724d78242de9c06cf838bef402ce2a912e86ab018bd2f6728ecb0f981a22c65bbbb2cb
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-shared@npm:1.17.7"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/9eb0c3ab57c7bae5b9c1d4c5c58dfdab56d1f4591f7488bd3d1dfd372eb8fa03416c97e247a3fcd581cda075eaea8b973dcfa306a8085c67d71f14513e3f5c5b
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/client-abtesting@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/34308acd7f01d4cef710af2a7043db4697ee1303666862256f0558f686f381f25714fd4450974f48a68612d6a043c1ddb6687b55fe6db5066fa50bf71195e88b
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/client-analytics@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/14cfaba592c733755f8d6220eaa8f6126401b5f35774c25edea1dda17295b710a3aa72782412719af20ed99fd0460bc2daa8af8232aad365dc8e4ee373b23de5
languageName: node
linkType: hard
"@algolia/client-common@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/client-common@npm:5.50.2"
checksum: 10c0/1a74a898677f93e5d02092fddcb87421f78d076cf7c2e3938549768e3ba55ff04e32b4b2aecfb45cb043981ec5fd0d3cab58d3bae016fd6953f4cb98a48daaae
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/client-insights@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/44a41448656ee0b59f115aaedd2830d9421a1dca508dbf3214f2b25e1ac3cba4e572fa25b53d608c1e23e4976ef50e9460d3df7ea8806243f3f08d1391ac5ac5
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/client-personalization@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/ac62831630d0800c57733073b4a0837c8f3d6d657b83af223b1169546bb4b772dc5c9a639136311d3990342c8bed2de5f0f809471830c5569fe24e917024f86a
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/client-query-suggestions@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/f0c3c63b1b28d2ed1c25744a310585b6b59dcc65b44ec7db75adce571e28d8aa76fc7402f807a4eaada7894bcddd696b9034a28602bd768d108c171f2014d999
languageName: node
linkType: hard
"@algolia/client-search@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/client-search@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/b2eca0893ba8a57944175d85319f55d98a3a0a9571e2cc81376db507d51b00b72f1af033c154a2aba07c794dcd26ae2203f3505d44a14f3d57cd45b2dbb2942b
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.50.2":
version: 1.50.2
resolution: "@algolia/ingestion@npm:1.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/4b242faad10bf5f3ea702da959972523c063a33e4f451abebb5a93cb3eb06e3b2ecf8f9d31c01f6883b9a81b0a4031ef52fafa4de195544220fd80c182db7e0a
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.50.2":
version: 1.50.2
resolution: "@algolia/monitoring@npm:1.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/b047e5396e2cb5109957489b05b219ad951fb800a1a451aae2c8bf29dad00720f4514b979969bb1960d4ad4ed0ac58e9ffdf9ecfe978fd3afd7b46ac7773d1cc
languageName: node
linkType: hard
"@algolia/recommend@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/recommend@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
"@algolia/requester-browser-xhr": "npm:5.50.2"
"@algolia/requester-fetch": "npm:5.50.2"
"@algolia/requester-node-http": "npm:5.50.2"
checksum: 10c0/097f312cb375158b16486eaaa67395e3c1695bc8afa502c198b34bfe173a3d12d8f34c71297f0e9fb66af81503607220f1dfc048f3861e58340601c01ccd7bfa
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/requester-browser-xhr@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
checksum: 10c0/0bfdd9b40867ac0505f3ba2a4e8f74c0b06bf3d52d2c40f3eb5507049990abb43b7722397d02016f2123ee6594a1c454e430c4585a04ac9fccfd9e9c88005f59
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/requester-fetch@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
checksum: 10c0/582d8ad386ff22e05198ffb9ad44b20030248b8005f5928377b66495c1134cfdab22a64ca780a5b618f0fd2c0a59e5eab292f13bf93363ddb2fb6c0cb0d4a0ca
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.50.2":
version: 5.50.2
resolution: "@algolia/requester-node-http@npm:5.50.2"
dependencies:
"@algolia/client-common": "npm:5.50.2"
checksum: 10c0/f8ec8f96e181f2b9b3334d1e5d5544ec7ac1f8e5d06c9343f361e48be576c4264599d14413e02ec06901082102107ba6308e453c7818544a2eb66827e02dca55
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^1.1.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: "npm:^1.3.0"
tinyexec: "npm:^1.0.1"
checksum: 10c0/140d5994c76fd3d0e824c88f1ce91b3370e8066a8bc2f5729ae133bf768caa239f7915e29c78f239b7ead253113ace51293e95127fafe2b786b88eb615b3be47
languageName: node
linkType: hard
"@azu/format-text@npm:^1.0.1, @azu/format-text@npm:^1.0.2":
version: 1.0.2
resolution: "@azu/format-text@npm:1.0.2"
checksum: 10c0/11c5e6f8fd4fa2493f37d744c3e6d9739b9a1a947a68bece62bd887c444589147e219919a7d63f19e7c73768a856d6a4d1c032cb24b1e45e58f0c9627f70dbd3
languageName: node
linkType: hard
"@azu/style-format@npm:^1.0.1":
version: 1.0.1
resolution: "@azu/style-format@npm:1.0.1"
dependencies:
"@azu/format-text": "npm:^1.0.1"
checksum: 10c0/6907402934d1477cc2ae85ccac2130ccdd1ef3d0100964639929b18afe2d7d2a232bbf2261c71e325a25788db7922547391efcca24109a81d1a1682d5f0ccb4b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.26.2":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.28.5"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@babel/parser@npm:^7.27.0, @babel/parser@npm:^7.29.2":
version: 7.29.2
resolution: "@babel/parser@npm:7.29.2"
dependencies:
"@babel/types": "npm:^7.29.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/e5a4e69e3ac7acdde995f37cf299a68458cfe7009dff66bd0962fd04920bef287201169006af365af479c08ff216bfefbb595e331f87f6ae7283858aebbc3317
languageName: node
linkType: hard
"@babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.28.5"
checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^6.0.0":
version: 6.0.4
resolution: "@braintree/sanitize-url@npm:6.0.4"
checksum: 10c0/5d7bac57f3e49931db83f65aaa4fd22f96caa323bf0c7fcf6851fdbed179a8cf29eaa5dd372d340fc51ca5f44345ea5bc0196b36c8b16179888a7c9044313420
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^7.1.2":
version: 7.1.2
resolution: "@braintree/sanitize-url@npm:7.1.2"
checksum: 10c0/62f2aa0cf58626e3880b2dc1025c42064b4639abd157ae4e1c35f4c2f5031e9273772046a423979845069c814e27ff818e8e669280dc53585e6f033d5b7a59cb
languageName: node
linkType: hard
"@cacheable/memory@npm:^2.0.8":
version: 2.0.8
resolution: "@cacheable/memory@npm:2.0.8"
dependencies:
"@cacheable/utils": "npm:^2.4.0"
"@keyv/bigmap": "npm:^1.3.1"
hookified: "npm:^1.15.1"
keyv: "npm:^5.6.0"
checksum: 10c0/d12ec24e1257cda849329f629a8d0508e8f220827e2c198936f5554899df54401861b775a03f24ab51f01bacfb798cc03d3a82848adcd88d662ea8f22e802057
languageName: node
linkType: hard
"@cacheable/utils@npm:^2.4.0":
version: 2.4.1
resolution: "@cacheable/utils@npm:2.4.1"
dependencies:
hashery: "npm:^1.5.1"
keyv: "npm:^5.6.0"
checksum: 10c0/ca2af47636ed27ab26dfedf12add639f42b90c289ecd5d816fb7a299074d9df463751745a83abfb81f6236a70c8ea40f0902e984869638a5ca3a7274e203f987
languageName: node
linkType: hard
"@chevrotain/types@npm:~11.1.2":
version: 11.1.2
resolution: "@chevrotain/types@npm:11.1.2"
checksum: 10c0/c0c4679a3d407df34e18d5adfa7ac599b4a2bfddbf68da6e43678b9b3e16ab911de7766b37b9fc466261c3dead3db1b620e2e344f800fa9f0f381720475eda8f
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-bundled-dicts@npm:9.7.0"
dependencies:
"@cspell/dict-ada": "npm:^4.1.1"
"@cspell/dict-al": "npm:^1.1.1"
"@cspell/dict-aws": "npm:^4.0.17"
"@cspell/dict-bash": "npm:^4.2.2"
"@cspell/dict-companies": "npm:^3.2.10"
"@cspell/dict-cpp": "npm:^7.0.2"
"@cspell/dict-cryptocurrencies": "npm:^5.0.5"
"@cspell/dict-csharp": "npm:^4.0.8"
"@cspell/dict-css": "npm:^4.0.19"
"@cspell/dict-dart": "npm:^2.3.2"
"@cspell/dict-data-science": "npm:^2.0.13"
"@cspell/dict-django": "npm:^4.1.6"
"@cspell/dict-docker": "npm:^1.1.17"
"@cspell/dict-dotnet": "npm:^5.0.12"
"@cspell/dict-elixir": "npm:^4.0.8"
"@cspell/dict-en-common-misspellings": "npm:^2.1.12"
"@cspell/dict-en-gb-mit": "npm:^3.1.18"
"@cspell/dict-en_us": "npm:^4.4.29"
"@cspell/dict-filetypes": "npm:^3.0.15"
"@cspell/dict-flutter": "npm:^1.1.1"
"@cspell/dict-fonts": "npm:^4.0.5"
"@cspell/dict-fsharp": "npm:^1.1.1"
"@cspell/dict-fullstack": "npm:^3.2.8"
"@cspell/dict-gaming-terms": "npm:^1.1.2"
"@cspell/dict-git": "npm:^3.1.0"
"@cspell/dict-golang": "npm:^6.0.26"
"@cspell/dict-google": "npm:^1.0.9"
"@cspell/dict-haskell": "npm:^4.0.6"
"@cspell/dict-html": "npm:^4.0.14"
"@cspell/dict-html-symbol-entities": "npm:^4.0.5"
"@cspell/dict-java": "npm:^5.0.12"
"@cspell/dict-julia": "npm:^1.1.1"
"@cspell/dict-k8s": "npm:^1.0.12"
"@cspell/dict-kotlin": "npm:^1.1.1"
"@cspell/dict-latex": "npm:^5.0.0"
"@cspell/dict-lorem-ipsum": "npm:^4.0.5"
"@cspell/dict-lua": "npm:^4.0.8"
"@cspell/dict-makefile": "npm:^1.0.5"
"@cspell/dict-markdown": "npm:^2.0.14"
"@cspell/dict-monkeyc": "npm:^1.0.12"
"@cspell/dict-node": "npm:^5.0.9"
"@cspell/dict-npm": "npm:^5.2.34"
"@cspell/dict-php": "npm:^4.1.1"
"@cspell/dict-powershell": "npm:^5.0.15"
"@cspell/dict-public-licenses": "npm:^2.0.15"
"@cspell/dict-python": "npm:^4.2.25"
"@cspell/dict-r": "npm:^2.1.1"
"@cspell/dict-ruby": "npm:^5.1.0"
"@cspell/dict-rust": "npm:^4.1.2"
"@cspell/dict-scala": "npm:^5.0.9"
"@cspell/dict-shell": "npm:^1.1.2"
"@cspell/dict-software-terms": "npm:^5.1.21"
"@cspell/dict-sql": "npm:^2.2.1"
"@cspell/dict-svelte": "npm:^1.0.7"
"@cspell/dict-swift": "npm:^2.0.6"
"@cspell/dict-terraform": "npm:^1.1.3"
"@cspell/dict-typescript": "npm:^3.2.3"
"@cspell/dict-vue": "npm:^3.0.5"
"@cspell/dict-zig": "npm:^1.0.0"
checksum: 10c0/dc55309e91a0e464de134dfe3ebcef8f9d016b274d4974d127a90d259b8ef45537818208bfb71fb9587edbddac353b9acc537e5330fbf93b9ec9efb38d022b3c
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-json-reporter@npm:9.7.0"
dependencies:
"@cspell/cspell-types": "npm:9.7.0"
checksum: 10c0/bba3021cc5415fe2ffb78c37e6044af217c9babd0af0394e93c4aed0d8551455b737e03bce1683fbedee21e25f5b30ab6ec51701206943ef41af5fbe5b89f60d
languageName: node
linkType: hard
"@cspell/cspell-performance-monitor@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-performance-monitor@npm:9.7.0"
checksum: 10c0/1919b3a3894484c7fe9962d223b5d905ea08cbdc9209b2777c992643e0ad831e2cd4eb2de22f2fc363e1be20d44d7dc31048f7cbfdc6cd99a675530bca61cdd6
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-pipe@npm:9.7.0"
checksum: 10c0/7ec47493be7a2787dc0d9c44c0a9b37b909630fc57726acd088183b9d496a3f5067b2659c856a95230630d99bce6f90531bf4db8204a3a5e07037128f23bf809
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-resolver@npm:9.7.0"
dependencies:
global-directory: "npm:^5.0.0"
checksum: 10c0/d03c6f4d1ea532adc684cfe023af2a5d7f5b917f53372d0a5404b0eb09a634511e8637bba695f70e481a410838d978a1e51aea504b476461b0a226ce3b9751f9
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-service-bus@npm:9.7.0"
checksum: 10c0/47e5ced1124b142c61edf3d6f52a8e7734b970580d9f715da7c505e368ae5c0e6eaa8a013dbeb3106f851cc5c3aa76e8e0f4c4b1d390feaad48f2bd013047874
languageName: node
linkType: hard
"@cspell/cspell-types@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-types@npm:9.7.0"
checksum: 10c0/63af2d2d38e044fcc31f14eea9385d718c8d67aab9b46b2c566a83c1be62c99a313b858edd5a77fb6f21d1b7cd7ec8fd1324aba62905d7519b212d51ccbae158
languageName: node
linkType: hard
"@cspell/cspell-worker@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/cspell-worker@npm:9.7.0"
dependencies:
cspell-lib: "npm:9.7.0"
checksum: 10c0/86f5b23089979b828dacee2679063267b030ce342874a0c2cec9566fa6243260cd91c831f0eb38956acfd5d4c346d7cb8d2a449b044552d22237ccb4476c6b7e
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-ada@npm:4.1.1"
checksum: 10c0/4943399b5dd7dbed220b92ddcc6d3c55d0b00f141b52a39f35b9235e8f8cad8c0e63cab6af3f8f9e6ea669e672799215e50320059cae972fcd34174f4cbf38c7
languageName: node
linkType: hard
"@cspell/dict-al@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-al@npm:1.1.1"
checksum: 10c0/a6bd4d57a3027f91a44bd37f29f449beb684032cc88ba742a7b1576a3fac3f9d93c57b0a3b45eea732efb50c322ce2b8de386e1b15f605372ed312d4db6bc292
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.17":
version: 4.0.17
resolution: "@cspell/dict-aws@npm:4.0.17"
checksum: 10c0/d421a78aee8cc3db78a0bdffad2ceda9ca8e476498398809f2975bae9f03233df1112e713f2d699239600a9019d5e8f11ca60dfcb49fdce56815d5e794285c7b
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.2.2":
version: 4.2.2
resolution: "@cspell/dict-bash@npm:4.2.2"
dependencies:
"@cspell/dict-shell": "npm:1.1.2"
checksum: 10c0/51b0552319cf190ab75841e7ea5d8919ecb2f165d8c1b9d3b26c90c5e30b9769e6a21212194b20db64a03a4c3f084d17be1f9957ecd733e90b2770e011d0e89b
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.2.10":
version: 3.2.11
resolution: "@cspell/dict-companies@npm:3.2.11"
checksum: 10c0/9aa941967bbc48e171cb862b250d274fdc4234449a96f146b4814b0927897af827a056adb244ab110ca9a4ea5837819a4031eef2c7de0f0791a4d30a408b16a6
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^7.0.2":
version: 7.0.2
resolution: "@cspell/dict-cpp@npm:7.0.2"
checksum: 10c0/a2926a6e896f04aa795edcd5fe3ac72cf1e05b97719946388cf31cf91737cfee816ffdd220e1960af60d7049daa37262787e76534afa5479fe10691af096b54c
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.5":
version: 5.0.5
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.5"
checksum: 10c0/d28c05f26d500bf05d08d725b43b5c1d740177b31ebdfcd03ae9929988b7878c3a6c94b99d8e355a5b20201f8af4b71713fb7f417548b69d621129ad6863be51
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-csharp@npm:4.0.8"
checksum: 10c0/b55dbe323b973e0e98d76a17205b103fbb52dec01d45d55aa06a14f1acc6c8bec259f7923bbe6138d1af2b11463969d920214ce0fc6e89eaf6fa08f86b10184e
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.19":
version: 4.1.2
resolution: "@cspell/dict-css@npm:4.1.2"
checksum: 10c0/55d376c7a4cb879191281dcd1b2951488187d0ce9b50e94b120c2e6dabf47e1d12d243a94238e15245b70c13b3647b19bc28fdd9c778a32315b120cfb10ceb78
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.3.2":
version: 2.3.2
resolution: "@cspell/dict-dart@npm:2.3.2"
checksum: 10c0/1c0842ff09785aaf2bc2e68f4c05ec5e20331f3fce1503ef5a87305feb223f6e23404c68e4991bb90c6473825a7f8cd65b3ed86eef0d8032d43b13558ddb1753
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.13":
version: 2.0.13
resolution: "@cspell/dict-data-science@npm:2.0.13"
checksum: 10c0/63d8291ef0e62defbf4b98e58bd1039747efdb6348fa64c128a01a0b28b93ce1724e878e945b1ca7d8f568a49446a46ed65ef71531130c7b1b1fddb5328a1a0e
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.14":
version: 2.0.14
resolution: "@cspell/dict-data-science@npm:2.0.14"
checksum: 10c0/de373b506465b6433a4321289dd9e5d338cfde6b42c5e306e40b7a4ab11f32860e8ec79a887d962c09c7f36794852e4ad6f7c05541ab817ee5f33e063bd63287
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.6":
version: 4.1.6
resolution: "@cspell/dict-django@npm:4.1.6"
checksum: 10c0/76f71cba5a692df48554a3cd7cff7e27df85ab826e2cddf0594c21062e5c96de3090508314659a9ec708913a4afd61afb0f044ae8c41a1ec573583d516056f2d
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.17":
version: 1.1.17
resolution: "@cspell/dict-docker@npm:1.1.17"
checksum: 10c0/1aaa4ffba7842b9044d1c4c6ae704907e6be3d8407c7feb986b3b7efa2e0139fc2ea3c3ad955d7ba4c92b5f577e05648ffc00a2a27b76d2bb93acde431452e58
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.12":
version: 5.0.13
resolution: "@cspell/dict-dotnet@npm:5.0.13"
checksum: 10c0/b34792ea2b1258f4e215487c4ff61de2fb3c9c6e0381fec03c4fb8132f2decd2b7b73a6450c507e8a3211e616282a3ace94e7d99363503e0efa4ef2cb6f2fcca
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-elixir@npm:4.0.8"
checksum: 10c0/fe63aace353de8a134102764a58344fe755f27276fddcdf7e858d250ee13732a58f37f940c13bae7080fc286cb5b327ed168d201758da49243a1e45f42512c5f
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.1.12":
version: 2.1.12
resolution: "@cspell/dict-en-common-misspellings@npm:2.1.12"
checksum: 10c0/5b7acd175ba76f164dcb5f5b7e910511dbd005bbab77fb5ae082603b01112d352af84bcd8d3ddef020db187b51056c4ce6a02dab8aebfcf0aa0dc416a66729a5
languageName: node
linkType: hard
"@cspell/dict-en-gb-mit@npm:^3.1.18":
version: 3.1.24
resolution: "@cspell/dict-en-gb-mit@npm:3.1.24"
checksum: 10c0/b7b329e80bf12d61bc7f5a1081bfcf403f653db01c778c0056f653ca8f2e01252c636d55591dc2674a38bbbcd19ae66b4d031afd1dcad48bc1910f4b41a00cf8
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.4.29":
version: 4.4.35
resolution: "@cspell/dict-en_us@npm:4.4.35"
checksum: 10c0/655debb38d2960cff7c729fb2985c97ba832715913ef48e8ead59f6d67220fc032f1adaef45e93b4d14590e1fda73f5a08f76296e6f8f0503638c4b18ee4d356
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.15":
version: 3.0.18
resolution: "@cspell/dict-filetypes@npm:3.0.18"
checksum: 10c0/b7a223eacef51770ed844b48b64d92b05b41a0a2ecbb6856ba8758fe8e444ca5f4252ecc511ac00ec1d12c1b12aef1198865f612cceaaf6d304c92b049a739cb
languageName: node
linkType: hard
"@cspell/dict-flutter@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-flutter@npm:1.1.1"
checksum: 10c0/77e4533e6e7a38261ba2d744ca0c3aabb78f79b1ba6a2fde32169e475e5f940a526503097e520807155a0d8d0c16db346968873a32f1e99393be687da505e1b4
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.5":
version: 4.0.6
resolution: "@cspell/dict-fonts@npm:4.0.6"
checksum: 10c0/73095a5bb3ec6ca24c7f01298b8344646005c0c05857b24ae106d7f795acf0b7107f4aaa677224c899d7aad7d0383f9f82dddd11a6b4cf3b26e3e5166b222674
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-fsharp@npm:1.1.1"
checksum: 10c0/919de1f2a29d646781cb3114985f2730cc5ee0a253dc03c225c4430e73659e1189891fa7fa09c43179437e7386f4094e41d23d754b0a99a342344986094e2846
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.2.8":
version: 3.2.9
resolution: "@cspell/dict-fullstack@npm:3.2.9"
checksum: 10c0/a13d08099d1048797fe37d2a654846ff5086193bd29d57b62423ebc74f6c08c9f3b52c49f08b73d6bd09cdb393b70351f85f151893a20a5f8c858e474dd42e75
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.1.2":
version: 1.1.2
resolution: "@cspell/dict-gaming-terms@npm:1.1.2"
checksum: 10c0/eba9c672d352e54011704d97f5467158c02c238fa1639e64177ee1cd0d2c52deb57f0c9ae5f3c64d1742fd6a479515d0d8de5d1fc4ef8c5db58affb9947c90ea
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.1.0":
version: 3.1.0
resolution: "@cspell/dict-git@npm:3.1.0"
checksum: 10c0/161a9bd35f44173993c84ec2bc394c5fab4fe7d69070daa170be4922e295d60a3e34cecb04869a8b685b761c7ace83241ff4d60db93d2850368d769733a58de9
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.26":
version: 6.0.26
resolution: "@cspell/dict-golang@npm:6.0.26"
checksum: 10c0/514c54dc72620975e552ad91ecc8d98143611224e7fe3606fc6041f3248e9f9457be1f25027ff1d9bc2961459c5759dff3a01251054aab83bbcc9f927648b755
languageName: node
linkType: hard
"@cspell/dict-google@npm:^1.0.9":
version: 1.0.9
resolution: "@cspell/dict-google@npm:1.0.9"
checksum: 10c0/f7e10353f97910a884f1d5ea4e60d4dd5a475ab27b669e97ade88669b1726eb4ed7c4f2ae5e3a227da77a15433ca3b6faba8d8700ff431b31c812d3c5329c8e4
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-haskell@npm:4.0.6"
checksum: 10c0/cb8a179e26190ca333789dcbd1dae3c03ec28a8d4dd99756e770c9cf837e66a78f291e6db0d8ea7763cdbb968b0369998c593978a3bb52a9b38aaa4ce8746b3a
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.5"
checksum: 10c0/8278b8cca06e6d3654e81b1809227ff1d64e053f79308966ea601194ce51fa3a385dde6844509b26223de70d034e60a85c604a729f021c0de63f8a5e6f29b0ce
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.14":
version: 4.0.15
resolution: "@cspell/dict-html@npm:4.0.15"
checksum: 10c0/0812ae7f11ea2160ab4df8039b0f5af023c102d8806dc6ea9b8a90f96cc564b00dad167c3eb1a6685a244980ac203cc168438b352c84918a215147ef632aca10
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.12":
version: 5.0.12
resolution: "@cspell/dict-java@npm:5.0.12"
checksum: 10c0/aba65f3762350c7e9381f5dc174d3cd1292379eef6b426e1561aeca3476c63268a10b99cfcd7b8cd15bbaef8dfa7abb914a3f34f211c504064a22409a1441923
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-julia@npm:1.1.1"
checksum: 10c0/6dbc4c17bbee1a95491bf77b9438924852e9393699ac24e02a0b6846fdaf00a6ed5baafa94aa91a6f50016c3ab43c399ac814afa6504518da7e2f26a97ff3d0e
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.12":
version: 1.0.12
resolution: "@cspell/dict-k8s@npm:1.0.12"
checksum: 10c0/53ca1b0d86f8432fb9548982edfde402985a1dc7c0b778374968a9b657e53bace638ef188551c0847588e2bf6ad147d2cd0ee92d5a37b71b0791e63971bfd2d1
languageName: node
linkType: hard
"@cspell/dict-kotlin@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-kotlin@npm:1.1.1"
checksum: 10c0/45d0efc3701007b87e562d434eae8b05a16f730b28dd6d3ec237014d1b87dfa49075b57fad1acdb7b7939c64777f5238b991379debd9a45d91a3193a1e3481fc
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^5.0.0":
version: 5.1.0
resolution: "@cspell/dict-latex@npm:5.1.0"
checksum: 10c0/e806722c0ff1581a069245cb297b954f8e24fb6e1942f2547b0fee7783fc9b59d08fe2d2c7ddf3f7f9eef60d783ac9a4290f37956b9723b13e21c9422d7962b0
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.5"
checksum: 10c0/dd28957e60f4f68baec72fb69196394b9993fcadadcf018c58de75bf89434e4cd49e694cd33dccfcd18d4f65e489f37d284044ef75615613369e0a72dd2ec974
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-lua@npm:4.0.8"
checksum: 10c0/24dd577a75bcc5fcd194a337fdcb7a443f239b1b22f7392787ed8e9fd82f03f14b524a5f49a394c2d372ba493ab6cb3aebe7219da69e4565404b11cc29a909a3
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-makefile@npm:1.0.5"
checksum: 10c0/ee6ae5472493cb5fde7326c4ecb9e036b8a3cd348c3c06c2cbe5ce420a13776bd8f6fb0709f2f5bb62f745ea4d1fa63d59e533fbce13bde07743867f77818e86
languageName: node
linkType: hard
"@cspell/dict-markdown@npm:^2.0.14":
version: 2.0.17
resolution: "@cspell/dict-markdown@npm:2.0.17"
peerDependencies:
"@cspell/dict-css": ^4.1.2
"@cspell/dict-html": ^4.0.15
"@cspell/dict-html-symbol-entities": ^4.0.5
"@cspell/dict-typescript": ^3.2.3
checksum: 10c0/d49bb1523a40e42d4185a349bbce7a93e87634e1e7a75694ffc666cbeb81d0eb1395150cbcd65bf1b1109f224cdee9bf9fadbf8c3f1b9ea93daaffe65e705083
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.0.12":
version: 1.0.12
resolution: "@cspell/dict-monkeyc@npm:1.0.12"
checksum: 10c0/97250565f808cbf37d66f2585db7accf449bc1836c72b3fac0449896fe17b8dfa3e5dc15f27f4e5cbe61dc7c24e9b17c1d7f475c934cd7c68b1aa597386a5bc0
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-node@npm:5.0.9"
checksum: 10c0/129fa7cd204e26769829912a8a64225af45b5cf0438f597329966e1c3db5ffca04b4c426d9cee594f271d14500e11319bc7ed371207cb18d73966000303e3072
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.2.34":
version: 5.2.41
resolution: "@cspell/dict-npm@npm:5.2.41"
checksum: 10c0/997b4f4ae46f1e9f212da4772f32de5f3595600e53c12315916a2e1fcc6cb92cc8059c862da3cd48b27a39bffc381482c1ead5eccf009eb5e66f9c9cce263641
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-php@npm:4.1.1"
checksum: 10c0/e11e2a3799b2c9ea590ce8b2e69838965f3d8f83020961720afde9c9c57b6ccdb013d54346900766ccf422c548c916dd2aaa890563d36cf12498ad3ddfe67d7a
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.15":
version: 5.0.15
resolution: "@cspell/dict-powershell@npm:5.0.15"
checksum: 10c0/be9219dcaaa85ce3c8c51330cab3464b3dc3ea333ef96e98cca16375f80a807ee590f41fc0630e97460292f6a73d4ccb0d7c44b032a7c2fdaa168fe951631797
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.15":
version: 2.0.16
resolution: "@cspell/dict-public-licenses@npm:2.0.16"
checksum: 10c0/473a29eb6fa8cf0d64fffcac0a686c492777dca9a0d6be4c890bcb0e98cb2f01a4afbbfcb88e903a5895593567ec6f2646097f07b0453b689fd70272088aa2a0
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.2.25":
version: 4.2.27
resolution: "@cspell/dict-python@npm:4.2.27"
dependencies:
"@cspell/dict-data-science": "npm:^2.0.14"
checksum: 10c0/41f3cee064998376e149dbb65fae24a203d69258c3035f501aa0b72bd4143b4bddf15d39c14daf58e84d68a4d788f8f96327c0cfb31203019d79878b608fa7da
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.1.1":
version: 2.1.1
resolution: "@cspell/dict-r@npm:2.1.1"
checksum: 10c0/ff36a7f8669dde33e09d824de487bbab584c0105c61c97f38375835664a42566874051891d8ede7ac134bab4bd84c12bd333800d9c548386086ac496a87fd576
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.1.0":
version: 5.1.1
resolution: "@cspell/dict-ruby@npm:5.1.1"
checksum: 10c0/ec23c736a4e5588c8c55a44b5c31eb7238a199ac4f2a84fd9aa6558a80f6416c42d7eaa7337e30590b66bbaac5523b6d64519f7e33eadc4cf1d878f20bb86fc0
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.1.2":
version: 4.1.2
resolution: "@cspell/dict-rust@npm:4.1.2"
checksum: 10c0/ccee1ef1652f8855f2fee1c5b7c173eda9660f0c7f1eadb550ab2e4e8e2ee2e31eee903e294a32052996fed4045907b0a53383f6fe74d28a04de94a4ac69a29d
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-scala@npm:5.0.9"
checksum: 10c0/f6b214f4cebcb68a270f4e5cb4163fdd59b58afb28894ac6f523025f411792454c6645c0c616d00af10ea541d5fbd25d34ad7986ddef1bb2181003e39140abbe
languageName: node
linkType: hard
"@cspell/dict-shell@npm:1.1.2, @cspell/dict-shell@npm:^1.1.2":
version: 1.1.2
resolution: "@cspell/dict-shell@npm:1.1.2"
checksum: 10c0/5c05d24e6944abee63f6726630967691d175376152c98f8ed82a149d8f2065b507dd1fbbb542b8df01c19280b23737ed786c9c527d6a3b3386f525ec6478eafc
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^5.1.21":
version: 5.2.2
resolution: "@cspell/dict-software-terms@npm:5.2.2"
checksum: 10c0/eca6c5ee91a21c76b9d735c5777521287c896bd03e448c8512b61b75e926a269aef5e03dd0ea3cd2b8291ea56e6f140742f4a4826045603fffdeaba228272557
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.2.1":
version: 2.2.1
resolution: "@cspell/dict-sql@npm:2.2.1"
checksum: 10c0/0e4e763a81669226cd54888546b0cffb12b66be0f945e97c1ea11638a3e4a074408bafeac10a7cf455781a0e5d55b41f5b0ff6fb0d58ae0b043dc1f37e792d51
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.7":
version: 1.0.7
resolution: "@cspell/dict-svelte@npm:1.0.7"
checksum: 10c0/08aaf8818c6626bb330359d9682893daade5884105421db6916636a54423f043b706d49a3ad0b07fe05e7751753f9fa8dda1ac6c11662d6f16741c87f30d0c2a
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.6":
version: 2.0.6
resolution: "@cspell/dict-swift@npm:2.0.6"
checksum: 10c0/ef8e5a6a63dd29055fd614a4d29e50b81fb88db166bb239a15279583def70786f6f3eb63e0071f771efe35b94739d22e5d48ccb4542dd0f217b71229f93a6377
languageName: node
linkType: hard
"@cspell/dict-terraform@npm:^1.1.3":
version: 1.1.3
resolution: "@cspell/dict-terraform@npm:1.1.3"
checksum: 10c0/3964295ef52ab787d42360c48f312614034181f3b63c9a567a724c07af35872d6e2c96f765f2f9ba87e8a40451961844307459c40e066506b549cd55e1746ece
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.2.3":
version: 3.2.3
resolution: "@cspell/dict-typescript@npm:3.2.3"
checksum: 10c0/b4bb34efa2f3ce120cf5a7d4aab4a49ffcb2aaa59c5d81aa5e2550e06d61738399e015c9e1447c1beb9fadbf6b084523be696ae9d5f9d3b63ea6f6189d280316
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.5":
version: 3.0.5
resolution: "@cspell/dict-vue@npm:3.0.5"
checksum: 10c0/da4a1778095c8f56953d1f1934f41369e4e5c9b83e0862cd37782aae875820e8404f8dd3cd4cb2ea5be46370dd1698966f69b50121c75a50b8652414dc26f2cc
languageName: node
linkType: hard
"@cspell/dict-zig@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-zig@npm:1.0.0"
checksum: 10c0/bc302e117002c9d6ebfb5d3e085d9a6f2e65d63440deb9f137dce1d8a75650593f5b83d47488ab394cfbc173be032661dc36bc74c85b9826f60a7d2fc7955ffc
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/dynamic-import@npm:9.7.0"
dependencies:
"@cspell/url": "npm:9.7.0"
import-meta-resolve: "npm:^4.2.0"
checksum: 10c0/30f718b789e580fedb414fd65522a69ec7d96af42d063cfcb6b527b737313b4dc30e1dc0c5578ba202ed761073364c935cf24d6e8babdb192e602f101dab44db
languageName: node
linkType: hard
"@cspell/filetypes@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/filetypes@npm:9.7.0"
checksum: 10c0/128b954c56864e4a2c5bae6a325beef6939739ce3ab020172f7be5a1bec5efe25277ad024fe0fb4a8f1becdf58579f620113aff04b59dd695916ce9aeabff4c3
languageName: node
linkType: hard
"@cspell/rpc@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/rpc@npm:9.7.0"
checksum: 10c0/09424bcea49b9267b5f79551a51a9c242318ff7304fca4b0898177256d1372ecd39587f7c8bf8438f05ee31b3d2176a3d9125cb26dd8928a4752523433f12291
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/strong-weak-map@npm:9.7.0"
checksum: 10c0/a1e3e4d228dc41a5ed59f698f932ac16ab1d6e9dad0a3eef9f73f310d391dfd2287ded7c3a4a10c53f0461c3765fe442d4a6a091c8a0606f36bd440c264e8a2d
languageName: node
linkType: hard
"@cspell/url@npm:9.7.0":
version: 9.7.0
resolution: "@cspell/url@npm:9.7.0"
checksum: 10c0/c11dff3b3a8a78c7022e8e6d88abbd49a0f9d29ffbd185008f224286f2fdc8490a3d35c8ea07fc0273b422256eb10186881d0bcb9c51dee641f09b1355984b88
languageName: node
linkType: hard
"@d-zero/cspell-config@npm:5.1.0":
version: 5.1.0
resolution: "@d-zero/cspell-config@npm:5.1.0"
dependencies:
cspell: "npm:9.7.0"
checksum: 10c0/143c407192c0fd134cc71946799c4922d0570bdd436279965d9ab40cc004e4fca72fcb23a9eca02e48d4dc23fe0dbf560b3cfb60f166d7d9fa64cc9ff2b0daa9
languageName: node
linkType: hard
"@d-zero/eslint-config@npm:5.0.0":
version: 5.0.0
resolution: "@d-zero/eslint-config@npm:5.0.0"
dependencies:
"@eslint/js": "npm:9.39.2"
eslint: "npm:9.39.2"
eslint-plugin-eslint-comments: "npm:3.2.0"
eslint-plugin-import-x: "npm:4.16.1"
eslint-plugin-jsdoc: "npm:61.5.0"
eslint-plugin-regexp: "npm:2.10.0"
eslint-plugin-sort-class-members: "npm:1.21.0"
eslint-plugin-unicorn: "npm:62.0.0"
globals: "npm:17.0.0"
typescript-eslint: "npm:8.51.0"
checksum: 10c0/682e278e8b09ab2edc90da6f1fcd7a81c24eb937afc8ebde6ef3bc2a4ce4121ca86ac6d48152b8b067187e18d0b53cdf02ffa805c255069085fcb6d4b7842a88
languageName: node
linkType: hard
"@d-zero/frontend-guidelines@workspace:.":
version: 0.0.0-use.local
resolution: "@d-zero/frontend-guidelines@workspace:."
dependencies:
"@d-zero/cspell-config": "npm:5.1.0"
"@d-zero/eslint-config": "npm:5.0.0"
"@d-zero/lint-staged-config": "npm:5.1.0"
"@d-zero/prettier-config": "npm:5.1.0"
"@d-zero/textlint-config": "npm:5.1.0"
"@d-zero/tsconfig": "npm:0.5.0"
mermaid: "npm:11.16.0"
npm-run-all2: "npm:8.0.4"
typescript: "npm:5.9.3"
vitepress: "npm:1.6.4"
vitepress-plugin-mermaid: "npm:2.0.17"
languageName: unknown
linkType: soft
"@d-zero/lint-staged-config@npm:5.1.0":
version: 5.1.0
resolution: "@d-zero/lint-staged-config@npm:5.1.0"
dependencies:
lint-staged: "npm:16.3.1"
checksum: 10c0/d8901a0518d74bc7e42c1ec3f2a2aa94a012020954bc3dad43dd09ac7cd86948cf024fc5855bbb6331012fd5c8b0a4076986ffe5792a9c0bc37af3ac917c049b
languageName: node
linkType: hard
"@d-zero/prettier-config@npm:5.1.0":
version: 5.1.0
resolution: "@d-zero/prettier-config@npm:5.1.0"
dependencies:
"@prettier/plugin-pug": "npm:>=3.0.0"
prettier: "npm:3.8.1"
dependenciesMeta:
"@prettier/plugin-pug":
optional: true
checksum: 10c0/f8db122bab9c1548864d3d39f263813b0bd949dac0b249c2328e0e806662cacf55456d58c34e251ba3b5ef58a9af003472f17aeb140ae5e88032c49a10f21912
languageName: node
linkType: hard
"@d-zero/textlint-config@npm:5.1.0":
version: 5.1.0
resolution: "@d-zero/textlint-config@npm:5.1.0"
dependencies:
textlint: "npm:15.5.2"
textlint-plugin-html: "npm:1.0.1"
textlint-rule-preset-ja-spacing: "npm:2.4.3"
textlint-rule-preset-japanese: "npm:10.0.4"
textlint-rule-preset-jtf-style: "npm:3.0.3"
checksum: 10c0/18a9f34175eb45ba6ee1560f3346ef64d57e328f2a4ecc32a16c98449cc4674110948e6ba8c6b243f1b17d781d63de792bb78cb2b5fc91649872f7f20bbf0597
languageName: node
linkType: hard
"@d-zero/tsconfig@npm:0.5.0":
version: 0.5.0
resolution: "@d-zero/tsconfig@npm:0.5.0"
dependencies:
"@tsconfig/node-lts": "npm:22.0.2"
"@tsconfig/recommended": "npm:1.0.10"
"@tsconfig/strictest": "npm:2.0.5"
checksum: 10c0/b2ec947353cbf7afbc82e4e4572e38d23ed91a67d19fc2add4a2ca3ff6ecabaa27566f1e9fe549c5c1cbd0a79bf54f6f4c860d31185d313cbea8fa923cb342c8
languageName: node
linkType: hard
"@docsearch/css@npm:3.8.2":