-
Notifications
You must be signed in to change notification settings - Fork 4
/
yarn.lock
8573 lines (7706 loc) · 290 KB
/
yarn.lock
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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@ampproject/remapping@npm:2.3.0, @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: 81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1802.2, @angular-devkit/architect@npm:>= 0.1800.0 < 0.1900.0":
version: 0.1802.2
resolution: "@angular-devkit/architect@npm:0.1802.2"
dependencies:
"@angular-devkit/core": "npm:18.2.2"
rxjs: "npm:7.8.1"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
checksum: 2e41e6109fc13b9600f5fcca8d7b326373f28e4600cd52d50468d3e98e0d82b6d84b9fb9f28f785e6527e4ca9931044d759e551d33debfa0067a5466439930a1
languageName: node
linkType: hard
"@angular-devkit/architect@npm:>= 0.1700.0 < 0.1800.0":
version: 0.1701.2
resolution: "@angular-devkit/architect@npm:0.1701.2"
dependencies:
"@angular-devkit/core": "npm:17.1.2"
rxjs: "npm:7.8.1"
checksum: c1a1fc7b79a0098e013988ae9cecf31067ed29d1b35de8eec02ca92e078b4aefd81ba32070e0e81558200042688857ebfd3d1d0481ea0cb4b1cecf7daa8cab8b
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.1.2":
version: 17.1.2
resolution: "@angular-devkit/core@npm:17.1.2"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.0"
picomatch: "npm:3.0.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 2e589c681126238a6d1ff2c256d4b18c64da86303ebae1545bc8f9923b9d282752fc03972c5c2cf8b48bdd3452c301124ee7acc7ab98a8f9d703618b1aeb44d2
languageName: node
linkType: hard
"@angular-devkit/core@npm:18.2.2, @angular-devkit/core@npm:^18.0.0":
version: 18.2.2
resolution: "@angular-devkit/core@npm:18.2.2"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
peerDependenciesMeta:
chokidar:
optional: true
checksum: 97760a5c096e7da4601e6301678274c63a04570b22d851211543fdb063005a2d858befc8ab5048e9f2ae8dcc369296c5eeec535f40cb9122032e797d20cccd44
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:18.2.2, @angular-devkit/schematics@npm:^18.0.0, @angular-devkit/schematics@npm:^18.2.0":
version: 18.2.2
resolution: "@angular-devkit/schematics@npm:18.2.2"
dependencies:
"@angular-devkit/core": "npm:18.2.2"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.11"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
checksum: dcebbca36e5217f4478f8ebe0596d7751018e4b04c9b78c9f9edc513da520cc12f05b56d64d2e43c80050e2dee719ef9a04aed172a16da4674aaa82f57cc06fc
languageName: node
linkType: hard
"@angular/build@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/build@npm:18.2.2"
dependencies:
"@ampproject/remapping": "npm:2.3.0"
"@angular-devkit/architect": "npm:0.1802.2"
"@babel/core": "npm:7.25.2"
"@babel/helper-annotate-as-pure": "npm:7.24.7"
"@babel/helper-split-export-declaration": "npm:7.24.7"
"@babel/plugin-syntax-import-attributes": "npm:7.24.7"
"@inquirer/confirm": "npm:3.1.22"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
browserslist: "npm:^4.23.0"
critters: "npm:0.0.24"
esbuild: "npm:0.23.0"
fast-glob: "npm:3.3.2"
https-proxy-agent: "npm:7.0.5"
listr2: "npm:8.2.4"
lmdb: "npm:3.0.13"
magic-string: "npm:0.30.11"
mrmime: "npm:2.0.0"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.2"
piscina: "npm:4.6.1"
rollup: "npm:4.20.0"
sass: "npm:1.77.6"
semver: "npm:7.6.3"
vite: "npm:5.4.0"
watchpack: "npm:2.4.1"
peerDependencies:
"@angular/compiler-cli": ^18.0.0
"@angular/localize": ^18.0.0
"@angular/platform-server": ^18.0.0
"@angular/service-worker": ^18.0.0
less: ^4.2.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.4 <5.6"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
less:
optional: true
postcss:
optional: true
tailwindcss:
optional: true
checksum: e85ab98cd2b46d7ad41e23b40caafcbf9030dded6e74b1d1508478aaceb3f6414d5b8ae855b7cefa06c768fd4d1fccbb40be827dc71992035f1ab6d156fce116
languageName: node
linkType: hard
"@angular/cdk@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/cdk@npm:18.2.2"
dependencies:
parse5: "npm:^7.1.2"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^18.0.0 || ^19.0.0
"@angular/core": ^18.0.0 || ^19.0.0
rxjs: ^6.5.3 || ^7.4.0
dependenciesMeta:
parse5:
optional: true
checksum: c95cf4862e1fe73980d4bfa331b4f06e106a7e698bcbd0849da69ff8e7dec5c9e3d13dbd7a0f8f82c96795230ddfe2731bd9c8f5200218a751e77b709ebf765a
languageName: node
linkType: hard
"@angular/cli@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/cli@npm:18.2.2"
dependencies:
"@angular-devkit/architect": "npm:0.1802.2"
"@angular-devkit/core": "npm:18.2.2"
"@angular-devkit/schematics": "npm:18.2.2"
"@inquirer/prompts": "npm:5.3.8"
"@listr2/prompt-adapter-inquirer": "npm:2.0.15"
"@schematics/angular": "npm:18.2.2"
"@yarnpkg/lockfile": "npm:1.1.0"
ini: "npm:4.1.3"
jsonc-parser: "npm:3.3.1"
listr2: "npm:8.2.4"
npm-package-arg: "npm:11.0.3"
npm-pick-manifest: "npm:9.1.0"
pacote: "npm:18.0.6"
resolve: "npm:1.22.8"
semver: "npm:7.6.3"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
dependenciesMeta:
esbuild:
built: true
puppeteer:
built: true
bin:
ng: bin/ng.js
checksum: df1c4f8a3e45e037626b5e107709ce8d867fb6ae2fef5bf6d2467e826e9db48c51b0ba5805dc93604fe65084774bd12a126ad5a6c55cdf5ba7bdad6fcc29ea4e
languageName: node
linkType: hard
"@angular/common@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/common@npm:18.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 18.2.2
rxjs: ^6.5.3 || ^7.4.0
checksum: acbb87ccdf5d399353cd340f047b2285eeaf209c4850547406ac142a690c980c6b4c64314c366ca969d4e3ec4e32bca8014c904e8c200fb173fcbe84ed36092d
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/compiler-cli@npm:18.2.2"
dependencies:
"@babel/core": "npm:7.25.2"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^3.0.0"
convert-source-map: "npm:^1.5.1"
reflect-metadata: "npm:^0.2.0"
semver: "npm:^7.0.0"
tslib: "npm:^2.3.0"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 18.2.2
typescript: ">=5.4 <5.6"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: ff2f3361ff0c5c0ee8b2a73082a95cf4e18beefedffb4a7e18d2f49f002cccb0c07619f981529614259b20a5733ae1a77271779155c7421b5c3cb94d2676db6a
languageName: node
linkType: hard
"@angular/compiler@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/compiler@npm:18.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 18.2.2
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 31f0feac72f2a284561d3568277a033af93deeb2c242122334a7ee988c772eff4c7ce2faf564c9bdb9d139c21d2f599bdfa322f321cf711e4934471a7b02c0cd
languageName: node
linkType: hard
"@angular/core@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/core@npm:18.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.14.10
checksum: 9392d542a72d9acafe9be30a7a60f2cd791c15641c6111e5bc4d684407424d7c8329078368170eeb74b60fa95d124a86a64dee53d67bf32f521d025c1d8e8b60
languageName: node
linkType: hard
"@angular/forms@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/forms@npm:18.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 18.2.2
"@angular/core": 18.2.2
"@angular/platform-browser": 18.2.2
rxjs: ^6.5.3 || ^7.4.0
checksum: 6b8f1b6580bc07d35dd77ed154d094fd4b0255fd9e1d30548ee105e3155916c300dbd1480ced61be1c2ca7f32e28550a011808128cdab9304f58ecce5625158b
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/platform-browser-dynamic@npm:18.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 18.2.2
"@angular/compiler": 18.2.2
"@angular/core": 18.2.2
"@angular/platform-browser": 18.2.2
checksum: 023bc9e47847b4da0ccb298ba4538f1ed166d9147e638867509e37fb71379394bb8262e3b6ca7d62fbe7c03f27b0309e9f6619cf4f695d7878da78955a37c437
languageName: node
linkType: hard
"@angular/platform-browser@npm:^18.2.0":
version: 18.2.2
resolution: "@angular/platform-browser@npm:18.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 18.2.2
"@angular/common": 18.2.2
"@angular/core": 18.2.2
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 76ae5028e28a21fef24470a7576609c75b2b02cc4cabb585eab2736bc2d3c39f2dc07f017fef4315f64d7b3797ed4e0d4b6ba834a3ba82c53c259c7265244883
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^2.0.1":
version: 2.0.1
resolution: "@arcanis/slice-ansi@npm:2.0.1"
checksum: 4be982d31e5aeeb1a8a06469537f26d954a856eecc741a60704cfe37acc3f5a2d439ec475dbe2f581ac2853a32e531ef5de3e8f977e31938c45c4edbe21d70e0
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.2":
version: 7.25.4
resolution: "@babel/compat-data@npm:7.25.4"
checksum: 50d79734d584a28c69d6f5b99adfaa064d0f41609a378aef04eb06accc5b44f8520e68549eba3a082478180957b7d5783f1bfb1672e4ae8574e797ce8bae79fa
languageName: node
linkType: hard
"@babel/core@npm:7.25.2":
version: 7.25.2
resolution: "@babel/core@npm:7.25.2"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.24.7"
"@babel/generator": "npm:^7.25.0"
"@babel/helper-compilation-targets": "npm:^7.25.2"
"@babel/helper-module-transforms": "npm:^7.25.2"
"@babel/helpers": "npm:^7.25.0"
"@babel/parser": "npm:^7.25.0"
"@babel/template": "npm:^7.25.0"
"@babel/traverse": "npm:^7.25.2"
"@babel/types": "npm:^7.25.2"
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: a425fa40e73cb72b6464063a57c478bc2de9dbcc19c280f1b55a3d88b35d572e87e8594e7d7b4880331addb6faef641bbeb701b91b41b8806cd4deae5d74f401
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.6":
version: 7.25.6
resolution: "@babel/generator@npm:7.25.6"
dependencies:
"@babel/types": "npm:^7.25.6"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^2.5.1"
checksum: f89282cce4ddc63654470b98086994d219407d025497f483eb03ba102086e11e2b685b27122f6ff2e1d93b5b5fa0c3a6b7e974fbf2e4a75b685041a746a4291e
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:7.24.7":
version: 7.24.7
resolution: "@babel/helper-annotate-as-pure@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 4679f7df4dffd5b3e26083ae65228116c3da34c3fff2c11ae11b259a61baec440f51e30fd236f7a0435b9d471acd93d0bc5a95df8213cbf02b1e083503d81b9a
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.25.2":
version: 7.25.2
resolution: "@babel/helper-compilation-targets@npm:7.25.2"
dependencies:
"@babel/compat-data": "npm:^7.25.2"
"@babel/helper-validator-option": "npm:^7.24.8"
browserslist: "npm:^4.23.1"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: de10e986b5322c9f807350467dc845ec59df9e596a5926a3b5edbb4710d8e3b8009d4396690e70b88c3844fe8ec4042d61436dd4b92d1f5f75655cf43ab07e99
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-module-imports@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 97c57db6c3eeaea31564286e328a9fb52b0313c5cfcc7eee4bc226aebcf0418ea5b6fe78673c0e4a774512ec6c86e309d0f326e99d2b37bfc16a25a032498af0
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.25.2":
version: 7.25.2
resolution: "@babel/helper-module-transforms@npm:7.25.2"
dependencies:
"@babel/helper-module-imports": "npm:^7.24.7"
"@babel/helper-simple-access": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
"@babel/traverse": "npm:^7.25.2"
peerDependencies:
"@babel/core": ^7.0.0
checksum: adaa15970ace0aee5934b5a633789b5795b6229c6a9cf3e09a7e80aa33e478675eee807006a862aa9aa517935d81f88a6db8a9f5936e3a2a40ec75f8062bc329
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.24.7":
version: 7.24.8
resolution: "@babel/helper-plugin-utils@npm:7.24.8"
checksum: 0376037f94a3bfe6b820a39f81220ac04f243eaee7193774b983e956c1750883ff236b30785795abbcda43fac3ece74750566830c2daa4d6e3870bb0dff34c2d
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-simple-access@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 7230e419d59a85f93153415100a5faff23c133d7442c19e0cd070da1784d13cd29096ee6c5a5761065c44e8164f9f80e3a518c41a0256df39e38f7ad6744fed7
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:7.24.7":
version: 7.24.7
resolution: "@babel/helper-split-export-declaration@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 0254577d7086bf09b01bbde98f731d4fcf4b7c3fa9634fdb87929801307c1f6202a1352e3faa5492450fa8da4420542d44de604daf540704ff349594a78184f6
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.8":
version: 7.24.8
resolution: "@babel/helper-string-parser@npm:7.24.8"
checksum: 6361f72076c17fabf305e252bf6d580106429014b3ab3c1f5c4eb3e6d465536ea6b670cc0e9a637a77a9ad40454d3e41361a2909e70e305116a23d68ce094c08
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.24.8":
version: 7.24.8
resolution: "@babel/helper-validator-option@npm:7.24.8"
checksum: 73db93a34ae89201351288bee7623eed81a54000779462a986105b54ffe82069e764afd15171a428b82e7c7a9b5fec10b5d5603b216317a414062edf5c67a21f
languageName: node
linkType: hard
"@babel/helpers@npm:^7.25.0":
version: 7.25.6
resolution: "@babel/helpers@npm:7.25.6"
dependencies:
"@babel/template": "npm:^7.25.0"
"@babel/types": "npm:^7.25.6"
checksum: 448c1cdabccca42fd97a252f73f1e4bcd93776dbf24044f3b4f49b756bf2ece73ee6df05177473bb74ea7456dddd18d6f481e4d96d2cc7839d078900d48c696c
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a
languageName: node
linkType: hard
"@babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.6":
version: 7.25.6
resolution: "@babel/parser@npm:7.25.6"
dependencies:
"@babel/types": "npm:^7.25.6"
bin:
parser: ./bin/babel-parser.js
checksum: f88a0e895dbb096fd37c4527ea97d12b5fc013720602580a941ac3a339698872f0c911e318c292b184c36b5fbe23b612f05aff9d24071bc847c7b1c21552c41d
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:7.24.7":
version: 7.24.7
resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.24.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eccc54d0f03c96d0eec7a6e2fa124dadbc7298345b62ffc4238f173308c4325b5598f139695ff05a95cf78412ef6903599e4b814496612bf39aad4715a16375b
languageName: node
linkType: hard
"@babel/template@npm:^7.25.0":
version: 7.25.0
resolution: "@babel/template@npm:7.25.0"
dependencies:
"@babel/code-frame": "npm:^7.24.7"
"@babel/parser": "npm:^7.25.0"
"@babel/types": "npm:^7.25.0"
checksum: 4e31afd873215744c016e02b04f43b9fa23205d6d0766fb2e93eb4091c60c1b88897936adb895fb04e3c23de98dfdcbe31bc98daaa1a4e0133f78bb948e1209b
languageName: node
linkType: hard
"@babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.25.2":
version: 7.25.6
resolution: "@babel/traverse@npm:7.25.6"
dependencies:
"@babel/code-frame": "npm:^7.24.7"
"@babel/generator": "npm:^7.25.6"
"@babel/parser": "npm:^7.25.6"
"@babel/template": "npm:^7.25.0"
"@babel/types": "npm:^7.25.6"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
checksum: 964304c6fa46bd705428ba380bf73177eeb481c3f26d82ea3d0661242b59e0dd4329d23886035e9ca9a4ceb565c03a76fd615109830687a27bcd350059d6377e
languageName: node
linkType: hard
"@babel/types@npm:^7.24.7, @babel/types@npm:^7.25.0, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.6":
version: 7.25.6
resolution: "@babel/types@npm:7.25.6"
dependencies:
"@babel/helper-string-parser": "npm:^7.24.8"
"@babel/helper-validator-identifier": "npm:^7.24.7"
to-fast-properties: "npm:^2.0.0"
checksum: 89d45fbee24e27a05dca2d08300a26b905bd384a480448823f6723c72d3a30327c517476389b7280ce8cb9a2c48ef8f47da7f9f6d326faf6f53fd6b68237bdc4
languageName: node
linkType: hard
"@bgotink/kdl@npm:0.2.0-next.0":
version: 0.2.0-next.0
resolution: "@bgotink/kdl@npm:0.2.0-next.0"
checksum: 7a0c3643370b1a79b4e8a516957a804e3186cf13e5d58c3d073a2a031e6e79d0aed476423627da9f813d6955497758b18b64db5676245933a54d88c0bdcf582c
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:8.14.4":
version: 8.14.4
resolution: "@cspell/cspell-bundled-dicts@npm:8.14.4"
dependencies:
"@cspell/dict-ada": "npm:^4.0.2"
"@cspell/dict-aws": "npm:^4.0.4"
"@cspell/dict-bash": "npm:^4.1.4"
"@cspell/dict-companies": "npm:^3.1.4"
"@cspell/dict-cpp": "npm:^5.1.16"
"@cspell/dict-cryptocurrencies": "npm:^5.0.0"
"@cspell/dict-csharp": "npm:^4.0.2"
"@cspell/dict-css": "npm:^4.0.13"
"@cspell/dict-dart": "npm:^2.2.1"
"@cspell/dict-django": "npm:^4.1.0"
"@cspell/dict-docker": "npm:^1.1.7"
"@cspell/dict-dotnet": "npm:^5.0.5"
"@cspell/dict-elixir": "npm:^4.0.3"
"@cspell/dict-en-common-misspellings": "npm:^2.0.4"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.3.23"
"@cspell/dict-filetypes": "npm:^3.0.4"
"@cspell/dict-flutter": "npm:^1.0.0"
"@cspell/dict-fonts": "npm:^4.0.0"
"@cspell/dict-fsharp": "npm:^1.0.1"
"@cspell/dict-fullstack": "npm:^3.2.0"
"@cspell/dict-gaming-terms": "npm:^1.0.5"
"@cspell/dict-git": "npm:^3.0.0"
"@cspell/dict-golang": "npm:^6.0.12"
"@cspell/dict-google": "npm:^1.0.1"
"@cspell/dict-haskell": "npm:^4.0.1"
"@cspell/dict-html": "npm:^4.0.5"
"@cspell/dict-html-symbol-entities": "npm:^4.0.0"
"@cspell/dict-java": "npm:^5.0.7"
"@cspell/dict-julia": "npm:^1.0.1"
"@cspell/dict-k8s": "npm:^1.0.6"
"@cspell/dict-latex": "npm:^4.0.0"
"@cspell/dict-lorem-ipsum": "npm:^4.0.0"
"@cspell/dict-lua": "npm:^4.0.3"
"@cspell/dict-makefile": "npm:^1.0.0"
"@cspell/dict-monkeyc": "npm:^1.0.6"
"@cspell/dict-node": "npm:^5.0.1"
"@cspell/dict-npm": "npm:^5.1.4"
"@cspell/dict-php": "npm:^4.0.10"
"@cspell/dict-powershell": "npm:^5.0.8"
"@cspell/dict-public-licenses": "npm:^2.0.8"
"@cspell/dict-python": "npm:^4.2.6"
"@cspell/dict-r": "npm:^2.0.1"
"@cspell/dict-ruby": "npm:^5.0.3"
"@cspell/dict-rust": "npm:^4.0.5"
"@cspell/dict-scala": "npm:^5.0.3"
"@cspell/dict-software-terms": "npm:^4.1.3"
"@cspell/dict-sql": "npm:^2.1.5"
"@cspell/dict-svelte": "npm:^1.0.2"
"@cspell/dict-swift": "npm:^2.0.1"
"@cspell/dict-terraform": "npm:^1.0.1"
"@cspell/dict-typescript": "npm:^3.1.6"
"@cspell/dict-vue": "npm:^3.0.0"
checksum: 6211a1cf6ee332da0b5d16beda1b5c3fc2060ec0f99ea836bd0d6fc2a9986f71424923614597d4f810e899b6a8ca97bd668641679c61b76d6620c4520acd1538
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:8.14.4":
version: 8.14.4
resolution: "@cspell/cspell-pipe@npm:8.14.4"
checksum: bc866f98b65c28a30ed827a7ae895cccfffe0285e7e4553a21692550f0622aca6178189eb168eba32643d8f71558bc2d69a51292328aa61f29e37709771b393a
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:8.14.4":
version: 8.14.4
resolution: "@cspell/cspell-resolver@npm:8.14.4"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 05a369ceecdd555090f9afd9c47893641398b0b1aacb77d8eb8282e8b6fc8426f3362904c055dfac245aa0103b505a9f1b6303a9d82d68976e76a3c798008806
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:8.14.4":
version: 8.14.4
resolution: "@cspell/cspell-service-bus@npm:8.14.4"
checksum: d83c6a8f9698e5c731007637df4d5986659b6a81ebb81db42011ffc9ed48e1964df8bbbe57bbdb37f3cad79909ff5d6f8d8c933a7ab62dc32708b585ba4e0fef
languageName: node
linkType: hard
"@cspell/cspell-types@npm:8.14.4":
version: 8.14.4
resolution: "@cspell/cspell-types@npm:8.14.4"
checksum: 6cfb2c792abf796c8cac741c264ab371393194f3656e501d9ba394fc9a5d974ddcede440c50e919ba251d5525a1dd8c1b2b800e58788f583d7a45ce6da01f8ad
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-ada@npm:4.0.2"
checksum: ef2e34ddfc635a398522a04b0193e2130051a644dffa52f31faa59e864f88d1624b50b53115ed16cc4508f36b43ba8819f504635f437f34ee7d451d3bb441a71
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.4":
version: 4.0.4
resolution: "@cspell/dict-aws@npm:4.0.4"
checksum: 0e42d3b1d6b5f43481ce2c258f8e4c61e6cbcfd6c6addad48555b21e159d49bb82ebefa1da2f5555fc81e4f8fa3a637d974fed4b57498ec8e4fb0928c24aa20b
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.4":
version: 4.1.5
resolution: "@cspell/dict-bash@npm:4.1.5"
checksum: 1d1724393b3e5e41f34cd25ea1ea4de13042d13eb4367a204e8319c8701a1310b54e3c4739cfd275dc170b32f618567079bcf8c2881917756037c6c35f078eac
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.1.4":
version: 3.1.4
resolution: "@cspell/dict-companies@npm:3.1.4"
checksum: ffa5b25a73c6754d9da8ce8238928dad1be71f6269012c2c5752a9bd2d42a0774f028837ae85e647a8ec0b40b0824d1e0bd34809a7395849017b604b0f42076c
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^5.1.16":
version: 5.1.19
resolution: "@cspell/dict-cpp@npm:5.1.19"
checksum: 0f78aeaf26f9287174c7142892e06190f5d36b5a7714122e3aeb5bce8d8b2df0bb8b0ef14c60817d3a1c75872dace97da010a0df862788f4d3bd903a8d7a194f
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.0"
checksum: d5b124eb5d037103ffa2b282779dda8a01ec6622c5498282e05b58f92ce262dae9ac8995748e47a89578e9d658ffd963aa430e85699618c8428166fbe741370d
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-csharp@npm:4.0.2"
checksum: 146b7edeb8aa1acf6b0ccb283a2a5e0e8f2612e6fc67cca9b26e0fabe954a92042d314860bb5418522d6db265bd5933b6c68004d2b8225ad89498bf795b51f89
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.13":
version: 4.0.13
resolution: "@cspell/dict-css@npm:4.0.13"
checksum: 6ba283825c3e25ff46503db3e38fc8ee27469463fcd2f85f01e673029e4fe34f097f4991288673569d0ba17c2c08b4c663de14d6b4dc6259fd9934f12131198c
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.2.1":
version: 2.2.1
resolution: "@cspell/dict-dart@npm:2.2.1"
checksum: 7aab07d7ee03ef8846397d6fc575fc9e2bf0e2d052060778e1a443a9f37bc09d34b94cc4a30b631d7a7682bfd3af3b9db57b500a8a0b9ebd3f1e1719bf0625b4
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.1":
version: 2.0.2
resolution: "@cspell/dict-data-science@npm:2.0.2"
checksum: 122084d09d3a9bc990e07ac571f16410f1c841112c2d99fc1e8b722a540319088b47df6b48bc050fce8e1e6626f245ab1afce4402475d3e5dbdfb48e25d9c8b3
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-django@npm:4.1.0"
checksum: 85b7f58d772f169f7471f2c1bcb8a0207cdff7c32677bf470bcbcc74ce6498269623cfcc7910730eeac7f052633f8d4c63574367c1afe5f46a2917748ed397ca
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.7":
version: 1.1.7
resolution: "@cspell/dict-docker@npm:1.1.7"
checksum: e34428f3e18d3ebb94854e4034746a8a0ef81354994f09d289254f75b9ce11fee53f64c706e1e598d5131fbe50d536401c4e5b854e44b965e6e193d454fa87b7
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.5":
version: 5.0.5
resolution: "@cspell/dict-dotnet@npm:5.0.5"
checksum: 8d6a7c29b5ca1f8decdf0fcfaadd4e6098cb948d99b02eae343ba1bfcdd42fdb8332e9f48b5756f2405e5c488b4e6f955330bab321968ffd0702f8d5966ba74a
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-elixir@npm:4.0.3"
checksum: c24b742b0615f310c89a05ded6648a63ee8e0a9d63326fd155846ce4acba2337a1cef3f58d653b9d8f4b6636d466dfeac2bf7122f374ae39a4d539894ebc5523
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.0.4":
version: 2.0.4
resolution: "@cspell/dict-en-common-misspellings@npm:2.0.4"
checksum: b26132803f9408c766ff5a5e83a5b42a63921f4771d6dadc46bda9bf27f29f9735b69a1ff8230de735ba191b0788123dcb9dbbe9c40c2b1c029f9cdf8a9345ac
languageName: node
linkType: hard
"@cspell/dict-en-gb@npm:1.1.33":
version: 1.1.33
resolution: "@cspell/dict-en-gb@npm:1.1.33"
checksum: 09563d1016f652dc8164a5f692be49beb78a847a54d5e470d406ae4db125bf8021db75d3db63f7a0c1d1b7a5dfbec4b709fb2ff3520447dcad690adb98d74130
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.3.23":
version: 4.3.23
resolution: "@cspell/dict-en_us@npm:4.3.23"
checksum: fc9bda1cb345cebcb25bb40008b87867418c3ec7ab758b1758a333aff724fac978a446106a19cce25e3401d41e5e6520ab1cad1f793c9e4ec24858aea0e37d20
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.4":
version: 3.0.4
resolution: "@cspell/dict-filetypes@npm:3.0.4"
checksum: 8400748182c641d3308acd827b126380fd4b9b428a1bedc6bed53f7e21ee011e8acc99c5b177b75d1bafe1bf7ae6b1a6bf45406bccdd346ef62d64089ad0285e
languageName: node
linkType: hard
"@cspell/dict-flutter@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-flutter@npm:1.0.0"
checksum: 2f57e95bc81c0af59aab5d4b204f9171b8c6e0b75ac6d104500ed223336f77a97eca9e4159cccc7b8a9778db7e91ecc303bc4fa01d8a364dc010aa02e04f6b5a
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-fonts@npm:4.0.0"
checksum: d7b62691ebb34cf5538f65e18e4188716a87e3fcd56cabde090040b5c81676bc0004304bda47bc14c58417ac710b4627b3513a5bbeb99be1fae6d9b5f291bd2c
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-fsharp@npm:1.0.1"
checksum: bc1a83f35eab65e4704889cbfa4625dbbf07219987c2535f0c469f741f047ee8d14ea2fb65d32b669fd27b63a79a119b65e587d28ec9608e064a6f49d2274ca6
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.2.0":
version: 3.2.0
resolution: "@cspell/dict-fullstack@npm:3.2.0"
checksum: fdf7577808a435a8af2535b81d9cd645693563602d0e0babd1c7206b6fefb2349d51082e4610b6bc162ec93fed10c6a28b016d880af0d60203d68994b07071f4
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-gaming-terms@npm:1.0.5"
checksum: 2017d228104dcf1642fce087e1e1aae76927d0d05f229bd44d0652acfdf93c17e287079920b885f7d78bd9154434ace674d986e94425b9187e4984d54b410597
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-git@npm:3.0.0"
checksum: baf9de7896f4da603600c735fe861c8ce3db8f8533ac6f52b0541096090ae8efcdcde33aab19b69e8bd6d72af45d664b1f2cfda6fbb157a81608bc6d0d39ce6d
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.12":
version: 6.0.13
resolution: "@cspell/dict-golang@npm:6.0.13"
checksum: 4f6831bfaba8afe82e706e2e702a1aae719201f5f24a8d3e0ce876755bdee23e742712ba820facfc645a943054deddea9707017385862addefa51120590e8135
languageName: node
linkType: hard
"@cspell/dict-google@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-google@npm:1.0.1"
checksum: de4678cb861c0103c821f435098d38b6874a628c08ba154fa0c4a75594abefe61299578eb5cec745623590e539cda6512425144eac336cd375ae1e2449d532e1
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-haskell@npm:4.0.1"
checksum: 7693a06b74a393aec35b67304ae56dad1ce3509951bec64053d992011e0309e9c420edd13a073ab3e500c0ac53e15dd92472097d689f7602c6d9ad10a2ee0dab
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.0"
checksum: 35d3223f02f0d091ac6a93424d4c31a075ece530bee00853ee1f5827e5ed25d08407a522a3c747cbfbaa891333df3aa9cf6107a21f2a030667f74228655c9081
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-html@npm:4.0.5"
checksum: 6e1b9262bba042a951a6020dfd99efb5fb3a29a5ad8bbdc96a1dd197dc1d89384448afd3b6ff7227a48f2439a90bd3b297566b35c94dcc032f8b473ac147c16a
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.7":
version: 5.0.7
resolution: "@cspell/dict-java@npm:5.0.7"
checksum: ea3ff17db1e618b6ef4c6f6cf34dc9409dd85831f8b3f0ec55da6b238cfae1f8b13ff6de717d355f3668605004047f538e46f1502d7f0fee7100267a5d34db0a
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-julia@npm:1.0.1"
checksum: 7c8fbe4f1e6df956f9ad87b05fa6c21f19607951b1eaadda3823e43a533aa52bec54bf2887cb59308167d9bd9bf7252b0fffeb2ac50a1cc0d46bcfb0f561ac10
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.6":
version: 1.0.6
resolution: "@cspell/dict-k8s@npm:1.0.6"
checksum: d9bb457c03bc65d156915fedccebf7e3f387fab09d1b4b79c368e761b1bf22f4e1b6f35932592427a04cdf76aecf5c2eb3f80639f4e3a6a1d9c77d30aa1a1ddc
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-latex@npm:4.0.0"
checksum: d96392866378e680d2fe29770bb8f38b1abad8c2b5b29e003bdbfe7aee79de1841fe699b6e357629e7b94dbaf882fd33e5e316d066be7fc02f0cea6caa8dcde4
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.0"
checksum: 9f518643664f4ccc8b3e4126abf78385d9ea4abd1d9fc4d5e89f3a140175c62e2d5f729a97845d912f899e908dd8a9ebbc3a0debd2a41f15cee7a2f15d44b04b
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-lua@npm:4.0.3"
checksum: 3c6bf9942f3194071d293c0024e3be1b203cdd953222cc4140e97572f1991697c3cc7b6be0c828788eaefb72e7013c8b41937e9b1c14188f79c38b45786fcca5
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-makefile@npm:1.0.0"
checksum: b0618d71cfae52c8cbe023d316195ff7fc80b29504ed983e4994df6109b62ef1e3af00500cf60ad9489b9ca9ca85b33aeb8a56f6dfff4bf8e1ac08b25a38e823
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.0.6":
version: 1.0.6
resolution: "@cspell/dict-monkeyc@npm:1.0.6"
checksum: 8d0889be1fda98825172b34330dfdf0b3da73fb0167cf4018771428e80ec91e205bc655538a9959ed5e7ebcc1f6842916485d037a726a098e725874b19c0ac9e
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.1":
version: 5.0.1
resolution: "@cspell/dict-node@npm:5.0.1"
checksum: ef1d5fb11a4591dde96cc65425aff8f856a39d922c04b796e7cf4e4f6693a01ca32d24be3258334e9629a57b7213a5bd53d21189b1861e2f21b5113510980374
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.1.4":
version: 5.1.5
resolution: "@cspell/dict-npm@npm:5.1.5"
checksum: 4a8c376a8363b6534f682cb7892ca16c30d3eba0ea7997399c1400c345cd82d150fbc4bc4cc85257e571523d75a2a50d8c37533bd7243c2bf6a0ac544784740c
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.10":
version: 4.0.10
resolution: "@cspell/dict-php@npm:4.0.10"
checksum: b2dc8da435f022f26c25fb563100050cd6305448e9cac6ab1641d1710fdd2c0639a9ac08d8009ed599af1c739cc2585ebdcb2972e34fd9149b903654449f02cd
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.8":
version: 5.0.10
resolution: "@cspell/dict-powershell@npm:5.0.10"
checksum: 01421d8f8652c9349ed177b96f3f9d34ef2725b48ce5bf7b05b9d83221e4a46e6d61c9b64cf29c898d7685baeab03ee280e85f3af1934b1548004d5c019da8f5
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.8":
version: 2.0.8
resolution: "@cspell/dict-public-licenses@npm:2.0.8"
checksum: a49f874ded85146cd6b8d668c76f06a81ce6578c0ed4a4cfc8e4218a56887d4c7f63566f7a79ccf1c2e59fdac6f7b6bdfafb8ee5260462e618f11476aaa43145
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.2.6":
version: 4.2.8
resolution: "@cspell/dict-python@npm:4.2.8"
dependencies:
"@cspell/dict-data-science": "npm:^2.0.1"
checksum: 77e203165e6251b9814a8fc92ac59276f0acef8ce85eaf782b178379f103f5bb2b425bc4c9373f5a4b817d0478d590026109dbc4cced4d3bfac2087b27e6bf63
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-r@npm:2.0.1"
checksum: c8eead19fed04ff748c8ac75c55c4cf32b0383b0b9d05a23299e7e5d2d6f0c33fe94ff4c73080fdbd5b7e2fcdeaf726373a993122ec35e3a8f2b61f202c4a837
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.0.3":
version: 5.0.4
resolution: "@cspell/dict-ruby@npm:5.0.4"
checksum: 6ed5ef9f61e64d5553a3a7972bcc9e2011be21165cb93f2b65d45969a9c1bebe7a7d8036186371477d5bee7c3c1074da10aeb9fa464e43fba05ab794f3ef325a
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.5":
version: 4.0.6
resolution: "@cspell/dict-rust@npm:4.0.6"
checksum: c90b6c401336266b6cfdf9eb909616efc95cd83cab80a2b9d83cea5d9726303cd8b33937be3dca974274656a65ad1901dbfbaf3eb048b697403c67e802894233
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.3":
version: 5.0.3
resolution: "@cspell/dict-scala@npm:5.0.3"
checksum: 3928e07384fea92fe17ac9a1758be6ebee48558eebad54410518e5d532662166a570114709db83deeaf7f6d62b8c5324d0b34f0717bdf8ec23e9d94268e3660e
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^4.1.3":
version: 4.1.7
resolution: "@cspell/dict-software-terms@npm:4.1.7"
checksum: 9978b2a1d332d48c53c17ba57acef1cf3a8923b7c7907ea3002cc250f0b0f0f098091756eaf1db74d8b48a0ffee644921129a483ba092c45f832717c07e74ca0
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.1.5":
version: 2.1.5
resolution: "@cspell/dict-sql@npm:2.1.5"
checksum: 0104aa958b2f3e70c73832baf8ec12adbdeac23379745488dd9866a00dd78cc5197c7eb16b51cd1e58f14cb48dace9d39f4ec9c6783b722aebf5f4ec7e3e4ead
languageName: node
linkType: hard