-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
10707 lines (9617 loc) · 379 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: 10
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.3.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: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@andrewbranch/untar.js@npm:^1.0.3":
version: 1.0.3
resolution: "@andrewbranch/untar.js@npm:1.0.3"
checksum: 10/a32de53839fc61af90a394cf93d4368aacd167c9c80f0b3ba0c268460942a6ce2bfe257b6d3f03986b9dcb7368f10b9dc7f66c2f94254d2662da8278454e7d12
languageName: node
linkType: hard
"@arethetypeswrong/cli@npm:0.16.4":
version: 0.16.4
resolution: "@arethetypeswrong/cli@npm:0.16.4"
dependencies:
"@arethetypeswrong/core": "npm:0.16.4"
chalk: "npm:^4.1.2"
cli-table3: "npm:^0.6.3"
commander: "npm:^10.0.1"
marked: "npm:^9.1.2"
marked-terminal: "npm:^7.1.0"
semver: "npm:^7.5.4"
bin:
attw: dist/index.js
checksum: 10/ec6c285e37f2c681e158d16dc77e56fd4422fdcc41fc55d018f0f0e3795c32128084d7fa436cb15a5d07f77ca1a1e0b59cc2d7e641d75c9316c93dc90c0a249a
languageName: node
linkType: hard
"@arethetypeswrong/core@npm:0.16.4":
version: 0.16.4
resolution: "@arethetypeswrong/core@npm:0.16.4"
dependencies:
"@andrewbranch/untar.js": "npm:^1.0.3"
cjs-module-lexer: "npm:^1.2.3"
fflate: "npm:^0.8.2"
lru-cache: "npm:^10.4.3"
semver: "npm:^7.5.4"
typescript: "npm:5.6.1-rc"
validate-npm-package-name: "npm:^5.0.0"
checksum: 10/cb392d5b69cc0c4326d8227d783e1abb1830986c4312a5f1897b827b8947060ec7dce3b607f4a91b699bb810919d02f68f523aac93d51bdecd1eb303f49c86aa
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 10/44e58529c9d93083288dc9e649c553c5ba997475a7b0758cc3ddc4d77b8a7d985dbe78cc39c9bbc61f26d50af6da1ddf0a3427eae8cc222a9370619b671ed8f5
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-string-parser@npm:7.24.7"
checksum: 10/603d8d962bbe89907aa99a8f19a006759ab7b2464615f20a6a22e3e2e8375af37ddd0e5175c9e622e1c4b2d83607ffb41055a59d0ce34404502af30fde573a5c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10/86875063f57361471b531dbc2ea10bbf5406e12b06d249b03827d361db4cad2388c6f00936bcd9dc86479f7e2c69ea21412c2228d4b3672588b754b70a449d4b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10/62fef9b5bcea7131df4626d009029b1ae85332042f4648a4ce6e740c3fd23112603c740c45575caec62f260c96b11054d3be5987f4981a5479793579c3aac71f
languageName: node
linkType: hard
"@babel/parser@npm:^7.24.4":
version: 7.24.7
resolution: "@babel/parser@npm:7.24.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10/ef9ebce60e13db560ccc7af9235d460f6726bb7e23ae2d675098c1fc43d5249067be60d4118889dad33b1d4f85162cf66baf554719e1669f29bb20e71322568e
languageName: node
linkType: hard
"@babel/types@npm:^7.24.0, @babel/types@npm:^7.8.3":
version: 7.24.7
resolution: "@babel/types@npm:7.24.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
to-fast-properties: "npm:^2.0.0"
checksum: 10/ad3c8c0d6fb4acb0bb74bb5b4bb849b181bf6185677ef9c59c18856c81e43628d0858253cf232f0eca806f02e08eff85a1d3e636a3e94daea737597796b0b430
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 10/1a1f0e356a3bb30b5f1ced6f79c413e6ebacf130421f15fac5fcd8be5ddf98aedb4404d7f5624e3285b700e041f9ef938321f3ca4d359d5b716f96afa120d88d
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10/9d226461c1e91e95f067be2bdc5e6f99cfe55a721f45afb44122e23e4b8602eeac4ff7325af6b5a369f36396ee1514d3809af3f57769066d80d83790d8e53339
languageName: node
linkType: hard
"@commitlint/cli@npm:19.5.0":
version: 19.5.0
resolution: "@commitlint/cli@npm:19.5.0"
dependencies:
"@commitlint/format": "npm:^19.5.0"
"@commitlint/lint": "npm:^19.5.0"
"@commitlint/load": "npm:^19.5.0"
"@commitlint/read": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
tinyexec: "npm:^0.3.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 10/1d3384cc9823462da3a35308a145dc4fcf92025f7af976e1ceb9cbe9cbd7b7b83703fe0e9ca12fc7f4903ea2fe68c8c1492c18409ba301894c01cb2264a00795
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/config-validator@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
ajv: "npm:^8.11.0"
checksum: 10/681bfdcabcb0ff794ea65d95128083869c97039c3a352219d6d88a2d4f3d0412b8ec515db77433fc6b0fce072051beb103d16889d42e76ea97873191ec191b23
languageName: node
linkType: hard
"@commitlint/ensure@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/ensure@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
lodash.camelcase: "npm:^4.3.0"
lodash.kebabcase: "npm:^4.1.1"
lodash.snakecase: "npm:^4.1.1"
lodash.startcase: "npm:^4.4.0"
lodash.upperfirst: "npm:^4.3.1"
checksum: 10/a9d575637121221cb63232ee96024a63614052ccc205ec8fdab53feed70104b85608e31b4632f280d2876f10a2243474191d96e448b222abfc8d8ab48f9f8e7e
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/execute-rule@npm:19.5.0"
checksum: 10/ff05568c3a287ef8564171d5bc5d4510b2e00b552e4703f79db3d62f3cba9d669710717695d199e04c2117d41f9e72d7e43a342d5c1b62d456bc8e8bb7dda1e9
languageName: node
linkType: hard
"@commitlint/format@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/format@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
checksum: 10/685b64ebee936d71bbbf66276b11d50b0227f2ad0df3c00317d5b7e25bce8b1b8dbc65cc7c5c7fafc76cad11a83ad4378a666bf8f12a3eb1c7d6a2a6c6cb25aa
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/is-ignored@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
semver: "npm:^7.6.0"
checksum: 10/1c7ee34686fd098587f9717763473477d49e847f470a317903f922d13091271d013a046f61b43b31b34eba4e4b0f76369b7427588269bbdc4c5f622d3ace2c95
languageName: node
linkType: hard
"@commitlint/lint@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/lint@npm:19.5.0"
dependencies:
"@commitlint/is-ignored": "npm:^19.5.0"
"@commitlint/parse": "npm:^19.5.0"
"@commitlint/rules": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10/bba8cd17a90876b6b2cd2f869ee4d08cd3e5ad8a10f2c273d379d3b6602da30c46c2d9d0925710d7b9ebf180b3d1f02409adfc0f1a888cc566d88c9ee5862bdd
languageName: node
linkType: hard
"@commitlint/load@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/load@npm:19.5.0"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/execute-rule": "npm:^19.5.0"
"@commitlint/resolve-extends": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
cosmiconfig: "npm:^9.0.0"
cosmiconfig-typescript-loader: "npm:^5.0.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
checksum: 10/87a9450c768632c09e9d98993752a5622aee698642eee5a9b31c3c48625455e043406b7ea6e02a8f41d86c524c9ecbdb9b823caf67da3048f0d96531177fda28
languageName: node
linkType: hard
"@commitlint/message@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/message@npm:19.5.0"
checksum: 10/ad6993476ce3e6ed6ed7ae5327ac8d5116ca70168d9de6dff656a7e6f2b9f01a1c3ac7a13418831b5cdc3148ea9bcd78c32bdb7aa863280108e176ff803f7a51
languageName: node
linkType: hard
"@commitlint/parse@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/parse@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: 10/2a6f8bbbd79aa36a7e1128c60cecb322557110aa4aa8757c741c2f79071c540ba56957cef81fb64f4a304535e462d0c48b5c1ef1b2766fea7971d38ec5ad6384
languageName: node
linkType: hard
"@commitlint/read@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/read@npm:19.5.0"
dependencies:
"@commitlint/top-level": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
tinyexec: "npm:^0.3.0"
checksum: 10/0ea2da48ae1bab9add9e831a1659306567755c20ec74cf04e6e50ef1e520970decd259af652995f55eef422a3f1382f0e64e5fbc23606176f766f71076ad872b
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/resolve-extends@npm:19.5.0"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
global-directory: "npm:^4.0.1"
import-meta-resolve: "npm:^4.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
checksum: 10/71a1c9423570dedb55809f4ad7c35962607cb06921364116e8f2d8c3d37a7ff2a43747ad5a9cd924b58614e6880a42a3fa1510244748bb6997469b52b0fecd78
languageName: node
linkType: hard
"@commitlint/rules@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/rules@npm:19.5.0"
dependencies:
"@commitlint/ensure": "npm:^19.5.0"
"@commitlint/message": "npm:^19.5.0"
"@commitlint/to-lines": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10/2c879d2cd50a3b4572cea41f044cc3091f0a11ef5ead0bb54bfa564ea637e0d93e08ae322ec4c99bb5b379b82835ace595d1c8dab6e35c1b68b63292160a61b3
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/to-lines@npm:19.5.0"
checksum: 10/68aaca7bf1331b5f2f604e814d57f483ead81a8296f8cff5667249510a5601825dfbbaccade3d02e0aca580b973c01419276d693cc9aa888cbe11022daa9dce6
languageName: node
linkType: hard
"@commitlint/top-level@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/top-level@npm:19.5.0"
dependencies:
find-up: "npm:^7.0.0"
checksum: 10/f6b5a3746c458e12c7a9e93f7c856ba90fba6e61db614ea1201e6b6e92cb8161dd13e88d8c9b408709ea0c19bc949cffcd1dd356cb6f51fc2ede8df48c1fd410
languageName: node
linkType: hard
"@commitlint/types@npm:17.4.4":
version: 17.4.4
resolution: "@commitlint/types@npm:17.4.4"
dependencies:
chalk: "npm:^4.1.0"
checksum: 10/03c52429052d161710896d198000196bd2e60be0fd71459b22133dd83dee43e8d05ea8ee703c8369823bc40f77a54881b80d8aa4368ac52aea7f30fb234b73d2
languageName: node
linkType: hard
"@commitlint/types@npm:19.5.0, @commitlint/types@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/types@npm:19.5.0"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10/a26f33ec6987d7d93bdbd7e1b177cfac30ca056ea383faf343c6a09c0441aa057a24be1459c3d4e7e91edd2ecf8d6c4dd670948c9d22646d64767137c6db098a
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-bundled-dicts@npm:8.15.4"
dependencies:
"@cspell/dict-ada": "npm:^4.0.5"
"@cspell/dict-aws": "npm:^4.0.7"
"@cspell/dict-bash": "npm:^4.1.8"
"@cspell/dict-companies": "npm:^3.1.7"
"@cspell/dict-cpp": "npm:^5.1.22"
"@cspell/dict-cryptocurrencies": "npm:^5.0.3"
"@cspell/dict-csharp": "npm:^4.0.5"
"@cspell/dict-css": "npm:^4.0.16"
"@cspell/dict-dart": "npm:^2.2.4"
"@cspell/dict-django": "npm:^4.1.3"
"@cspell/dict-docker": "npm:^1.1.11"
"@cspell/dict-dotnet": "npm:^5.0.8"
"@cspell/dict-elixir": "npm:^4.0.6"
"@cspell/dict-en-common-misspellings": "npm:^2.0.7"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.3.26"
"@cspell/dict-filetypes": "npm:^3.0.7"
"@cspell/dict-flutter": "npm:^1.0.3"
"@cspell/dict-fonts": "npm:^4.0.3"
"@cspell/dict-fsharp": "npm:^1.0.4"
"@cspell/dict-fullstack": "npm:^3.2.3"
"@cspell/dict-gaming-terms": "npm:^1.0.8"
"@cspell/dict-git": "npm:^3.0.3"
"@cspell/dict-golang": "npm:^6.0.16"
"@cspell/dict-google": "npm:^1.0.4"
"@cspell/dict-haskell": "npm:^4.0.4"
"@cspell/dict-html": "npm:^4.0.9"
"@cspell/dict-html-symbol-entities": "npm:^4.0.3"
"@cspell/dict-java": "npm:^5.0.10"
"@cspell/dict-julia": "npm:^1.0.4"
"@cspell/dict-k8s": "npm:^1.0.9"
"@cspell/dict-latex": "npm:^4.0.3"
"@cspell/dict-lorem-ipsum": "npm:^4.0.3"
"@cspell/dict-lua": "npm:^4.0.6"
"@cspell/dict-makefile": "npm:^1.0.3"
"@cspell/dict-monkeyc": "npm:^1.0.9"
"@cspell/dict-node": "npm:^5.0.4"
"@cspell/dict-npm": "npm:^5.1.8"
"@cspell/dict-php": "npm:^4.0.13"
"@cspell/dict-powershell": "npm:^5.0.13"
"@cspell/dict-public-licenses": "npm:^2.0.11"
"@cspell/dict-python": "npm:^4.2.12"
"@cspell/dict-r": "npm:^2.0.4"
"@cspell/dict-ruby": "npm:^5.0.7"
"@cspell/dict-rust": "npm:^4.0.9"
"@cspell/dict-scala": "npm:^5.0.6"
"@cspell/dict-software-terms": "npm:^4.1.11"
"@cspell/dict-sql": "npm:^2.1.8"
"@cspell/dict-svelte": "npm:^1.0.5"
"@cspell/dict-swift": "npm:^2.0.4"
"@cspell/dict-terraform": "npm:^1.0.5"
"@cspell/dict-typescript": "npm:^3.1.10"
"@cspell/dict-vue": "npm:^3.0.3"
checksum: 10/2f425d5160ecd0d302425694997b9fae4c5990b581b5a673ffe6fc932ade0d7ec258d20d638e003414e6b0bf155c16b40e6dd2124f84e5e7e2e71e47ff0091bf
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-json-reporter@npm:8.15.4"
dependencies:
"@cspell/cspell-types": "npm:8.15.4"
checksum: 10/e42637a0fee2ff4798eae6f451992d9bb56439ea7491dd35818981e32c23bd49f6e5e08a8bbda49da7d318986b51ee869d6d07aa2765d061828ccc97981296a5
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-pipe@npm:8.15.4"
checksum: 10/500c0c921372043d663e7cc5ae13dd8c9d0127cfe49b1aefc2365fa83bc4f427bb21527ed76988c6d3af6eeb907ef46e6a0d224d15b31e0808813ec8c80f5c7e
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-resolver@npm:8.15.4"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 10/2bcf06c988bec27e036bad85ac4d74cd56ec6e0c2c24a5537e1facffb4bbc0beabf80cb4096cbbec2cb5eaf1a2ed34ed294c2b9fe38fbc0b838eeb133e2dcf9f
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-service-bus@npm:8.15.4"
checksum: 10/808767c8189afb8054f3d17b58f67cd3745a8548c20f4a7d63b3bd4e6995c35a664ba85a2cf8549cdb0189c82c2ec493c5315fd56e92e6d492de145df4000551
languageName: node
linkType: hard
"@cspell/cspell-types@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/cspell-types@npm:8.15.4"
checksum: 10/65044fbde5bda6ce510a9b3b7870bc1516e5273189c27e22a77754465af56d5fb5d19ca212dc2618d50a6bcdb81b48892aa0d17149e3479bbaafbe6277b652c4
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-ada@npm:4.0.5"
checksum: 10/fbcbbd734464c86209e25775bec0674c8f81f9d0472aac637336ed92d4a45b84a03b229bb87de027c8d96333e702842568b84d1fc016b67855c3bfe836cebbb7
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.7":
version: 4.0.7
resolution: "@cspell/dict-aws@npm:4.0.7"
checksum: 10/db675ae4dc2e6e27f8e5ea3e4c1383ab9ad3d8db8ab7b51c33b0632aea308c35b02b80412c2b834fbc0c43f9c4e18fec83b9191c1cea4dfc666edf46fb6dd15d
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.8":
version: 4.1.8
resolution: "@cspell/dict-bash@npm:4.1.8"
checksum: 10/754c91dbf74f01859a790b8690bf92cc7e633e9d40234f8a7185c12356d54b67d86e0a269c1f4aa6ae0d73462371882245395e6442e759d14b51838035b0ada7
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.1.7":
version: 3.1.7
resolution: "@cspell/dict-companies@npm:3.1.7"
checksum: 10/921a66f9ea71334bae1ab6dee083d291fdb8474c818c2ebe4eae94372d5cb12f3f2ca0e430d5203fc2c13a219522badb13d3cc89d28d8a68c8de664ee1be5054
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^5.1.22":
version: 5.1.22
resolution: "@cspell/dict-cpp@npm:5.1.22"
checksum: 10/40e1045a0fe53705e490b8ca286aec391bf103fbbdc81cd4459850bcfe3dd59fc197ba372c3b120eee9ab174475c4ee284e86fb7efa2f03df55ec82f78933146
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.3":
version: 5.0.3
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.3"
checksum: 10/00d9e3e7df52c43a3551f047537218d1452e2de45f676a05d6fee0336d0c578eea0e20867e4df1036735ff3fa6485df331d280d064b2f2c339b9c96f0d43a9a2
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-csharp@npm:4.0.5"
checksum: 10/ff0fa46889e7a32b636890166ec5ee6957affa1a6657e5f3a037a1a0fa043853e4df6b153f08496d55c13000d9de469be9e6cbbabfee04d74a41e7d6ff8b0726
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.16":
version: 4.0.16
resolution: "@cspell/dict-css@npm:4.0.16"
checksum: 10/6cf9b7f16516afd0964bcf55c21aa054368021f17f03cb8e6b740a792ba76399cc10fba9b2a80fc6cd4866988c66bdbba6620e7335b3453f843d669a9a07a06e
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.2.4":
version: 2.2.4
resolution: "@cspell/dict-dart@npm:2.2.4"
checksum: 10/d9e8b12feafafb3bda4f3e27fdec41e46ad08ccff0efbafb33c284310135989730b0ac6616c5c2cf33447da4c1b8970b8d84ce029cbf7bed95aafd75172fbf15
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.5":
version: 2.0.5
resolution: "@cspell/dict-data-science@npm:2.0.5"
checksum: 10/4e31a81a273073c54a0bb14b2bb6bba117fabdf07b09f08c46cbf997122022f5c997dcb1317357a24555864539767f5e60e45d960816c8853d0646001a54d5e4
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.3":
version: 4.1.3
resolution: "@cspell/dict-django@npm:4.1.3"
checksum: 10/561f7bcde0cad0c40c978b7ffbc11576afd966e30644444a2a0bce42670232a7d683f11497727eb02da317a269dbf3d7e859eb5cd780f9f4e8931bd3cbbb5233
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.11":
version: 1.1.11
resolution: "@cspell/dict-docker@npm:1.1.11"
checksum: 10/ecd7b59d4bd39aead48fca2e3e18cc867d5d7488b3a5a0aa38afac82856fef66627b0ccc8e7e45f857cd3d0292445b711a054d1bde7e11d325ff6ec92e1e29f8
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.8":
version: 5.0.8
resolution: "@cspell/dict-dotnet@npm:5.0.8"
checksum: 10/bdbfcf59faeba1f8473cdfad837d3fdde79c3877e67a66bcd040efb7ceacdbadcbbc0e7cb5cac4d82a9030f03e899c9c78e20bd0cfabbdbbd69d5bc345344891
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-elixir@npm:4.0.6"
checksum: 10/2bfd8d9ed8d3fcb88693fa51b091161a191a9c64d0591b04aac304571a2e61a57e829aa096e5a694dcfe4f4c9c0f1a265701a322e6fdff27711b17fe5af5508d
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.0.7":
version: 2.0.7
resolution: "@cspell/dict-en-common-misspellings@npm:2.0.7"
checksum: 10/cb5f4aba22ce657f0b6b09bc1039c10b02bb97d19fc2872dcd1e3abdcc7211f52b15961a8f1480847beac54a8871e3a98316e1759e3f71daba41d9b4fd4f147f
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: 10/72db891c955ce9b24ba756c1baad41e92854a85fe326699f9ab328358b02a76d57b65d26d02afa050c4f96668a51c1dab6fce7eaad51c70c113588bbc2b46756
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.3.26":
version: 4.3.26
resolution: "@cspell/dict-en_us@npm:4.3.26"
checksum: 10/39a8a5dc63f85cda473976e4810c46db311fc415ec648eb664641da4e3faa46249f6be77551d67b3eef350dc915b78fd248098038fc3a8de1de93426b27d728b
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.7":
version: 3.0.7
resolution: "@cspell/dict-filetypes@npm:3.0.7"
checksum: 10/8acbd25162109e8812a811fc8f942492cbf74c97ec0dd2ce30cd20ff6ff5e429b8062d255dc517749d20ed2a8d5aca64f1cfe5b3f40fc5de3b7608dd61d26a43
languageName: node
linkType: hard
"@cspell/dict-flutter@npm:^1.0.3":
version: 1.0.3
resolution: "@cspell/dict-flutter@npm:1.0.3"
checksum: 10/e4136ebc2f470650761b873be6e9ec05ca5409e7fa3f493ec6397438a4d82798c0706c2853f9647f3392b57ac813817d45decdaaf5b660a266a509427bd181f0
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-fonts@npm:4.0.3"
checksum: 10/00f478e78f306be8e34937de85c7343cde2ff58ddf3e71a930c454a69e4ccfacdd7e7cdc6d735cca20357d64c9d37ed973790c6d7fd162ac4456f621038e5733
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.0.4":
version: 1.0.4
resolution: "@cspell/dict-fsharp@npm:1.0.4"
checksum: 10/b45a4dbe6ada11c739add65fd891f6cddc15c7b56e749d4d2cfed21a8e65844c65cfd208939cccd9e7f4bc9aa7d52eb790f939dda788440f4af7bcd401435ff3
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.2.3":
version: 3.2.3
resolution: "@cspell/dict-fullstack@npm:3.2.3"
checksum: 10/85aa42f640b1e592d4813e1466fd86826c706908f4c1b5e9f55ac44a5d255d665f4dafbad359b77b9ffe16e2f25db9c7c9901a74ddcba332776688a6d203765c
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.0.8":
version: 1.0.8
resolution: "@cspell/dict-gaming-terms@npm:1.0.8"
checksum: 10/4e7dff5baf3b04d5ae5b978e9571805d79a0c8ad9a8a25e606bdd1fa3b287d291b52eefaa1bd8764c9897811e1c2dda7e8e3e17d6b84cfe3bdf8ab4c1f882d61
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.0.3":
version: 3.0.3
resolution: "@cspell/dict-git@npm:3.0.3"
checksum: 10/4bff7e8e61d7877c409be088b9ade37e59f6689d31b1a44b3fa2fa98721900b4c16d707af427e7d464e67562f8d0cef24c5d97d7dbc1ba5349846007f7b8cf9e
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.16":
version: 6.0.16
resolution: "@cspell/dict-golang@npm:6.0.16"
checksum: 10/9ff4e93947fdd91bf83c8bd433799ed7c976651d718b47e1f2cc4407818fa54b32b0e868e993ec7b4ba949bbc68b09ddc39d90e18df926682a82825e12602e74
languageName: node
linkType: hard
"@cspell/dict-google@npm:^1.0.4":
version: 1.0.4
resolution: "@cspell/dict-google@npm:1.0.4"
checksum: 10/56141456be4057a9ddc538f568324a45b606e31c5eb485cd4a365c0b24f7ed02be4a91fc68bafaabb86b55fe7ef2bbf6f78febe766c784b9b040c243d2cd81a9
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.4":
version: 4.0.4
resolution: "@cspell/dict-haskell@npm:4.0.4"
checksum: 10/210205f6d9f5ac8db25f669fe4f22689c5c67b29322eb669d36f9bed59cd425ff5a4870926051766353647f1a8b98fb05d6ca9ad9b5353d5cd0067ac653ee529
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.3"
checksum: 10/0cef821bf2400a3f8b0d3c94eb8c5de531cbf3ed409d95faf5aaa7f272774ab1e6fa0f315c0902cc661d81bf52075f134b7687bec9c9f1184d176517b3781671
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.9":
version: 4.0.9
resolution: "@cspell/dict-html@npm:4.0.9"
checksum: 10/f4b3195412da9bb7c467c58c7cfd489eff6618fb0ffdced1fd94d8ed4ffd2920cd89fab4610e202db4ec09ba0dbf4e80dbdebac3e7197ae480670cb0e65a02fc
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.10":
version: 5.0.10
resolution: "@cspell/dict-java@npm:5.0.10"
checksum: 10/1b79cb1ac86587a9c769f7d3b1ff9da6eb1f921da0e6e177660796c163fc25faafb1a9a4fe9ab4c956c69ac76b426f9ac97d6330c6e3d57a3798213b642cb66f
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.0.4":
version: 1.0.4
resolution: "@cspell/dict-julia@npm:1.0.4"
checksum: 10/aa871c6af3cb613f1bd6c02c4166595a3bfc67d388bb2238838d60c3b97946595502b0e66fd61ff2fa033d7093c6a9dec61b6c7e9650bcdd2f7315bc72eed0d2
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.9":
version: 1.0.9
resolution: "@cspell/dict-k8s@npm:1.0.9"
checksum: 10/0c0457ae8cb8227a0de0a70b9d7626e27c28e0504bef37a9cc8f1ac81ce059cbd56cbcfe2cbcf62965aff639b88422544ae365257f16372ba1c5d91393b29232
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-latex@npm:4.0.3"
checksum: 10/9dbe412991e5323d8feca08c3fc13c3afb0b330c7c41df71ef19032d988f0bf2469e00ac7595b25c26f4962fcba03efa2eab86c3246d92dc6f86bade03d94528
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.3"
checksum: 10/701a7a3dd92833133671d538e581040ba51022ed658dc19f43cfa9c51e3deaf42f1e50aa52dee945ce5bf375bd9e1253958aaa74a41ed3583680994788cf6939
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-lua@npm:4.0.6"
checksum: 10/d570ef7c57c4ca3737ad7a2fc94ab35b74e85828ee95a39ed9db539549809d755afb1d359d39800ebbbd53394871d84a6bf079cb28df25cb69d74fe32a96e627
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.3":
version: 1.0.3
resolution: "@cspell/dict-makefile@npm:1.0.3"
checksum: 10/6eb38812bd99d23511f1077548704bc4857de82e0f852e707b23789dbfc980b65b4b383431617eb4e0f76372a1e80697a50e21f4980e4d077b50ad52edb6d99c
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.0.9":
version: 1.0.9
resolution: "@cspell/dict-monkeyc@npm:1.0.9"
checksum: 10/a7e35ac707c313e379080ccc2dce1842f05f49c0321cc2aad9858a3802b67c5c2aef9c395c261c68856e52148bc7422110859dfdb58ceb747afa46433217b045
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.4":
version: 5.0.4
resolution: "@cspell/dict-node@npm:5.0.4"
checksum: 10/7385631c352952ff3d1fcb17194b890aa7cdda1d99bdd9ea001307bd728409f4aa8005ee6bac3b5ab084f073e7337e50f9a56498ece2507e515d4be2a578f7eb
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.1.8":
version: 5.1.8
resolution: "@cspell/dict-npm@npm:5.1.8"
checksum: 10/73b4d457a6011140ac64ce3ec0f1d64af86f8c951e2b620d269e76f9783309977a932f00a7eb9fe25e91e8c979edcc64a7aa9571214abd8bc15cfa2dcf0b5a6b
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.13":
version: 4.0.13
resolution: "@cspell/dict-php@npm:4.0.13"
checksum: 10/0435e752e0a1fe1ff902d31a6a194f400a8544fb155388450c8de600fff03696399e3b262376bdd6ba6eeddf0bf3315c33d87822757d3db21162e82b2ff1d3e6
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.13":
version: 5.0.13
resolution: "@cspell/dict-powershell@npm:5.0.13"
checksum: 10/6f351153d9fc4baa9ea5e8c1867408b6879f3326f7863b7f34b1e6b8ee79df1c7a1659f7b8cae57bba2cb7fba1c45f83e341b978fb6db08a4ae2714fd75c3019
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.11":
version: 2.0.11
resolution: "@cspell/dict-public-licenses@npm:2.0.11"
checksum: 10/6b8741a360abd6eaaf4eb58a20628dfc96b281fc0c2b11c304ee67f328f653977bddcc55bcef3d09a3fb4a12cc92e09c66b61e2b4ef389aaf83b214967d4e4d4
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.2.12":
version: 4.2.12
resolution: "@cspell/dict-python@npm:4.2.12"
dependencies:
"@cspell/dict-data-science": "npm:^2.0.5"
checksum: 10/f58a511c4afeb4997bd207583c18875cd523115af8806f143e09084431b2ec6b5abe35d6f0875428b6e56e99a6f5a369fa6ad4d77f2336da0f2a1726d010fb72
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.0.4":
version: 2.0.4
resolution: "@cspell/dict-r@npm:2.0.4"
checksum: 10/4840051d591fd817913726d38b720405f3cde0cb7f19d4a480e313aa33150fa35b7314e211c16c5aadd65dfc5cadf51a462ffd1349b59743f3d68498fa1a207b
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.0.7":
version: 5.0.7
resolution: "@cspell/dict-ruby@npm:5.0.7"
checksum: 10/cdd1a7e15e4fb0e46f731ce13e76c35bea9529b22b80c61ea6f5b09ea9e217fa78de62c67337c9948a179137cf6b7c616a20afb29030134f7a774964419b0307
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.9":
version: 4.0.9
resolution: "@cspell/dict-rust@npm:4.0.9"
checksum: 10/1421dbdb9e4e8c13ba1d12f1b637cb4d83b152fe21be4b1c878ec3078f2485f5913566573b5a8b54df50e4b6446cc4dcf8cb9b4cddc0bcdbd7fe461be1595c99
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.6":
version: 5.0.6
resolution: "@cspell/dict-scala@npm:5.0.6"
checksum: 10/f0c2f4613d29c27d7384bfe8963e97e962c28119991b6eacb2d70e189ddefa8d990f22e76f26738cd0ecb4fb923d5a29049dfb482fe97b307e8e0d0a7fdb8d73
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^4.1.11":
version: 4.1.11
resolution: "@cspell/dict-software-terms@npm:4.1.11"
checksum: 10/b321e9844a766d5cb97be44fd3b9207b1dd524744957018a24130bb0fcc4b6e79b4b62f49da7fee9fefbf08fba8077b00194b4d9e23bccaf74c1782ba7507260
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.1.8":
version: 2.1.8
resolution: "@cspell/dict-sql@npm:2.1.8"
checksum: 10/39be58da739ebedca501a020ebe22d86d3e34a4ebff1054672a3d9155b88da9fd13136fffae209fff8b0f333b3f591c86225d07e8a82ce5189e33c96fac464d8
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-svelte@npm:1.0.5"
checksum: 10/8bc4553b898435f2c40806b08d5eaf13b2055034458a9fc3c4e0f1e63fa7f96c8f85a166c33276780faa89b848eb4c385d4a4262c89abb4cb54c80b8c23ce56b
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.4":
version: 2.0.4
resolution: "@cspell/dict-swift@npm:2.0.4"
checksum: 10/319ba9b69a0058ff565215f0cd37cba4f6048cf1c83c5d0b4ae73b742d763171ada9eb2fc1407f88bf55c6c33314cd38e273017bdaa458a426bea169ac3e9aa5
languageName: node
linkType: hard
"@cspell/dict-terraform@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-terraform@npm:1.0.5"
checksum: 10/b28ada2bb5e4731d2a5b748a25ba62a6b0d5d880f171879ecc87b8eea375a50f8d68849f6db1511ee21b2a58fbc22a3da62ef8abe7f09f83956bd755725b77ab
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.1.10":
version: 3.1.10
resolution: "@cspell/dict-typescript@npm:3.1.10"
checksum: 10/fa31931447eebf8a9bda1996dd82e84ca3bdda66ddd8f732b4daa27214f86214a0b101b7fba979cc2194e7b7d5b0dcfc308dbc0f4f42337250f8620dd9c5eeee
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.3":
version: 3.0.3
resolution: "@cspell/dict-vue@npm:3.0.3"
checksum: 10/20b1b93e6ec178f6e07924f0df4c938b3ee3e72fb9f1572b221ae5f2a6786e0823b2e1080c27c41d1c73a99364e695d26806a619da6fcd17aae572dc3c04c721
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/dynamic-import@npm:8.15.4"
dependencies:
import-meta-resolve: "npm:^4.1.0"
checksum: 10/48fc80100facc0f9d766926ace9933892b2e0c491c801acff412a2d7495054729af3d6f831cb8509c4d22a8b881cdaef9a53151dbdf0ec8795545bbe2adb3f34
languageName: node
linkType: hard
"@cspell/filetypes@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/filetypes@npm:8.15.4"
checksum: 10/983d47317d718205e1b619b9ccd1d664aadde2271251b25196c339f8cbd2d0a9682df03f71ba5cf1ede2d914b95e406b6e932d4f6ad391298a11f77439ab03ba
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/strong-weak-map@npm:8.15.4"
checksum: 10/4a9aaf995c616a4c23d5d56afec9ffa69110cae2305a3e4016896f97708a8ae28d49f90fee616f4e6d24bf212f3af02796b45184658d2f2b683cff3a7aac9ca4
languageName: node
linkType: hard
"@cspell/url@npm:8.15.4":
version: 8.15.4
resolution: "@cspell/url@npm:8.15.4"
checksum: 10/11c06ce68fddcabfca782f4ed0a8ca5fd1ca785c42c937412e0d2ea99def5ac2d2be3fae6a54b5b7ada52db1a67e253bbb24a255dfdb8196281ad53256ecdec3
languageName: node
linkType: hard
"@dprint/darwin-arm64@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/darwin-arm64@npm:0.47.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@dprint/darwin-x64@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/darwin-x64@npm:0.47.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@dprint/linux-arm64-glibc@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/linux-arm64-glibc@npm:0.47.5"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-arm64-musl@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/linux-arm64-musl@npm:0.47.5"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@dprint/linux-x64-glibc@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/linux-x64-glibc@npm:0.47.5"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-x64-musl@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/linux-x64-musl@npm:0.47.5"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@dprint/win32-arm64@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/win32-arm64@npm:0.47.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@dprint/win32-x64@npm:0.47.5":
version: 0.47.5
resolution: "@dprint/win32-x64@npm:0.47.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.49.0":
version: 0.49.0
resolution: "@es-joy/jsdoccomment@npm:0.49.0"
dependencies:
comment-parser: "npm:1.4.1"
esquery: "npm:^1.6.0"
jsdoc-type-pratt-parser: "npm:~4.1.0"
checksum: 10/d767cef9b09f22d1892b8bd544eee32aa7b55c585edf6b51452e6f377f205b06f46bd319174022f75794d39625b4b0f8ce75c8a4ea0b7fd0f773063506e0ef4d
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/aix-ppc64@npm:0.21.5"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/aix-ppc64@npm:0.24.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/android-arm64@npm:0.19.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm64@npm:0.21.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm64@npm:0.24.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/android-arm@npm:0.19.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm@npm:0.21.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm@npm:0.24.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/android-x64@npm:0.19.5"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-x64@npm:0.21.5"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-x64@npm:0.24.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/darwin-arm64@npm:0.19.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-arm64@npm:0.21.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-arm64@npm:0.24.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/darwin-x64@npm:0.19.5"