-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
11904 lines (10726 loc) · 423 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
"@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.17.0":
version: 0.17.0
resolution: "@arethetypeswrong/cli@npm:0.17.0"
dependencies:
"@arethetypeswrong/core": "npm:0.17.0"
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/df01ae3dc895d5a9a3cf746267ec5ec3b1b7db109abcc15cfaef9712e9138d8937de4fe8d99df8c7d58be8bfeaba040de19dd1099c059902743a250fcae24801
languageName: node
linkType: hard
"@arethetypeswrong/core@npm:0.17.0":
version: 0.17.0
resolution: "@arethetypeswrong/core@npm:0.17.0"
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/d4659285eabd05b965b5bb8f1d1c1fa9836366bc5c18ea0d354e0f46128b7b8066407937a7009f2bb8c2ccbd648a15c96dfc6486250dfe8638bc1c3e211df1dc
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4":
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: 10/4812e94885ba7e3213d49583a155fdffb05292330f0a9b2c41b49288da70cf3c746a3fda0bf1074041a6d741c33f8d7be24be5e96f41ef77395eeddc5c9ff624
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: 10/86875063f57361471b531dbc2ea10bbf5406e12b06d249b03827d361db4cad2388c6f00936bcd9dc86479f7e2c69ea21412c2228d4b3672588b754b70a449d4b
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: 10/69b73f38cdd4f881b09b939a711e76646da34f4834f4ce141d7a49a6bb1926eab1c594148970a8aa9360398dff800f63aade4e81fafdd7c8d8a8489ea93bfec1
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.16.0":
version: 8.16.0
resolution: "@cspell/cspell-bundled-dicts@npm:8.16.0"
dependencies:
"@cspell/dict-ada": "npm:^4.0.5"
"@cspell/dict-al": "npm:^1.0.3"
"@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:^6.0.1"
"@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.8"
"@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.10"
"@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-markdown": "npm:^2.0.7"
"@cspell/dict-monkeyc": "npm:^1.0.9"
"@cspell/dict-node": "npm:^5.0.5"
"@cspell/dict-npm": "npm:^5.1.11"
"@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.13"
"@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.6"
"@cspell/dict-typescript": "npm:^3.1.11"
"@cspell/dict-vue": "npm:^3.0.3"
checksum: 10/b872bb95358ba41812476f432ecd573becc580f43e0377e0d8da9f0028eaa39211eda05d5f0502d8d8562b806a9b6e743b4000a5a2eafccbe724cf0803f14121
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/cspell-json-reporter@npm:8.16.0"
dependencies:
"@cspell/cspell-types": "npm:8.16.0"
checksum: 10/5255e3c0b2b61972a8103eb747f12b0e81c5d281edb46381afd23ce2dedc51d31f179ff135840d5aca1d8cf31b48e9a75a20b1eec52ba49fa125214808a8adf2
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/cspell-pipe@npm:8.16.0"
checksum: 10/4f6cac2463443c19207061688d4560505ec667c684cbbd6f9d5b92f41fbf7a6aa246adbf5f73000e34262ef529cde97b9a38ff75f3af4730486f0d95302dad2c
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/cspell-resolver@npm:8.16.0"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 10/1ca62a507d9298ed409848973ce916f579988d690e34209f19e7ef58e8fc1ac111f419cf2ad3f390d387da045002c850cd9d94f3d2a63ceb226c6f3af83a499d
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/cspell-service-bus@npm:8.16.0"
checksum: 10/1cefdc51a131c7c1bd9655345fecadde0bc6bb30d977f9ce7a6b29ad6e5ab2dbb97dfc9c620d5c95d3f06cac8bfabb9b2b13dff731abe103351411012aebf71c
languageName: node
linkType: hard
"@cspell/cspell-types@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/cspell-types@npm:8.16.0"
checksum: 10/981d5506e62558683b17b900d197fbb439335232aec68871c7911e1595252c1637140a2b4949cd523e4e44eaa7ac4f58a65cc5fccf0230031b9698720f65d6cc
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-al@npm:^1.0.3":
version: 1.0.3
resolution: "@cspell/dict-al@npm:1.0.3"
checksum: 10/d5cbf4278a6378f9106643f82c40a3e763d75f9a33b02f69dcda99c228ab6a634b43740452c40f9fd5c3e7b21f802b380867cb2d87a156073f62f335ca975038
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:^6.0.1":
version: 6.0.2
resolution: "@cspell/dict-cpp@npm:6.0.2"
checksum: 10/2c18e409634654fcb013787820d0b2dff9211971ade286e436d56fa6abcf9b9cd555c1846a3fe7866f9be8daf9c6660ed783ce0462fe4076ca722bed7e201857
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.8":
version: 3.0.8
resolution: "@cspell/dict-filetypes@npm:3.0.8"
checksum: 10/28fcdd35167340571fdd156d3d9d4400dc27234f070c55ce0f851db4d1c853523d7c60f6b8f357571584bb704a83d33ec0723840b069602983a561fc89d0c9e2
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.10":
version: 4.0.10
resolution: "@cspell/dict-html@npm:4.0.10"
checksum: 10/5e1b7a847fb8fddc9c0bc4feab8d5b55a8e9e63ab7e146951a42a62fb0901aefee6101bb386b48d254b112460cdf624455a146687c71f00778a6100a2cd9daff
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-markdown@npm:^2.0.7":
version: 2.0.7
resolution: "@cspell/dict-markdown@npm:2.0.7"
peerDependencies:
"@cspell/dict-css": ^4.0.16
"@cspell/dict-html": ^4.0.10
"@cspell/dict-html-symbol-entities": ^4.0.3
"@cspell/dict-typescript": ^3.1.11
checksum: 10/3972e9609bd5d717f191164ac880422a41f4e52fd5a03b989fdcabc1161b9bbd966c8d14ac7866370786b5100c0c0f233b538cb6c784fa98fd7868dbe5f937ad
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.5":
version: 5.0.5
resolution: "@cspell/dict-node@npm:5.0.5"
checksum: 10/bb19c9953aa3558ac798ca05e35b0f0a36683e27cc8b5630282abbab609aeed7805c96085b7cce3b4cc0c2d66ac51b11f27d38bbaec5380d00c0b91959fffff0
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.1.11":
version: 5.1.11
resolution: "@cspell/dict-npm@npm:5.1.11"
checksum: 10/ac52b7c024bc48bd50cf4208d4d1c5d646445c31041f6f277c462b561cd1d0e7ae6431035f3c8bca3c2c593bc68ecf4888b961452efe5b5187eba5c0e44c62f0
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.13":
version: 4.1.13
resolution: "@cspell/dict-software-terms@npm:4.1.13"
checksum: 10/74f65d35b727505c626a3323052c2cef6a95cb5052b92ff8e6abe29172358889f2007336034a7fd9cb86ead314ff93400d421a99eadc37ee43faad8b6b2e86b5
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.6":
version: 1.0.6
resolution: "@cspell/dict-terraform@npm:1.0.6"
checksum: 10/713cf31e9e9ec1d1f6d2b834365b770200c718f02b19494b3482e03d3c84c9a5d185072e148d6fa3a72f21e326545587563e603f4eb821f7b07e11a1d91a88bb
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.1.11":
version: 3.1.11
resolution: "@cspell/dict-typescript@npm:3.1.11"
checksum: 10/44dd3a49197c04b0e13b808fff1f884eabd2500ed571fd9e99a7d630b3266bbe1e77a56fb46f52daf744dd41dc872e5bfc18c04bd91ecfd75d037666f2cce251
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.16.0":
version: 8.16.0
resolution: "@cspell/dynamic-import@npm:8.16.0"
dependencies:
import-meta-resolve: "npm:^4.1.0"
checksum: 10/8d5f764b029baf9c64ae6513e8160fe73a5465283fe86bdcfe807ba22e6869eb0fec0cd5a7c7061900683272d1d5f5c8e5ec7b864ad5ddccfdd8c5947bb16a08
languageName: node
linkType: hard
"@cspell/filetypes@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/filetypes@npm:8.16.0"
checksum: 10/fa4641db833f1865ab95ffaec625a390149e26a615cf9f4182afeff858506a9b547e9d65c57968dcb1b1007e44e3be7a34955d597a04ccadb3106e8a0ec6df39
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/strong-weak-map@npm:8.16.0"
checksum: 10/cc9a2b8f9059fed5d440f29023376d416a2a9e08116facd7b494feacea3e9129f44ef1ade0152d763b0afb93b6c91d1adb7864d1524819db927ce5934685c17f
languageName: node
linkType: hard
"@cspell/url@npm:8.16.0":
version: 8.16.0
resolution: "@cspell/url@npm:8.16.0"
checksum: 10/490d2ddddc6750041ecf56255b8d14402db0875b6bd908ef07221c9084ac315c9e11f734a30f2cb424e4c4d37402a1ec01cb4124b0f37c7187bcf029e21fd822
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"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-x64@npm:0.21.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-x64@npm:0.24.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/freebsd-arm64@npm:0.19.5"
conditions: os=freebsd & cpu=arm64