-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathyarn.lock
More file actions
13562 lines (12248 loc) · 475 KB
/
Copy pathyarn.lock
File metadata and controls
13562 lines (12248 loc) · 475 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@asamuzakjp/css-color@npm:^3.2.0":
version: 3.2.0
resolution: "@asamuzakjp/css-color@npm:3.2.0"
dependencies:
"@csstools/css-calc": "npm:^2.1.3"
"@csstools/css-color-parser": "npm:^3.0.9"
"@csstools/css-parser-algorithms": "npm:^3.0.4"
"@csstools/css-tokenizer": "npm:^3.0.3"
lru-cache: "npm:^10.4.3"
checksum: 10c0/a4bf1c831751b1fae46b437e37e8a38c0b5bd58d23230157ae210bd1e905fe509b89b7c243e63d1522d852668a6292ed730a160e21342772b4e5b7b8ea14c092
languageName: node
linkType: hard
"@astrojs/check@npm:^0.9.9":
version: 0.9.9
resolution: "@astrojs/check@npm:0.9.9"
dependencies:
"@astrojs/language-server": "npm:^2.16.7"
chokidar: "npm:^4.0.3"
kleur: "npm:^4.1.5"
yargs: "npm:^17.7.2"
peerDependencies:
typescript: ^5.0.0 || ^6.0.0
bin:
astro-check: bin/astro-check.js
checksum: 10c0/539dcb0f9d570ba5bebe3a2a44ebb0f31de1d9005f059049968cd1c10246d171139b025284e4b1e56e6460aeb75f2f3482be4fc35113c7601d78927a0c7b8a9a
languageName: node
linkType: hard
"@astrojs/compiler@npm:^2.13.1":
version: 2.13.1
resolution: "@astrojs/compiler@npm:2.13.1"
checksum: 10c0/83d85c30c8b1bd6d2382f1bc3d99126732838dc747e3a9defa55f726ccc2276c710e6af81bfb68d8fb17fde452c69cf0187cb1d2f8eb022764f1ccc4cf3a3db1
languageName: node
linkType: hard
"@astrojs/compiler@npm:^4.0.0":
version: 4.0.0
resolution: "@astrojs/compiler@npm:4.0.0"
checksum: 10c0/b82c245f88db7fe741128b2c057304866f42e87f296b2bf5962aa84e4bef1aa5c323a4fec8621db4f6ef7195cd0f90d9059c481f7d2708bbf983b481299dc5c0
languageName: node
linkType: hard
"@astrojs/internal-helpers@npm:0.10.0":
version: 0.10.0
resolution: "@astrojs/internal-helpers@npm:0.10.0"
dependencies:
"@types/hast": "npm:^3.0.4"
"@types/mdast": "npm:^4.0.4"
js-yaml: "npm:^4.1.1"
picomatch: "npm:^4.0.4"
retext-smartypants: "npm:^6.2.0"
shiki: "npm:^4.0.2"
smol-toml: "npm:^1.6.0"
unified: "npm:^11.0.5"
checksum: 10c0/e6729142b607b9aebaf36afeb045c5e137a4dd2a89051a5221c16c8d55379e6986e663c683ec524459dd3f35965027b94cbd02c9034bddc5a6acd0da21dfe5d4
languageName: node
linkType: hard
"@astrojs/internal-helpers@npm:0.9.1":
version: 0.9.1
resolution: "@astrojs/internal-helpers@npm:0.9.1"
dependencies:
picomatch: "npm:^4.0.4"
checksum: 10c0/013453dc19271fe7ccdd239d1962a8d67a9c0763083153fd4f0e33a946c2cace32f8f90052e14aac9b70ac3313e9724c348f82a4d6fc5bc1748bd5175b277fa0
languageName: node
linkType: hard
"@astrojs/language-server@npm:^2.16.7":
version: 2.16.10
resolution: "@astrojs/language-server@npm:2.16.10"
dependencies:
"@astrojs/compiler": "npm:^2.13.1"
"@astrojs/yaml2ts": "npm:^0.2.4"
"@jridgewell/sourcemap-codec": "npm:^1.5.5"
"@volar/kit": "npm:~2.4.28"
"@volar/language-core": "npm:~2.4.28"
"@volar/language-server": "npm:~2.4.28"
"@volar/language-service": "npm:~2.4.28"
muggle-string: "npm:^0.4.1"
tinyglobby: "npm:^0.2.16"
volar-service-css: "npm:0.0.70"
volar-service-emmet: "npm:0.0.70"
volar-service-html: "npm:0.0.70"
volar-service-prettier: "npm:0.0.70"
volar-service-typescript: "npm:0.0.70"
volar-service-typescript-twoslash-queries: "npm:0.0.70"
volar-service-yaml: "npm:0.0.70"
vscode-html-languageservice: "npm:^5.6.2"
vscode-uri: "npm:^3.1.0"
peerDependencies:
prettier: ^3.0.0
prettier-plugin-astro: ">=0.11.0"
peerDependenciesMeta:
prettier:
optional: true
prettier-plugin-astro:
optional: true
bin:
astro-ls: ./bin/nodeServer.js
checksum: 10c0/4f517467f676992d0e0eb3f2250ccef14e934ccb28c3ffe71612b7fbfd96a7087db5d6d76c4225a3e3e4bcf1fa458f942bd0352ca0da2722c5115be6b2f70601
languageName: node
linkType: hard
"@astrojs/markdown-remark@npm:7.1.2":
version: 7.1.2
resolution: "@astrojs/markdown-remark@npm:7.1.2"
dependencies:
"@astrojs/internal-helpers": "npm:0.9.1"
"@astrojs/prism": "npm:4.0.2"
github-slugger: "npm:^2.0.0"
hast-util-from-html: "npm:^2.0.3"
hast-util-to-text: "npm:^4.0.2"
js-yaml: "npm:^4.1.1"
mdast-util-definitions: "npm:^6.0.0"
rehype-raw: "npm:^7.0.0"
rehype-stringify: "npm:^10.0.1"
remark-gfm: "npm:^4.0.1"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.1.2"
remark-smartypants: "npm:^3.0.2"
retext-smartypants: "npm:^6.2.0"
shiki: "npm:^4.0.0"
smol-toml: "npm:^1.6.0"
unified: "npm:^11.0.5"
unist-util-remove-position: "npm:^5.0.0"
unist-util-visit: "npm:^5.1.0"
unist-util-visit-parents: "npm:^6.0.2"
vfile: "npm:^6.0.3"
checksum: 10c0/7ff2bc1ea71ec9a9760835f7b64a97d1b0e231c52d0edba09161639e01c312aec078160c9522fae0a5552b0c944bb1c6e4a7dfd1933ade992deabdaf0503bee9
languageName: node
linkType: hard
"@astrojs/markdown-remark@npm:7.2.0, @astrojs/markdown-remark@npm:^7.1.1, @astrojs/markdown-remark@npm:^7.2.0":
version: 7.2.0
resolution: "@astrojs/markdown-remark@npm:7.2.0"
dependencies:
"@astrojs/internal-helpers": "npm:0.10.0"
"@astrojs/prism": "npm:4.0.2"
github-slugger: "npm:^2.0.0"
hast-util-from-html: "npm:^2.0.3"
hast-util-to-text: "npm:^4.0.2"
mdast-util-definitions: "npm:^6.0.0"
rehype-raw: "npm:^7.0.0"
rehype-stringify: "npm:^10.0.1"
remark-gfm: "npm:^4.0.1"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.1.2"
remark-smartypants: "npm:^3.0.2"
unified: "npm:^11.0.5"
unist-util-remove-position: "npm:^5.0.0"
unist-util-visit: "npm:^5.1.0"
unist-util-visit-parents: "npm:^6.0.2"
vfile: "npm:^6.0.3"
checksum: 10c0/4332f03768733beff038ebdd68ae1d0207d0b66f1089bf98a42ed5f25614bfe5bfc6b8459acd7d639ebb03a914375b942d8253f80ee6141dcf2b305449a77938
languageName: node
linkType: hard
"@astrojs/mdx@npm:^5.0.4":
version: 5.0.6
resolution: "@astrojs/mdx@npm:5.0.6"
dependencies:
"@astrojs/markdown-remark": "npm:7.1.2"
"@mdx-js/mdx": "npm:^3.1.1"
acorn: "npm:^8.16.0"
es-module-lexer: "npm:^2.0.0"
estree-util-visit: "npm:^2.0.0"
hast-util-to-html: "npm:^9.0.5"
piccolore: "npm:^0.1.3"
rehype-raw: "npm:^7.0.0"
remark-gfm: "npm:^4.0.1"
remark-smartypants: "npm:^3.0.2"
source-map: "npm:^0.7.6"
unist-util-visit: "npm:^5.1.0"
vfile: "npm:^6.0.3"
peerDependencies:
astro: ^6.0.0
checksum: 10c0/dcf93d212173713ff2d4eb7efafac9dd6908c14907b73e52602ab097fda3d686e0d44661213c52ce7ca7cadd7828bf453486fee293ead181c3dd26dce2a3b485
languageName: node
linkType: hard
"@astrojs/prism@npm:4.0.2":
version: 4.0.2
resolution: "@astrojs/prism@npm:4.0.2"
dependencies:
prismjs: "npm:^1.30.0"
checksum: 10c0/23a5bc096f966c08be6f8e89adfe9287fd6d08eeb9c4ec7de8172280aa638f2684dcefc5f848f55e211ff63369abc4f0661698daa5e2de6078c8f269215a7101
languageName: node
linkType: hard
"@astrojs/react@npm:^5.0.6":
version: 5.0.6
resolution: "@astrojs/react@npm:5.0.6"
dependencies:
"@astrojs/internal-helpers": "npm:0.10.0"
"@vitejs/plugin-react": "npm:^5.2.0"
devalue: "npm:^5.6.4"
ultrahtml: "npm:^1.6.0"
vite: "npm:^7.3.2"
peerDependencies:
"@types/react": ^17.0.50 || ^18.0.21 || ^19.0.0
"@types/react-dom": ^17.0.17 || ^18.0.6 || ^19.0.0
react: ^17.0.2 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0
checksum: 10c0/a1cfea82053218f6bf7ccc5347c477d84a204dccec248ffdbfc34033d8f09eebff27326d4c06e018d4bad050d8a92c583e0db2875dc8a49af23df2dbfdcc2b00
languageName: node
linkType: hard
"@astrojs/sitemap@npm:^3.7.2":
version: 3.7.3
resolution: "@astrojs/sitemap@npm:3.7.3"
dependencies:
sitemap: "npm:^9.0.0"
stream-replace-string: "npm:^2.0.0"
zod: "npm:^4.3.6"
checksum: 10c0/99c0240586ea2ab1868903341a302ff4bd909b53c49c1c8be476921593fbee838623207c4fa88522264d79291f074ea536aef614d6b1fb286f29a1a5d244ec21
languageName: node
linkType: hard
"@astrojs/starlight@npm:^0.39.2":
version: 0.39.2
resolution: "@astrojs/starlight@npm:0.39.2"
dependencies:
"@astrojs/markdown-remark": "npm:^7.1.1"
"@astrojs/mdx": "npm:^5.0.4"
"@astrojs/sitemap": "npm:^3.7.2"
"@pagefind/default-ui": "npm:^1.3.0"
"@types/hast": "npm:^3.0.4"
"@types/js-yaml": "npm:^4.0.9"
"@types/mdast": "npm:^4.0.4"
astro-expressive-code: "npm:^0.42.0"
bcp-47: "npm:^2.1.0"
hast-util-from-html: "npm:^2.0.3"
hast-util-select: "npm:^6.0.4"
hast-util-to-string: "npm:^3.0.1"
hastscript: "npm:^9.0.1"
i18next: "npm:^26.0.7"
js-yaml: "npm:^4.1.1"
klona: "npm:^2.0.6"
magic-string: "npm:^0.30.21"
mdast-util-directive: "npm:^3.1.0"
mdast-util-to-markdown: "npm:^2.1.2"
mdast-util-to-string: "npm:^4.0.0"
pagefind: "npm:^1.3.0"
rehype: "npm:^13.0.2"
rehype-format: "npm:^5.0.1"
remark-directive: "npm:^4.0.0"
ultrahtml: "npm:^1.6.0"
unified: "npm:^11.0.5"
unist-util-visit: "npm:^5.1.0"
vfile: "npm:^6.0.3"
peerDependencies:
astro: ^6.0.0
checksum: 10c0/83bb1e93b5769c37bc65019d646e17b24850b1a55507ded6ca7f4cf10600e9559cae40a68196feff73b4f928f2ba5c6b8770fed0d46edb2ebb0c367f1fab6168
languageName: node
linkType: hard
"@astrojs/telemetry@npm:3.3.2":
version: 3.3.2
resolution: "@astrojs/telemetry@npm:3.3.2"
dependencies:
ci-info: "npm:^4.4.0"
dset: "npm:^3.1.4"
is-docker: "npm:^4.0.0"
is-wsl: "npm:^3.1.1"
which-pm-runs: "npm:^1.1.0"
checksum: 10c0/7af9e10bfb45bde66ce882c0aceec54141cf63255a4d85e2f99f6cebc2a0b388c38a0b7fe3c3eb3b20ae8a41b9a5103e22e27255582d8bf961cc47d71c29d230
languageName: node
linkType: hard
"@astrojs/yaml2ts@npm:^0.2.4":
version: 0.2.4
resolution: "@astrojs/yaml2ts@npm:0.2.4"
dependencies:
yaml: "npm:^2.8.3"
checksum: 10c0/bb0a25ae730ea2b8ba20da4626c9d023ba27898396c2ad71384e0aae10c4479bb5d6e9f4f27aad1f486f1d287200c4753ff949ab16af367788f085b078d4b4e6
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/code-frame@npm:7.29.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.29.7"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/169fc2080169a40c1760155eaaaf739bcb882df0bec76a83adbda5493645bc17270a3434b8848c494b1933e96fe1d147370001e3cda09a39f43ae30f08ef2069
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/compat-data@npm:7.29.7"
checksum: 10c0/47913f05e08a45a1c9df38c02b4b49e391005085b489432647a1abe112e5d9c75e3be8ea5972b7f6da4ec5d1339922ceb9ea02b8a25d4ed1cb8636e5261f344e
languageName: node
linkType: hard
"@babel/core@npm:^7.28.0, @babel/core@npm:^7.29.0":
version: 7.29.7
resolution: "@babel/core@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/generator": "npm:^7.29.7"
"@babel/helper-compilation-targets": "npm:^7.29.7"
"@babel/helper-module-transforms": "npm:^7.29.7"
"@babel/helpers": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/template": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10c0/112fb09c24de7a1de64d1de2c31fe65c4e6af4cb2fb6e6d99ea5373e6fc51e75b88581c0efae4c4c68f119a02a988c7106e95011a41530a2fb8ed793c7eaa07b
languageName: node
linkType: hard
"@babel/generator@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/generator@npm:7.29.7"
dependencies:
"@babel/parser": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10c0/9bf72b01b5bd0ea5b1288a0e37dbd360bff2f2b1ce73342c0d40fb3db2ec3dc004ada5ffa925c5e12939a416eed59e600d562b8ecd938ce0d27dfd0eb6c6c2b7
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-compilation-targets@npm:7.29.7"
dependencies:
"@babel/compat-data": "npm:^7.29.7"
"@babel/helper-validator-option": "npm:^7.29.7"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/4c15fd4c69a0a7047799a28a88460c19cede0a0ee8af994ea169114986f4af48b92c7393a4a3fee0456c11a656eece3448a6ed06354453d6c27cccf17195453b
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-globals@npm:7.29.7"
checksum: 10c0/f38417c40b1129a1b2b519ca961b9040c8827d1444fd74068702286b91b77089431dc76b6b9d5c1496e5da2a4f3ad329c6946e688ba3fa0d1d0b3d2b4f34f36a
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-module-imports@npm:7.29.7"
dependencies:
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10c0/6adf60d97356027413342a092f818d9678c4f5caff716a33e3284b5ae14e47a9e88059d421dde4ee4894691260039a12602c0e7becadc175602194b40dfa345d
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-module-transforms@npm:7.29.7"
dependencies:
"@babel/helper-module-imports": "npm:^7.29.7"
"@babel/helper-validator-identifier": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/ee5a2172c24a42be696836f4b0d947489c9729d8adf5821885cf77d1ad5333e3c447368e9a71f67df1099570490553dccf9f888ef0a92a48aa63cb086bd8c7e1
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-plugin-utils@npm:7.27.1"
checksum: 10c0/94cf22c81a0c11a09b197b41ab488d416ff62254ce13c57e62912c85700dc2e99e555225787a4099ff6bae7a1812d622c80fbaeda824b79baa10a6c5ac4cf69b
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-string-parser@npm:7.29.7"
checksum: 10c0/194bc0f1716e396d5ffde56ad6119745fb9557662c98611590e5e454906783a4ccb21ce93056b8eb69a4909044834e45d96e50ac695bbe9e3221648fe033c06c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-identifier@npm:7.29.7"
checksum: 10c0/4795354e7ae0dcafa72de1cd04ec51252dc1498517170beaf019e03effc5b7bf13c6b21a3949a77e07b8125be7f106ed1131350d8ebd4566ae874094a726d62b
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-option@npm:7.29.7"
checksum: 10c0/d2a06c6d0ac40ba4a2f219fc2cab249c7a94bacdb2686273b7f9598571c908809b48468ff588915a346e6cc7296f60b581023d1d498b747fed06f779d335c2cc
languageName: node
linkType: hard
"@babel/helpers@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helpers@npm:7.29.7"
dependencies:
"@babel/template": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10c0/218e8d10953647c9f44775f5a022b227a182674853b5ea8631889deb7e1a3e4bc870388aaecf59bb8bd92a87f9a96220ed3f70a35bffec6bcf9169ecb67891ac
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.29.3, @babel/parser@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/parser@npm:7.29.7"
dependencies:
"@babel/types": "npm:^7.29.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/65133038f80b54a714d6027cb77cee3f9a6b5c4c6842ce674301e13947cbcbfa8055e63acaf1b84c085d34226a14425b2c2b97b829e0e226d2e8f1299942a51d
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-self@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-self@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/00a4f917b70a608f9aca2fb39aabe04a60aa33165a7e0105fd44b3a8531630eb85bf5572e9f242f51e6ad2fa38c2e7e780902176c863556c58b5ba6f6e164031
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-source@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-source@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/5e67b56c39c4d03e59e03ba80692b24c5a921472079b63af711b1d250fc37c1733a17069b63537f750f3e937ec44a42b1ee6a46cd23b1a0df5163b17f741f7f2
languageName: node
linkType: hard
"@babel/runtime@npm:^7.1.2":
version: 7.28.4
resolution: "@babel/runtime@npm:7.28.4"
checksum: 10c0/792ce7af9750fb9b93879cc9d1db175701c4689da890e6ced242ea0207c9da411ccf16dc04e689cc01158b28d7898c40d75598f4559109f761c12ce01e959bf7
languageName: node
linkType: hard
"@babel/template@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/template@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10c0/8bb7f900dcab0e9e1c5ffbc33ca10e0d26b7b2e2ca804becb73ee771b9c4ed6e2908a4ae4a14c08560febb45d2b6b9a173955e42ad404d05f8b04840a14d9c58
languageName: node
linkType: hard
"@babel/traverse@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/traverse@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/generator": "npm:^7.29.7"
"@babel/helper-globals": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/template": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
debug: "npm:^4.3.1"
checksum: 10c0/e256a1fbdb956555b76f3c285b1e453f6bedec8b3afb61751d99d933efd11c7d79caf5ddf2493570058a9f7deaa1b48324380d7c1aa1443fd9508becbf56331a
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.29.0, @babel/types@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/types@npm:7.29.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.29.7"
"@babel/helper-validator-identifier": "npm:^7.29.7"
checksum: 10c0/b6623994c69717fa27294f5fa46d59140338e2d86c6c1c13085c84ef7d53086ee357fbf4fe9abe3dd3da75734dc77c4c0df2f90fb29e667558bb3b3fb705e88f
languageName: node
linkType: hard
"@bkrem/react-transition-group@npm:^1.3.5":
version: 1.3.5
resolution: "@bkrem/react-transition-group@npm:1.3.5"
dependencies:
chain-function: "npm:^1.0.0"
dom-helpers: "npm:^3.3.1"
loose-envify: "npm:^1.3.1"
prop-types: "npm:^15.5.6"
react-lifecycles-compat: "npm:^3.0.4"
warning: "npm:^3.0.0"
peerDependencies:
react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
checksum: 10c0/60ed2d129b0bcdb30e796580c0a992d59178aa1658df97eb06cbcac9fd64e418020282a8d12c27d827ef94913ce5d37930a53a9813f43fdf376e010b6d1ed523
languageName: node
linkType: hard
"@cacheable/memoize@npm:^2.0.3":
version: 2.0.3
resolution: "@cacheable/memoize@npm:2.0.3"
dependencies:
"@cacheable/utils": "npm:^2.0.3"
checksum: 10c0/8abcb6aedc7f6062f2cd34319eddbf8a6dd451bec52ce86bfee8d91f546adb4a704ad4234a9a87dacb49a9f7e19190c25bedbb94749f8cbb538499defc4b76d5
languageName: node
linkType: hard
"@cacheable/memory@npm:^2.0.3":
version: 2.0.3
resolution: "@cacheable/memory@npm:2.0.3"
dependencies:
"@cacheable/memoize": "npm:^2.0.3"
"@cacheable/utils": "npm:^2.0.3"
"@keyv/bigmap": "npm:^1.0.2"
hookified: "npm:^1.12.1"
keyv: "npm:^5.5.3"
checksum: 10c0/0c4ca0bcfbc046ee7c06eeb55b14730d93541b16a72259582817fb40189ab50d8e0681aeacac35deb7ff82818c3b1703685373d0c56a1548931a1d030f91f3a8
languageName: node
linkType: hard
"@cacheable/utils@npm:^2.0.3, @cacheable/utils@npm:^2.1.0":
version: 2.1.0
resolution: "@cacheable/utils@npm:2.1.0"
dependencies:
keyv: "npm:^5.5.3"
checksum: 10c0/0fe83cd992863c9234d83aa1cf108e83e02013bc81f730ba187861bc4d2a60b62fb3945b37dd4f5f58d749a4dff8420d6e9e723324aa2bda53944bedbd83ebd1
languageName: node
linkType: hard
"@capsizecss/unpack@npm:^4.0.0":
version: 4.0.0
resolution: "@capsizecss/unpack@npm:4.0.0"
dependencies:
fontkitten: "npm:^1.0.0"
checksum: 10c0/47ed4fa100d015f28e1ccb6813fc9d6ce39012bed0508ec49ae6c1e0e6eaa86b1450aba1a05245e4e3e35087eeec636ecb9a000c50a4c5f349586d0d07cdc922
languageName: node
linkType: hard
"@clack/core@npm:1.4.0":
version: 1.4.0
resolution: "@clack/core@npm:1.4.0"
dependencies:
fast-wrap-ansi: "npm:^0.2.0"
sisteransi: "npm:^1.0.5"
checksum: 10c0/7d287da15943018439967b1fff83f718e87ea3a7ea7f54a549f5d3828147873acbb67a659824d84702fa3a1e709785ded9af3e5ef0ce14484fe1d484ea3415bb
languageName: node
linkType: hard
"@clack/prompts@npm:^1.1.0":
version: 1.5.0
resolution: "@clack/prompts@npm:1.5.0"
dependencies:
"@clack/core": "npm:1.4.0"
fast-string-width: "npm:^3.0.2"
fast-wrap-ansi: "npm:^0.2.0"
sisteransi: "npm:^1.0.5"
checksum: 10c0/5f50c4b2c8b07c6125b75b7431b4aabdeae285e6934db7dfc11f283fc7b6ccc1ef3e812839035b92fac843523d96b80f4658f83a0e8aa10e5f6c56950adfc765
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-bundled-dicts@npm:9.2.1"
dependencies:
"@cspell/dict-ada": "npm:^4.1.1"
"@cspell/dict-al": "npm:^1.1.1"
"@cspell/dict-aws": "npm:^4.0.15"
"@cspell/dict-bash": "npm:^4.2.1"
"@cspell/dict-companies": "npm:^3.2.5"
"@cspell/dict-cpp": "npm:^6.0.12"
"@cspell/dict-cryptocurrencies": "npm:^5.0.5"
"@cspell/dict-csharp": "npm:^4.0.7"
"@cspell/dict-css": "npm:^4.0.18"
"@cspell/dict-dart": "npm:^2.3.1"
"@cspell/dict-data-science": "npm:^2.0.9"
"@cspell/dict-django": "npm:^4.1.5"
"@cspell/dict-docker": "npm:^1.1.16"
"@cspell/dict-dotnet": "npm:^5.0.10"
"@cspell/dict-elixir": "npm:^4.0.8"
"@cspell/dict-en-common-misspellings": "npm:^2.1.5"
"@cspell/dict-en-gb-mit": "npm:^3.1.8"
"@cspell/dict-en_us": "npm:^4.4.18"
"@cspell/dict-filetypes": "npm:^3.0.13"
"@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.7"
"@cspell/dict-gaming-terms": "npm:^1.1.2"
"@cspell/dict-git": "npm:^3.0.7"
"@cspell/dict-golang": "npm:^6.0.23"
"@cspell/dict-google": "npm:^1.0.9"
"@cspell/dict-haskell": "npm:^4.0.6"
"@cspell/dict-html": "npm:^4.0.12"
"@cspell/dict-html-symbol-entities": "npm:^4.0.4"
"@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:^4.0.4"
"@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.12"
"@cspell/dict-monkeyc": "npm:^1.0.11"
"@cspell/dict-node": "npm:^5.0.8"
"@cspell/dict-npm": "npm:^5.2.15"
"@cspell/dict-php": "npm:^4.0.15"
"@cspell/dict-powershell": "npm:^5.0.15"
"@cspell/dict-public-licenses": "npm:^2.0.15"
"@cspell/dict-python": "npm:^4.2.19"
"@cspell/dict-r": "npm:^2.1.1"
"@cspell/dict-ruby": "npm:^5.0.9"
"@cspell/dict-rust": "npm:^4.0.12"
"@cspell/dict-scala": "npm:^5.0.8"
"@cspell/dict-shell": "npm:^1.1.1"
"@cspell/dict-software-terms": "npm:^5.1.7"
"@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"
checksum: 10c0/de0c0a55969065bbdf5e2f6e433210f393be72a683a0b70f63af6653d7a694d352fd979c1947693b27b475c8222cd4a10bf00bf9261186c9558828b33f21ebfc
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-json-reporter@npm:9.2.1"
dependencies:
"@cspell/cspell-types": "npm:9.2.1"
checksum: 10c0/3293748f1f5e81ee7e11065983b77d9df451bcdb86e398bfec9890e2fe66afa49a9a5e6e647374c1b75f1d252a5c316b271b68514796a9115c23d2fee196ce4f
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-pipe@npm:9.2.1"
checksum: 10c0/f4398b3c08928d9e182b1375c0e380c87ff83b6bbb9664dea881bdb286ebbde6013d4ca568d5fd66b10eadc7a927c84e173224f5a44ff197ffcd9d006b19de39
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-resolver@npm:9.2.1"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 10c0/3f4122e6ed6d95c820ed0247db3f948803156d5529d84e6d5ff627b154ad591c3543ca39dd1082bf0d806bd6dcaeb03afe6d1e4a79f4dc18c6cacb1bb155da6d
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-service-bus@npm:9.2.1"
checksum: 10c0/c3ebd1a3ef255105d41abc3f574f760380cd66dcc94af681fd579801bb07276a4492b5be72d603306eaca61c4398d009fed7a1e0f5136eb4637194970640f22d
languageName: node
linkType: hard
"@cspell/cspell-types@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-types@npm:9.2.1"
checksum: 10c0/111d0e02d847af41170aab8b4d99a8ddc58c4b11fb004163bb548cedbb2cbcc22f64e82a3d4549c44b3423993a9bf7a6d52ed7566029076ed7dd64b5ee39091b
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.15":
version: 4.0.15
resolution: "@cspell/dict-aws@npm:4.0.15"
checksum: 10c0/c5983f2e5ce3dd23d5b8ebc818cc963d9b2c91d9b8436b40491a46ebca4cb1bc7875237c443f6e883488ca66174e84bb804f8b6e37439b4ba6c2b52a146eaa20
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.2.1":
version: 4.2.1
resolution: "@cspell/dict-bash@npm:4.2.1"
dependencies:
"@cspell/dict-shell": "npm:1.1.1"
checksum: 10c0/5c49c57cd63c959a1c7b4bdad435230413b9bf6f8e1b875e371ae9e6989589f8f5ee5b0464534be18149090405ef1853a7d577bbdd77dd5ac844411ce744663f
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.2.5":
version: 3.2.5
resolution: "@cspell/dict-companies@npm:3.2.5"
checksum: 10c0/e870aee51ef51fe5677b4408b17ffb4b022719d0ecccf452962e794bdc93d49cd47095a11839bc2ed058fe2a5e5e0e57a1d0349448484997c95d3cc4a606d66f
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^6.0.12":
version: 6.0.12
resolution: "@cspell/dict-cpp@npm:6.0.12"
checksum: 10c0/0eb014be8a824a4643493cdf62d65a2ef275b447d3b649b00fa9c1bff821d11fb0588929a2dd8a05f54931ecaa44bfa1d42d8f49b975d2c23e25cfd34fa56c25
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.7":
version: 4.0.7
resolution: "@cspell/dict-csharp@npm:4.0.7"
checksum: 10c0/93afd6cfc973a5543120d1de2ee9cafbcbe64af6743e2ba3a8cfb0965fe19c85c6dee5a32c99a156cc979c8a89803b684e324ca92065b3a32faa7db786072e5e
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.18":
version: 4.0.18
resolution: "@cspell/dict-css@npm:4.0.18"
checksum: 10c0/6d27fab2c1d2b023bdca93c2b013f69b2e782e2df444fed9406a0f9c1f2c84e6da5bfa9b7ae4c4e235498bbfd06a8822a6d6b228b5d3444fda8499d7a81dddfe
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.3.1":
version: 2.3.1
resolution: "@cspell/dict-dart@npm:2.3.1"
checksum: 10c0/40bbb2e20b761da0be513d3476db054211bfa5a514860569c0d46f3b869b782ef8d8118b4a30aa10b51dde280d22d5199988c9a89d2495742e660de8b5bb6792
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.9":
version: 2.0.9
resolution: "@cspell/dict-data-science@npm:2.0.9"
checksum: 10c0/b751f5036a515d50c2227a92e9a821d93f4df3f670446e2f35e033b83273ea1e741cd6162de6a3547d562fcee52e5b768627d114aee50e0584295b77cd94b428
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.5":
version: 4.1.5
resolution: "@cspell/dict-django@npm:4.1.5"
checksum: 10c0/df51162b33c31ead2a983dc26face4b2d563382b082cbf13971593cec3687552d4e4e4af444beecb3b00baf1c28b5cb92944dba04de303d0864f7656a11b8921
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.16":
version: 1.1.16
resolution: "@cspell/dict-docker@npm:1.1.16"
checksum: 10c0/0e2c211da4a8d6e23311bc41c4041bf447c5c7a4ab84afe3a0229d11fc0af19ec1f6f8fcfd9c6b6793b538a81026d3957e86f3999baba973520ffe84a9420014
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.10":
version: 5.0.10
resolution: "@cspell/dict-dotnet@npm:5.0.10"
checksum: 10c0/ddb368955d86059d6d59a82263769af832c90028e20c61cdc1e9ba25ac7de8465fd4da2f1966c4683d870720ef7138b937bdde994ac5e991aafc84e236f218b9
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.5":
version: 2.1.6
resolution: "@cspell/dict-en-common-misspellings@npm:2.1.6"
checksum: 10c0/25734b9d4125afcbffb239d975e9fe855a13f826af1d80a1434f486a49f1f1ec747381bac65868265d09c7e4f1665885594c248b6b1c925e161dbfd54c970704
languageName: node
linkType: hard
"@cspell/dict-en-gb-mit@npm:^3.1.8":
version: 3.1.9
resolution: "@cspell/dict-en-gb-mit@npm:3.1.9"
checksum: 10c0/ce6f1525bffd2b41db9d0f347d76c8b6eefafcdcb0f14e2e902dfa8dfd3f56c5f4da3a0103e18eb45194a8142f44c83c4c2935a2cf622b8052d3c5f133136a3d
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.4.18":
version: 4.4.19
resolution: "@cspell/dict-en_us@npm:4.4.19"
checksum: 10c0/317040767486ea2959b5080e60d36d07270e0c595f2d77874f24271d621d723ebb26e86032988d2a717a7ae9823777eab377c41fec8dd0fa21371404bd3e37f1
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.13":
version: 3.0.13
resolution: "@cspell/dict-filetypes@npm:3.0.13"
checksum: 10c0/84ff1a571bace087d62363a7f7ad4c6641ea9c24c9a2eedecaf94ab24f54913ab694416ebc1a1a27c00a3f5bc973206a73a1f36209a0b274ffbbc87171e784fb
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.5
resolution: "@cspell/dict-fonts@npm:4.0.5"
checksum: 10c0/5ed1886fabe245e1abeb7da2b0d6a534ddf204666ecd5d7d153a422dfbb93854456025b1894bc61e7c21915116d06b177e3012bc7a969307c8797baac2380f6f
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.7":
version: 3.2.7
resolution: "@cspell/dict-fullstack@npm:3.2.7"
checksum: 10c0/81e19f537553f243fa2ede72cbaf727f71c64ea769952c6bea20d82492b9199761677e1107683abd225dcbd6233bf0502c8faf7ec9be65538fdca2a7138bdf3f
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.0.7":
version: 3.0.7
resolution: "@cspell/dict-git@npm:3.0.7"
checksum: 10c0/db22c7a8eeca4c36fba9fdeae440bfdf0d4fd7ca2aaebe06b8b895273ea93eb48f00bb3216146e2d8e595226ad96668095f6ffa0f80f88ccdd450054aca5f12c
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.23":
version: 6.0.23
resolution: "@cspell/dict-golang@npm:6.0.23"
checksum: 10c0/c86aa83796be7a7b1dda48a1ff99b051d824094811e457c0f637d9fabf14a9a2290db54f28b68dfb6dc8ab203e67d634af22c8aa4885738d4c150856f5343f47
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.4":
version: 4.0.4
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.4"
checksum: 10c0/ff6be66c36845409622b732f010c5c7a3680c759fba55d136be5556f505bd7e7daee85834b2b9aae54c90a6f6b4055a1b39d49a5976c04226fa80f9238fa48a1
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.12":
version: 4.0.12
resolution: "@cspell/dict-html@npm:4.0.12"
checksum: 10c0/de3d7197859502e2bb7be4206a881cd53bc6b30516cd181116bbe83c9698da34ebaf7e8da2d62afe925bd0cc3a8abb16aea3794eb3a916a83dc1e915c7b6b49f
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:^4.0.4":
version: 4.0.4
resolution: "@cspell/dict-latex@npm:4.0.4"
checksum: 10c0/5050b8b8bede9970224a12ac1b613acf735ef36121acad61a891f28ff2aa5e60ffc2392ad502f7de107a2af485f8fb73e611ba6ac169b41f06101bffd4897aca
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.12":
version: 2.0.12
resolution: "@cspell/dict-markdown@npm:2.0.12"
peerDependencies:
"@cspell/dict-css": ^4.0.18
"@cspell/dict-html": ^4.0.12
"@cspell/dict-html-symbol-entities": ^4.0.4
"@cspell/dict-typescript": ^3.2.3
checksum: 10c0/f6d53e71525dff0832950345118abcb2c2ca01aaff51922c5c18f7c3bc0d84a2168bb9bb3e400fe6b91312a5892d0b608db6ea590e2a785474ad355e60d9b535
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.0.11":
version: 1.0.11
resolution: "@cspell/dict-monkeyc@npm:1.0.11"
checksum: 10c0/856b7107b2eb70925bf7388f6961548c205b9580298ce28352644b5d20b4779b7d0f8d3ea6888f15aceb124c4bafd51ec896cc55d73cea6853c01a37ee4b97b6
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.8":
version: 5.0.8
resolution: "@cspell/dict-node@npm:5.0.8"
checksum: 10c0/aaca1c73dc9451171716dbbff0e243a4f4bcba7260875b50a582cca5db70415b7cddaf60443814880da59967433b5934b4a830b9dc69c90fa4f9c06b2f2d8063
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.2.15":
version: 5.2.17
resolution: "@cspell/dict-npm@npm:5.2.17"
checksum: 10c0/e36f43da2d89296e0078ab558491e21882ef63185b3dbf7c99c7d013b7770635510bd4d3221dafb4aaaba6c476a0b93ed0bc7a57e438c056b90f848b3b3d3d97
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.15":
version: 4.0.15
resolution: "@cspell/dict-php@npm:4.0.15"
checksum: 10c0/f8d7b1c57f62f6e00326daceb42115881ad8d64cfb0a610ea92419b330ad7651a667c165a6b638165cc165c09f67e2bbce8202b34d771e023d391c85e7829416
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.15
resolution: "@cspell/dict-public-licenses@npm:2.0.15"
checksum: 10c0/ff3f159b00668f0714c0bc8c2492fb72aaedce5464baf0a4c60dd4a3348f9a3d15f7b63e4ed0f6e7124ba552701c14f2d10769cc1a4d593c82c460fbb3bbf84a