forked from alauda/knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
11900 lines (10706 loc) · 433 KB
/
yarn.lock
File metadata and controls
11900 lines (10706 loc) · 433 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
"@ai-sdk/gateway@npm:2.0.21":
version: 2.0.21
resolution: "@ai-sdk/gateway@npm:2.0.21"
dependencies:
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.19"
"@vercel/oidc": "npm:3.0.5"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/776492f1e0b6d29d8503c940cd4c08fed96cbf65f22eaee683f15e59cb4d03e40b7b64f2790144f2bb22cb174f44d305bac957270ba65a5c3fd79a9826e4cfc8
languageName: node
linkType: hard
"@ai-sdk/provider-utils@npm:3.0.19":
version: 3.0.19
resolution: "@ai-sdk/provider-utils@npm:3.0.19"
dependencies:
"@ai-sdk/provider": "npm:2.0.0"
"@standard-schema/spec": "npm:^1.0.0"
eventsource-parser: "npm:^3.0.6"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/e4decb19264067fa1b1642e07d515d25d1509a1a9143f59ccc051e3ca413c9fb1d708e1052a70eaf329ca39ddf6152520cd833dbf8c95d9bf02bbeffae8ea363
languageName: node
linkType: hard
"@ai-sdk/provider@npm:2.0.0":
version: 2.0.0
resolution: "@ai-sdk/provider@npm:2.0.0"
dependencies:
json-schema: "npm:^0.4.0"
checksum: 10c0/e50e520016c9fc0a8b5009cadd47dae2f1c81ec05c1792b9e312d7d15479f024ca8039525813a33425c884e3449019fed21043b1bfabd6a2626152ca9a388199
languageName: node
linkType: hard
"@ai-sdk/react@npm:^2.0.30":
version: 2.0.115
resolution: "@ai-sdk/react@npm:2.0.115"
dependencies:
"@ai-sdk/provider-utils": "npm:3.0.19"
ai: "npm:5.0.113"
swr: "npm:^2.2.5"
throttleit: "npm:2.1.0"
peerDependencies:
react: ^18 || ~19.0.1 || ~19.1.2 || ^19.2.1
zod: ^3.25.76 || ^4.1.8
peerDependenciesMeta:
zod:
optional: true
checksum: 10c0/b9205d90cdba175d6c23f003d0406a2de8c8fee1d0aae35a433692f7d187c409cd97018f78ec66700ad777e163669758b61950357e5fe83ae4f7604bbdcda904
languageName: node
linkType: hard
"@alauda/doom-export@npm:^0.3.1":
version: 0.3.1
resolution: "@alauda/doom-export@npm:0.3.1"
dependencies:
"@playwright/browser-chromium": "npm:1.57.0"
cli-progress: "npm:^3.12.0"
html-entities: "npm:^2.6.0"
pdf-lib: "npm:^1.17.1"
pdf-merger-js: "npm:^5.1.2"
playwright: "npm:1.57.0"
yoctocolors: "npm:^2.1.2"
checksum: 10c0/1934e55f4737917dfbf02f8680e5e1a5c01a90e8bddf279cf3246dbb7df5f026e4ab71e8a9a4a5c19b16b459c2f712ea686c24efda1c24bb89adb296c9e1d587
languageName: node
linkType: hard
"@alauda/doom@npm:^1.18.2":
version: 1.18.2
resolution: "@alauda/doom@npm:1.18.2"
dependencies:
"@alauda/doom-export": "npm:^0.3.1"
"@cspell/eslint-plugin": "npm:^9.4.0"
"@eslint-react/eslint-plugin": "npm:^2.5.5"
"@inquirer/prompts": "npm:^8.2.0"
"@openapi-contrib/openapi-schema-to-json-schema": "npm:^5.1.0"
"@rsbuild/plugin-react": "npm:^1.4.2"
"@rsbuild/plugin-sass": "npm:^1.4.0"
"@rsbuild/plugin-svgr": "npm:^1.2.3"
"@rsbuild/plugin-yaml": "npm:^1.0.3"
"@rspress/core": "npm:2.0.0-rc.5"
"@rspress/plugin-algolia": "npm:2.0.0-rc.5"
"@rspress/plugin-sitemap": "npm:2.0.0-rc.5"
"@rspress/shared": "npm:2.0.0-rc.5"
"@shikijs/transformers": "npm:^3.21.0"
"@total-typescript/ts-reset": "npm:^0.6.1"
"@types/react": "npm:^19.2.8"
ab64: "npm:^0.1.6"
chokidar: "npm:^5.0.0"
clsx: "npm:^2.1.1"
commander: "npm:^14.0.2"
ejs: "npm:^3.1.10"
es-toolkit: "npm:^1.43.0"
eslint: "npm:^9.39.2"
eslint-plugin-mdx: "npm:^3.6.2"
globals: "npm:^17.0.0"
html-tag-names: "npm:^2.1.0"
jsencrypt: "npm:^3.5.4"
masonry-layout: "npm:^4.2.2"
mdast-util-mdx: "npm:^3.0.0"
mdast-util-mdx-jsx: "npm:^3.2.0"
mdast-util-phrasing: "npm:^4.1.0"
mdast-util-to-markdown: "npm:^2.1.2"
mdast-util-to-string: "npm:^4.0.0"
mermaid: "npm:^11.12.2"
openai: "npm:^6.16.0"
openapi-types: "npm:^12.1.3"
p-ratelimit: "npm:^1.0.1"
picomatch: "npm:^4.0.3"
pluralize: "npm:^8.0.0"
react-markdown: "npm:^10.1.0"
react-tooltip: "npm:^5.30.0"
rehype-raw: "npm:^7.0.0"
rehype-sanitize: "npm:^6.0.0"
remark-directive: "npm:^4.0.0"
remark-frontmatter: "npm:^5.0.0"
remark-gfm: "npm:^4.0.1"
remark-lint-code-block-split-list: "npm:^1.0.0"
remark-lint-heading-increment: "npm:^4.0.1"
remark-lint-match-punctuation: "npm:^0.2.1"
remark-lint-no-chinese-punctuation-in-number: "npm:^0.1.2"
remark-lint-no-duplicate-headings-in-section: "npm:^4.0.1"
remark-lint-no-hidden-table-cell: "npm:^1.0.1"
remark-mdx: "npm:^3.1.1"
remark-message-control: "npm:^8.0.0"
remark-stringify: "npm:^11.0.0"
shiki: "npm:^3.21.0"
simple-git: "npm:^3.30.0"
string-width: "npm:^8.1.0"
swagger2openapi: "npm:^7.0.8"
tinyglobby: "npm:^0.2.15"
type-fest: "npm:^5.3.1"
typescript: "npm:^5.9.3"
typescript-eslint: "npm:^8.52.0"
unified: "npm:^11.0.5"
unified-lint-rule: "npm:^3.0.1"
unist-util-position: "npm:^5.0.0"
unist-util-visit-parents: "npm:^6.0.2"
x-fetch: "npm:^0.2.6"
yaml: "npm:^2.8.2"
yoctocolors: "npm:^2.1.2"
bin:
doom: lib/cli/index.js
checksum: 10c0/e74a29e69f982cc844509318c7e24be74b5ec71047fab187600bb630e8923b30d0141e464b181dc7c5925d715344c842e46189308510d8372a47eb8923d2087b
languageName: node
linkType: hard
"@algolia/abtesting@npm:1.12.0":
version: 1.12.0
resolution: "@algolia/abtesting@npm:1.12.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/72c237a262932fcb642405236bc48cc4264f3b25b77fe944b558401a4cb4ab276bf599e9a5f0e5a69216f658bd7e37047f4f3e7c30a3c03b74534992a75adae1
languageName: node
linkType: hard
"@algolia/autocomplete-core@npm:1.19.2":
version: 1.19.2
resolution: "@algolia/autocomplete-core@npm:1.19.2"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.19.2"
"@algolia/autocomplete-shared": "npm:1.19.2"
checksum: 10c0/383952bc43a31f0771987416c350471824e480fcd15e1db8ae13386cd387879f1c81eadafceffa69f87e6b8e59fb1aa713da375fc07a30c5d8edb16a157b5f45
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.19.2":
version: 1.19.2
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.19.2"
dependencies:
"@algolia/autocomplete-shared": "npm:1.19.2"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10c0/8548b6514004dbf6fb34d6da176ac911371f3e84724ef6b94600cd84d29339d2f44cead03d7c0d507b130da0d9acc61f6e4c9a0fba6f967a5ae2a42eea93f0c1
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.19.2":
version: 1.19.2
resolution: "@algolia/autocomplete-shared@npm:1.19.2"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/eee6615e6d9e6db7727727e442b876a554a6eda6f14c1d55d667ed2d14702c4c888a34b9bfb18f66ccc6d402995b2c7c37ace9f19ce9fc9c83bbb623713efbc4
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/client-abtesting@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/88d869ec1933fae5aa4cccfb21ee66a75073060a986ea7cc9b08bd07ecbd88d4b83075ff575df45e67a8db8719912f53e8d4f66d2a4653bf5ed06c0b2a753768
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/client-analytics@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/96d20a0560c9261520968d7ebcc740118118c7ae56d9a23100d5cc893bbd855ebe2bf4b14ea3e0563b3f54fb2f5f6a8dc35d87f1eb79b81cdc1b17a12ba07fb8
languageName: node
linkType: hard
"@algolia/client-common@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/client-common@npm:5.46.0"
checksum: 10c0/c6f7c1f5b74b4d5056248f6f53ef59c468b5a7cee9d9edfcf93e32e9e71f4b3f186c5a4b2c6fcae631589ac67fdb50ce8bc577aeb8adf8b8e09d453e868b63f5
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/client-insights@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/f2497813ede9e194c2fe36e745fafd3f8e45066be10a784dbf55f52eb8fefe7fc26013feba21e7a7ade01912056cc85d85247699c003eb4756608576bd549c06
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/client-personalization@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/521c0764f921c3eba894df1cfeb2e439cd149c1baff9c06e110dd34628b0bc55961e065bfd309658d5824808d440e5d96faa83e356c639d505286204b92ab19d
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/client-query-suggestions@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/d371cdaf97079186f8185015189d6fc7587200f0dc7414c10048d9c62b715e47af61949fbf8737bc44c7d2c293484621347187ea03f797e8ca73b971bbc182b3
languageName: node
linkType: hard
"@algolia/client-search@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/client-search@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/0aa388d5174b05d86582d6d86d1fe184563cfd7c33140147ab5cce275565ac6382562178b5a502acabe8b035295a80aea2e9c25d5dc0221f999db5014ea2f56a
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.46.0":
version: 1.46.0
resolution: "@algolia/ingestion@npm:1.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/072d31f47895079637b376549a3ff3a81de7576c5578715dabb136da48557cb087af26e041ddc19d05dabd4550d641f7d8e1581cd4565de0d4b3b2e2d169ba4e
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.46.0":
version: 1.46.0
resolution: "@algolia/monitoring@npm:1.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/9ca69cc53efc58ee5443d706abe8db3cd48974fda53a8c9732cc30ac39ab96e67fb67913b1b6f090a230b17347a6a755ebaf583176eb6195f96ed81459632ed2
languageName: node
linkType: hard
"@algolia/recommend@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/recommend@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
"@algolia/requester-browser-xhr": "npm:5.46.0"
"@algolia/requester-fetch": "npm:5.46.0"
"@algolia/requester-node-http": "npm:5.46.0"
checksum: 10c0/7aa0c91f2cdd061fcd29e1f8821b3832c2c35812d4785b8426196778a697f38cc99efe799b850da1ad22ff81f49edb76cb6399afd1eb43f451aedc7fe09eb1da
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/requester-browser-xhr@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
checksum: 10c0/f0cb29e8e2b6c52c7929803e6ff203c577b506830f1ff5b87110a42d9752a75b2d14c10a2bcb6a8931188614a722ae23e674b24fb735def81ea8c0ca7fbf1cf0
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/requester-fetch@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
checksum: 10c0/9613974b2940b2725fe0e18725091136f953dc1c4ffdcea1eecc0964a8b64a28810c5becd42043fad5fbbc93daf1cf39e83fba96ef7898cbca1e7730d0c3dc52
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.46.0":
version: 5.46.0
resolution: "@algolia/requester-node-http@npm:5.46.0"
dependencies:
"@algolia/client-common": "npm:5.46.0"
checksum: 10c0/141516a2c3437217a4fd9842fa2366d7fc9e8c93e1d70229dce6e8990f008002a50db16170688bfc7fea71e158759ff82d479d0cabeef6477219ae18370bf40c
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
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
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.27.1"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/5dd9a18baa5fce4741ba729acc3a3272c49c25cb8736c4b18e113099520e7ef7b545a4096a26d600e4416157e63e87d66db46aa3fbf0a5f2286da2705c12da00
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.27.2":
version: 7.28.0
resolution: "@babel/compat-data@npm:7.28.0"
checksum: 10c0/c4e527302bcd61052423f757355a71c3bc62362bac13f7f130de16e439716f66091ff5bdecda418e8fa0271d4c725f860f0ee23ab7bf6e769f7a8bb16dfcb531
languageName: node
linkType: hard
"@babel/core@npm:^7.21.3":
version: 7.28.0
resolution: "@babel/core@npm:7.28.0"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.28.0"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-module-transforms": "npm:^7.27.3"
"@babel/helpers": "npm:^7.27.6"
"@babel/parser": "npm:^7.28.0"
"@babel/template": "npm:^7.27.2"
"@babel/traverse": "npm:^7.28.0"
"@babel/types": "npm:^7.28.0"
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/423302e7c721e73b1c096217880272e02020dfb697a55ccca60ad01bba90037015f84d0c20c6ce297cf33a19bb704bc5c2b3d3095f5284dfa592bd1de0b9e8c3
languageName: node
linkType: hard
"@babel/generator@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/generator@npm:7.28.0"
dependencies:
"@babel/parser": "npm:^7.28.0"
"@babel/types": "npm:^7.28.0"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10c0/1b3d122268ea3df50fde707ad864d9a55c72621357d5cebb972db3dd76859c45810c56e16ad23123f18f80cc2692f5a015d2858361300f0f224a05dc43d36a92
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/helper-compilation-targets@npm:7.27.2"
dependencies:
"@babel/compat-data": "npm:^7.27.2"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/f338fa00dcfea931804a7c55d1a1c81b6f0a09787e528ec580d5c21b3ecb3913f6cb0f361368973ce953b824d910d3ac3e8a8ee15192710d3563826447193ad1
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/helper-globals@npm:7.28.0"
checksum: 10c0/5a0cd0c0e8c764b5f27f2095e4243e8af6fa145daea2b41b53c0c1414fe6ff139e3640f4e2207ae2b3d2153a1abd346f901c26c290ee7cb3881dd922d4ee9232
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-module-imports@npm:7.27.1"
dependencies:
"@babel/traverse": "npm:^7.27.1"
"@babel/types": "npm:^7.27.1"
checksum: 10c0/e00aace096e4e29290ff8648455c2bc4ed982f0d61dbf2db1b5e750b9b98f318bf5788d75a4f974c151bd318fd549e81dbcab595f46b14b81c12eda3023f51e8
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.27.3":
version: 7.27.3
resolution: "@babel/helper-module-transforms@npm:7.27.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
"@babel/traverse": "npm:^7.27.3"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/fccb4f512a13b4c069af51e1b56b20f54024bcf1591e31e978a30f3502567f34f90a80da6a19a6148c249216292a8074a0121f9e52602510ef0f32dbce95ca01
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.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-identifier@npm:7.27.1"
checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-option@npm:7.27.1"
checksum: 10c0/6fec5f006eba40001a20f26b1ef5dbbda377b7b68c8ad518c05baa9af3f396e780bdfded24c4eef95d14bb7b8fd56192a6ed38d5d439b97d10efc5f1a191d148
languageName: node
linkType: hard
"@babel/helpers@npm:^7.27.6":
version: 7.27.6
resolution: "@babel/helpers@npm:7.27.6"
dependencies:
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.27.6"
checksum: 10c0/448bac96ef8b0f21f2294a826df9de6bf4026fd023f8a6bb6c782fe3e61946801ca24381490b8e58d861fee75cd695a1882921afbf1f53b0275ee68c938bd6d3
languageName: node
linkType: hard
"@babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/parser@npm:7.28.0"
dependencies:
"@babel/types": "npm:^7.28.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/c2ef81d598990fa949d1d388429df327420357cb5200271d0d0a2784f1e6d54afc8301eb8bdf96d8f6c77781e402da93c7dc07980fcc136ac5b9d5f1fce701b5
languageName: node
linkType: hard
"@babel/template@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/template@npm:7.27.2"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/parser": "npm:^7.27.2"
"@babel/types": "npm:^7.27.1"
checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81
languageName: node
linkType: hard
"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.27.3, @babel/traverse@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/traverse@npm:7.28.0"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.28.0"
"@babel/helper-globals": "npm:^7.28.0"
"@babel/parser": "npm:^7.28.0"
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.28.0"
debug: "npm:^4.3.1"
checksum: 10c0/32794402457827ac558173bcebdcc0e3a18fa339b7c41ca35621f9f645f044534d91bb923ff385f5f960f2e495f56ce18d6c7b0d064d2f0ccb55b285fa6bc7b9
languageName: node
linkType: hard
"@babel/types@npm:^7.21.3, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.6, @babel/types@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/types@npm:7.28.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
checksum: 10c0/7ca8521bf5e2d2ed4db31176efaaf94463a6b7a4d16dcc60e34e963b3596c2ecadb85457bebed13a9ee9a5829ef5f515d05b55a991b6a8f3b835451843482e39
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^7.1.1":
version: 7.1.1
resolution: "@braintree/sanitize-url@npm:7.1.1"
checksum: 10c0/fdfc1759c4244e287693ce1e9d42d649423e7c203fdccf27a571f8951ddfe34baa5273b7e6a8dd3007d7676859c7a0a9819be0ab42a3505f8505ad0eefecf7c1
languageName: node
linkType: hard
"@bufbuild/protobuf@npm:^2.5.0":
version: 2.6.0
resolution: "@bufbuild/protobuf@npm:2.6.0"
checksum: 10c0/94c6fd63266a78135e3a82cb054dcde66760909948932152069bef3bb68335877b213d80c6983bb609b15f2ea0eb5912621eebd5bd4a98dbb940136ff5161b30
languageName: node
linkType: hard
"@chevrotain/cst-dts-gen@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/cst-dts-gen@npm:11.0.3"
dependencies:
"@chevrotain/gast": "npm:11.0.3"
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10c0/9e945a0611386e4e08af34c2d0b3af36c1af08f726b58145f11310f2aeafcb2d65264c06ec65a32df6b6a65771e6a55be70580c853afe3ceb51487e506967104
languageName: node
linkType: hard
"@chevrotain/gast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/gast@npm:11.0.3"
dependencies:
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10c0/54fc44d7b4a7b0323f49d957dd88ad44504922d30cb226d93b430b0e09925efe44e0726068581d777f423fabfb878a2238ed2c87b690c0c0014ebd12b6968354
languageName: node
linkType: hard
"@chevrotain/regexp-to-ast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/regexp-to-ast@npm:11.0.3"
checksum: 10c0/6939c5c94fbfb8c559a4a37a283af5ded8e6147b184a7d7bcf5ad1404d9d663c78d81602bd8ea8458ec497358a9e1671541099c511835d0be2cad46f00c62b3f
languageName: node
linkType: hard
"@chevrotain/types@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/types@npm:11.0.3"
checksum: 10c0/72fe8f0010ebef848e47faea14a88c6fdc3cdbafaef6b13df4a18c7d33249b1b675e37b05cb90a421700c7016dae7cd4187ab6b549e176a81cea434f69cd2503
languageName: node
linkType: hard
"@chevrotain/utils@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/utils@npm:11.0.3"
checksum: 10c0/b31972d1b2d444eef1499cf9b7576fc1793e8544910de33a3c18e07c270cfad88067f175d0ee63e7bc604713ebed647f8190db45cc8311852cd2d4fe2ef14068
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:9.4.0":
version: 9.4.0
resolution: "@cspell/cspell-bundled-dicts@npm:9.4.0"
dependencies:
"@cspell/dict-ada": "npm:^4.1.1"
"@cspell/dict-al": "npm:^1.1.1"
"@cspell/dict-aws": "npm:^4.0.16"
"@cspell/dict-bash": "npm:^4.2.2"
"@cspell/dict-companies": "npm:^3.2.7"
"@cspell/dict-cpp": "npm:^6.0.15"
"@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.12"
"@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.8"
"@cspell/dict-en-gb-mit": "npm:^3.1.14"
"@cspell/dict-en_us": "npm:^4.4.24"
"@cspell/dict-filetypes": "npm:^3.0.14"
"@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.24"
"@cspell/dict-google": "npm:^1.0.9"
"@cspell/dict-haskell": "npm:^4.0.6"
"@cspell/dict-html": "npm:^4.0.13"
"@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.13"
"@cspell/dict-monkeyc": "npm:^1.0.11"
"@cspell/dict-node": "npm:^5.0.8"
"@cspell/dict-npm": "npm:^5.2.25"
"@cspell/dict-php": "npm:^4.1.0"
"@cspell/dict-powershell": "npm:^5.0.15"
"@cspell/dict-public-licenses": "npm:^2.0.15"
"@cspell/dict-python": "npm:^4.2.23"
"@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.2"
"@cspell/dict-software-terms": "npm:^5.1.15"
"@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/49a4d97634be91bf9a41e620096870f5cd2a7880218663e2032f9bea17394d61ed5d04d7a2ca61fcaedc9d36ba792ef427ff0290b5f6f7239acf799b7f512faa
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:9.4.0":
version: 9.4.0
resolution: "@cspell/cspell-pipe@npm:9.4.0"
checksum: 10c0/9a82d7ebf05d36817d90ec4cf1d8bb42f8085396b391f88e00b81c19b4418ccbfa8dbe18cb72c5ae06b22cee3764d0f44d36194e16416fb9895759e9c782bc29
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:9.4.0":
version: 9.4.0
resolution: "@cspell/cspell-resolver@npm:9.4.0"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 10c0/a1c23f7be4f530d82ffd599dab68ff25b0ee299fc405b250fd4298b13407ca15c89b3f264c1afae66240ca60a23ef58cc2f7a776c4e1eb92196f951038d3d871
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:9.4.0":
version: 9.4.0
resolution: "@cspell/cspell-service-bus@npm:9.4.0"
checksum: 10c0/91fefe8882f10fb8c3f3a9d7e3eba467fae67c54d41adaea43a5ba3db7a11200005e3701222669b9c2cc65733178301c1fb8189fb351c944b7ca7e84293c53e3
languageName: node
linkType: hard
"@cspell/cspell-types@npm:9.4.0":
version: 9.4.0
resolution: "@cspell/cspell-types@npm:9.4.0"
checksum: 10c0/d3b421d6a84a39b198c02e8d268b50baeae5242dc12a50d50403652cfc9ee1f7c1338a2b431c60d12ab22b6e7141591f738bb8ee0ae7a9efff114ba627863050
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.16":
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.7":
version: 3.2.8
resolution: "@cspell/dict-companies@npm:3.2.8"
checksum: 10c0/22424fdf588b35db28bd617af6c6617954f8ec67bd0470ec42ad680d07ff9acfe6a0bf02f0662dda8c92c733eeaeebbd6d59942fc254efb57e61ef88609c30ca
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^6.0.15":
version: 6.0.15
resolution: "@cspell/dict-cpp@npm:6.0.15"
checksum: 10c0/6a4027590060eedb5224bdf8a3f8004249583ee11dac8dc4b3d149aa8ba8803e66b8fa7580ace7f15e5c4da3fef64dc948695b63afe5c9fd2616edd550343ae5
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.12, @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-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.8":
version: 2.1.9
resolution: "@cspell/dict-en-common-misspellings@npm:2.1.9"
checksum: 10c0/1eebaab8cfc815627912d47e6b92eab68a3e6856f008eeaa07de1b227f0ea2c1920b909381cf18e37a37280b4653f5e61d76ab1b65103995cfc7bfa3176078f3
languageName: node
linkType: hard
"@cspell/dict-en-gb-mit@npm:^3.1.14":
version: 3.1.15
resolution: "@cspell/dict-en-gb-mit@npm:3.1.15"
checksum: 10c0/64574c71c3059c05c4ab26d8c3babb79a66d29b7384cefe4bc68e7f0549c0ce2651ab07c80a7e99196e55013653dba875e53b4edc5f923d74056173b47b666a4
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.4.24":
version: 4.4.25
resolution: "@cspell/dict-en_us@npm:4.4.25"
checksum: 10c0/7a3f68107730c98f7b04744727d845119ba3278ae8c7743659868417819eb7ae9a51d819a5903f8a3aa14260e70327ede422eac9a258a40ff007a0c983c480ac
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.14":
version: 3.0.15
resolution: "@cspell/dict-filetypes@npm:3.0.15"
checksum: 10c0/2bf7c592fbe4755dfff8375fbe422b0ac6c0daebc71d4641141611520aeb67e043e9016075b7855513306b594980a6b55af2069e10848256493fcb39a34d0725
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.24":
version: 6.0.24
resolution: "@cspell/dict-golang@npm:6.0.24"
checksum: 10c0/2d6e63e606215db7c29fe312d2414da585372d7c994ce1ba2808a4bf13c5410b0e4318efda9b2ccaab020a3bbc6d8f06c910dbd1a5cc24946ff7e378ffbb591b
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.13":
version: 4.0.13
resolution: "@cspell/dict-html@npm:4.0.13"
checksum: 10c0/d6f67455ba6df69cf9a558588edec12193b7444921252453ca27650ac876953b900bf9e0ab38f45d6d27022938186d6d94988ac864d79530ea19b8c3c03356f7
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.13":
version: 2.0.13
resolution: "@cspell/dict-markdown@npm:2.0.13"
peerDependencies:
"@cspell/dict-css": ^4.0.18
"@cspell/dict-html": ^4.0.13
"@cspell/dict-html-symbol-entities": ^4.0.4
"@cspell/dict-typescript": ^3.2.3
checksum: 10c0/9f8de4d2548e23997fb77cc1fc03330d4a3ff58bc6f23855773bfb93053ca7f17e3d8374c06947b08ed60334842041c939be4324d046040d500bb0a5ad198ce1
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.25":
version: 5.2.26
resolution: "@cspell/dict-npm@npm:5.2.26"
checksum: 10c0/9465c08208134fce1fdb132e7018c771eb7574f773ace9f5b2b903f96da162cee802e134c0cb589d86d9d710444ebe46612909a881fb8ab8a87ae14fd479c46e
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-php@npm:4.1.0"
checksum: 10c0/ff9227e9ada98f949d543ffd653b88638079b429040a6b1ef69ff7845dcaf4d4854d5303459e32a5aa306d0f87871848db72ed8ec335ede30bfae642c65e4e66