-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8703 lines (7797 loc) · 307 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: 6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.1":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@andrewbranch/untar.js@npm:^1.0.3":
version: 1.0.3
resolution: "@andrewbranch/untar.js@npm:1.0.3"
checksum: a32de53839fc61af90a394cf93d4368aacd167c9c80f0b3ba0c268460942a6ce2bfe257b6d3f03986b9dcb7368f10b9dc7f66c2f94254d2662da8278454e7d12
languageName: node
linkType: hard
"@arethetypeswrong/cli@npm:0.15.2":
version: 0.15.2
resolution: "@arethetypeswrong/cli@npm:0.15.2"
dependencies:
"@arethetypeswrong/core": "npm:0.15.1"
chalk: "npm:^4.1.2"
cli-table3: "npm:^0.6.3"
commander: "npm:^10.0.1"
marked: "npm:^9.1.2"
marked-terminal: "npm:^6.0.0"
semver: "npm:^7.5.4"
bin:
attw: dist/index.js
checksum: c0a7088a6766555f74dd2872691598cafb4930b00ae82fa6b5eb8014fc1aa31272dda77eaf39f0fe1a7df3197fac99cd0acfb5e2f4412315b6776a868eaa1850
languageName: node
linkType: hard
"@arethetypeswrong/core@npm:0.15.1":
version: 0.15.1
resolution: "@arethetypeswrong/core@npm:0.15.1"
dependencies:
"@andrewbranch/untar.js": "npm:^1.0.3"
fflate: "npm:^0.8.2"
semver: "npm:^7.5.4"
ts-expose-internals-conditionally: "npm:1.0.0-empty.0"
typescript: "npm:5.3.3"
validate-npm-package-name: "npm:^5.0.0"
checksum: af07d7d0d93926b019d8dc412cee251db972e443be181ef4ef79d28d61f76542b2911a381397ab3ddc23d9a669d830994b4f3b0033f8244f3750027f319595af
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: bf6ae6ba3a510adfda6a211b4a89b0f1c98ca1352b745c077d113f3b568141e0d44ce750b9ac2a80143ba5c8c4080c50fcfc1aa11d86e194ea6785f62520eb5a
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/highlight@npm:7.22.13"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: cb6053267f6485c7e315bad437829d8e9e6df5d29d02c23318199f45b4ac8bf256ed41d70445314041e51fad446a511017b8e6a140993cd2edd748c39bf8d351
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 1a1f0e356a3bb30b5f1ced6f79c413e6ebacf130421f15fac5fcd8be5ddf98aedb4404d7f5624e3285b700e041f9ef938321f3ca4d359d5b716f96afa120d88d
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 9d226461c1e91e95f067be2bdc5e6f99cfe55a721f45afb44122e23e4b8602eeac4ff7325af6b5a369f36396ee1514d3809af3f57769066d80d83790d8e53339
languageName: node
linkType: hard
"@commitlint/cli@npm:19.2.1":
version: 19.2.1
resolution: "@commitlint/cli@npm:19.2.1"
dependencies:
"@commitlint/format": "npm:^19.0.3"
"@commitlint/lint": "npm:^19.1.0"
"@commitlint/load": "npm:^19.2.0"
"@commitlint/read": "npm:^19.2.1"
"@commitlint/types": "npm:^19.0.3"
execa: "npm:^8.0.1"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 6d3555039c96e21664d5159b06317558d31ca150f3326a2bd75aa82335032956c8f09481bf30b3aa3a2f8a2037b0a8e1947a787d57f4cb2007e3f69814e9c31f
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^19.0.3":
version: 19.0.3
resolution: "@commitlint/config-validator@npm:19.0.3"
dependencies:
"@commitlint/types": "npm:^19.0.3"
ajv: "npm:^8.11.0"
checksum: a1a9678e0994d87fa98f0aee1a877dfaf60640b657589260ec958898d51affabba73d6684edafa1cc979e4e94b51f14fbd9b605eae77c2838ee52bcbcc110bef
languageName: node
linkType: hard
"@commitlint/ensure@npm:^19.0.3":
version: 19.0.3
resolution: "@commitlint/ensure@npm:19.0.3"
dependencies:
"@commitlint/types": "npm:^19.0.3"
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: d8fdc4712985f9ccdbd871c9eabb9d2bdde22296b882b42bd32ab52b6679c5d799ff557d20a99cebb0008831fd31a540d771331e6e5e26bbafbb6b88f47148b6
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^19.0.0":
version: 19.0.0
resolution: "@commitlint/execute-rule@npm:19.0.0"
checksum: 4c5cbf9ab0e2b85b00ceea84e5598b1b3cceaa20a655ee954c45259cca9efc80cf5cf7d9eec04715a100c2da282cbcf6aba960ad53a47178090c0513426ac236
languageName: node
linkType: hard
"@commitlint/format@npm:^19.0.3":
version: 19.0.3
resolution: "@commitlint/format@npm:19.0.3"
dependencies:
"@commitlint/types": "npm:^19.0.3"
chalk: "npm:^5.3.0"
checksum: ccd71c669e43272fc7d55aba38b149ebc1fab40364ddb4182d4067210592981d42e51d2295a5c0476a34a7a296f14eaee54cc3aa246e3e5d477ed2ae5917a532
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^19.0.3":
version: 19.0.3
resolution: "@commitlint/is-ignored@npm:19.0.3"
dependencies:
"@commitlint/types": "npm:^19.0.3"
semver: "npm:^7.6.0"
checksum: 1a2fcd1dadb37334ed025a0f2bf07493a69d6c8afa126119f2b13f57f7a406babc99b5e8dbf5a624e810f30e4f7c612b64281b139cf61e7923fb3123a107c1bd
languageName: node
linkType: hard
"@commitlint/lint@npm:^19.1.0":
version: 19.1.0
resolution: "@commitlint/lint@npm:19.1.0"
dependencies:
"@commitlint/is-ignored": "npm:^19.0.3"
"@commitlint/parse": "npm:^19.0.3"
"@commitlint/rules": "npm:^19.0.3"
"@commitlint/types": "npm:^19.0.3"
checksum: caeac7a989e186fb2e0fbd42ea6f32e3eff68525fbd8cd0a8c9bd242e038c3bfaac89c0da9c8f98dd07247b5656d6986163746eed225c3dd5374cd39cc7664a8
languageName: node
linkType: hard
"@commitlint/load@npm:^19.2.0":
version: 19.2.0
resolution: "@commitlint/load@npm:19.2.0"
dependencies:
"@commitlint/config-validator": "npm:^19.0.3"
"@commitlint/execute-rule": "npm:^19.0.0"
"@commitlint/resolve-extends": "npm:^19.1.0"
"@commitlint/types": "npm:^19.0.3"
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: 5cd35a0a60064c70c06ab6bd8b1ae02cf6ecc1d0520b76c68cdc7c12094338f04c19e2df5d7ae30d681e858871c4f1963ae39e4969ed61139959cf4b300030fc
languageName: node
linkType: hard
"@commitlint/message@npm:^19.0.0":
version: 19.0.0
resolution: "@commitlint/message@npm:19.0.0"
checksum: 446ee97c12a4175a8b7a4cbf3754c01d54cd911973c7af9a2eac69277fb891e638ddc3db132f57588883b68eadf59074d388ec1808a205957042f71027244167
languageName: node
linkType: hard
"@commitlint/parse@npm:^19.0.3":
version: 19.0.3
resolution: "@commitlint/parse@npm:19.0.3"
dependencies:
"@commitlint/types": "npm:^19.0.3"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: ddd7a6007d37d7154f6b18bfa06dc26beb109cd4bcabe7e9ca2ff24088325ab2c7b09cc01cceb9d62e6e60affffe3d19e9685fab06d3506d047166d888d25487
languageName: node
linkType: hard
"@commitlint/read@npm:^19.2.1":
version: 19.2.1
resolution: "@commitlint/read@npm:19.2.1"
dependencies:
"@commitlint/top-level": "npm:^19.0.0"
"@commitlint/types": "npm:^19.0.3"
execa: "npm:^8.0.1"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
checksum: 840ebd183b2fe36dea03701552d825a9a1770d300b9416ab2a731fdeed66cf8c9dd8be133d92ac017cb9bf29e2ef5aee91a641f2b643bb5b33005f7b392ec953
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^19.1.0":
version: 19.1.0
resolution: "@commitlint/resolve-extends@npm:19.1.0"
dependencies:
"@commitlint/config-validator": "npm:^19.0.3"
"@commitlint/types": "npm:^19.0.3"
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: 453f8828b091886dc7cb4b13285bf3300be94266c3fc13453ab62fddc524a3969434dcebea3e4c4775621576fa25b41efbc62d773e3c44c1e87d12d7211166de
languageName: node
linkType: hard
"@commitlint/rules@npm:^19.0.3":
version: 19.0.3
resolution: "@commitlint/rules@npm:19.0.3"
dependencies:
"@commitlint/ensure": "npm:^19.0.3"
"@commitlint/message": "npm:^19.0.0"
"@commitlint/to-lines": "npm:^19.0.0"
"@commitlint/types": "npm:^19.0.3"
execa: "npm:^8.0.1"
checksum: 218033d96b0bae7dbea0e46483f8af823c17b492e4b0c4dca93a6312876d051cc88f4272d009e7eb06ff05585ec511aedd703132be17c7248698a4eac909986b
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^19.0.0":
version: 19.0.0
resolution: "@commitlint/to-lines@npm:19.0.0"
checksum: 5e7d5679aa242cd21be2076a8c8715aa3c9f4c3133f588df08c6b02f56a8a5b1a5d9e402076bd926dd2b61883e4b2c53fd6c9aa3554e3f54cd2296b2566eb1c2
languageName: node
linkType: hard
"@commitlint/top-level@npm:^19.0.0":
version: 19.0.0
resolution: "@commitlint/top-level@npm:19.0.0"
dependencies:
find-up: "npm:^7.0.0"
checksum: 47b0994d03f26caf2812110ead535bd10157beed6b3dff9cbb4eea165de9245673ba7d31829cd54af5855f7b075ebbf812b1f79586248be3932797888efeadf5
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: 03c52429052d161710896d198000196bd2e60be0fd71459b22133dd83dee43e8d05ea8ee703c8369823bc40f77a54881b80d8aa4368ac52aea7f30fb234b73d2
languageName: node
linkType: hard
"@commitlint/types@npm:19.0.3, @commitlint/types@npm:^19.0.3":
version: 19.0.3
resolution: "@commitlint/types@npm:19.0.3"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 44e67f4861f9b137f43a441f8ab255676b7a276c82ca46ba7846ca1057d170af92a87d3e2a1378713dc4e33a68c8af513683cb96dcd29544e48e2c825109ea6f
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/cspell-bundled-dicts@npm:8.6.1"
dependencies:
"@cspell/dict-ada": "npm:^4.0.2"
"@cspell/dict-aws": "npm:^4.0.1"
"@cspell/dict-bash": "npm:^4.1.3"
"@cspell/dict-companies": "npm:^3.0.31"
"@cspell/dict-cpp": "npm:^5.1.3"
"@cspell/dict-cryptocurrencies": "npm:^5.0.0"
"@cspell/dict-csharp": "npm:^4.0.2"
"@cspell/dict-css": "npm:^4.0.12"
"@cspell/dict-dart": "npm:^2.0.3"
"@cspell/dict-django": "npm:^4.1.0"
"@cspell/dict-docker": "npm:^1.1.7"
"@cspell/dict-dotnet": "npm:^5.0.0"
"@cspell/dict-elixir": "npm:^4.0.3"
"@cspell/dict-en-common-misspellings": "npm:^2.0.0"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.3.17"
"@cspell/dict-filetypes": "npm:^3.0.3"
"@cspell/dict-fonts": "npm:^4.0.0"
"@cspell/dict-fsharp": "npm:^1.0.1"
"@cspell/dict-fullstack": "npm:^3.1.5"
"@cspell/dict-gaming-terms": "npm:^1.0.5"
"@cspell/dict-git": "npm:^3.0.0"
"@cspell/dict-golang": "npm:^6.0.5"
"@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.6"
"@cspell/dict-julia": "npm:^1.0.1"
"@cspell/dict-k8s": "npm:^1.0.2"
"@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-node": "npm:^4.0.3"
"@cspell/dict-npm": "npm:^5.0.15"
"@cspell/dict-php": "npm:^4.0.6"
"@cspell/dict-powershell": "npm:^5.0.3"
"@cspell/dict-public-licenses": "npm:^2.0.6"
"@cspell/dict-python": "npm:^4.1.11"
"@cspell/dict-r": "npm:^2.0.1"
"@cspell/dict-ruby": "npm:^5.0.2"
"@cspell/dict-rust": "npm:^4.0.2"
"@cspell/dict-scala": "npm:^5.0.0"
"@cspell/dict-software-terms": "npm:^3.3.18"
"@cspell/dict-sql": "npm:^2.1.3"
"@cspell/dict-svelte": "npm:^1.0.2"
"@cspell/dict-swift": "npm:^2.0.1"
"@cspell/dict-terraform": "npm:^1.0.0"
"@cspell/dict-typescript": "npm:^3.1.2"
"@cspell/dict-vue": "npm:^3.0.0"
checksum: c071010161035bd9461c3163a44a4b187e448008e706bb32ba0761a17f50052ef80f73ff65983a3ad0b1db47a9af91a67316f3ff2cc4b88c9fea08f0b07bf9ba
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/cspell-json-reporter@npm:8.6.1"
dependencies:
"@cspell/cspell-types": "npm:8.6.1"
checksum: ea8bd21803f670a571a39885ccdfaf0606c650db3b51d946f6f9e563ea0354c1a2f770e2fb69055e4ae09ae95f45571dbfb46f769027875561aa5a54addee0a4
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/cspell-pipe@npm:8.6.1"
checksum: f9b1b9aefd4b6dfc1272b7a8928e8625a9d11fa5ef5bd60dbe67e3cbc225f0d1499c1a18edf4c82e6c3d1e32695300ff2bfb37b6bacc3b9264b093cf1bf395e7
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/cspell-resolver@npm:8.6.1"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 58d233a04adc722aa1c7035c63719dea0893b3b0360f7c4ccf1adc873f25b276d57d8c20c5e5a6b4acf3d55e0e4c0c1074d9df3b91bb7de649a1235c178d099c
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/cspell-service-bus@npm:8.6.1"
checksum: 246503b4686f10edbec8e32856a24c7302f04f259eef535e9ba60c78639c7b6ddfa19999f960d6affffe8b5953a2b18332570cfd6a5902e96b3ca35f7138392a
languageName: node
linkType: hard
"@cspell/cspell-types@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/cspell-types@npm:8.6.1"
checksum: f69a07abf07407d147761fc2ad68a76c5ace2b6cc27961a49038fbf673f09ce129c762170e3482f2c8814fe3e5e99c6c991f1887dcf7ace9ec7024843883ad26
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-ada@npm:4.0.2"
checksum: 31b0f0f6b9b324e8d3be4074302ddc9a7e968833d79c0a9f7899de9138b386bd6dcad3f63afdb1d42e87838bba5881c7b7f2b0916621fb1e64c7fdb6a572afe5
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-aws@npm:4.0.1"
checksum: 513b7822d03a6995aab3397f39d38d836c20544ca2ccb3f380248da8b69ccc3b9c8698453340e647c739e875e6c90b06ccf05813a448655258769d9f56f43ac8
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.3":
version: 4.1.3
resolution: "@cspell/dict-bash@npm:4.1.3"
checksum: 4ba66c76c144d4c7ea1dd0fb92dfb0d7fd1e43a106a73fc7e9010b4a5c276aa4ef791c7161f56bf911356e3667ba043ee63271c1ffc485d9f8712553770e3ea9
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.0.31":
version: 3.0.31
resolution: "@cspell/dict-companies@npm:3.0.31"
checksum: 1bed24f9ba5f607d913b54911542a7c8f0c70425d7afadff326e999d1dcf982112d792761a1c422622500a4da8694f01b1c12d114c6424004bb4b9b94f923d2c
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^5.1.3":
version: 5.1.3
resolution: "@cspell/dict-cpp@npm:5.1.3"
checksum: f3a1a1b156c6fe720a0006a7b2484f144cb92c829cc215d4fd11355adec50fd2776960a8f3d1a8bf726a997b29d543f80cce9d95bf6533737dd835208612d094
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.0"
checksum: 116e7f117b59ea4c9fa7ae1c3b47fc963e050448d43e059fb93731a256881ee262420edd5b9701ffe88af3d5e95b0337fc99b4dde1b0283ee0aaed45b23e281e
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-csharp@npm:4.0.2"
checksum: d2ecb2aada51c5f0d6d557fd4f0c6eddb5b299e0955e066c49cd2afe96a1c6fe0afde699fdb885dd3183603a1efbd1d793b6a490b8d039256445b4b154b7375b
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.12":
version: 4.0.12
resolution: "@cspell/dict-css@npm:4.0.12"
checksum: da812243c92ef07082334d512561606f178e003fa50324332c322655fab0982ed1bea055d75a348b37cea71fbe652224dcfff14dc445d26530cfa3c491b2b324
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.0.3":
version: 2.0.3
resolution: "@cspell/dict-dart@npm:2.0.3"
checksum: 66bfcfa029baacd0b14b3ff5b6ab7597cf9459f77185d88b25123b42a4babb66df6786806843f1b6506c335326100599a2e1db6e6104e66bd021ede9ccb3cec4
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^1.0.11":
version: 1.0.11
resolution: "@cspell/dict-data-science@npm:1.0.11"
checksum: 513f8f416f584f46576d45be23a4aa354e46d244f10a3d466222ffc13afe475e676639e4a24ab3a1ba157239f9ce23f7eef59c9f4c7a877a044db3a6344b18c6
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-django@npm:4.1.0"
checksum: d64b830ab761f3610ca5eb81b06447c91a64b988bc3e40bac214fc611de498fa019e1cd76f6f21254ad2d3bfaeb3d10248481f0a02711d6a3ed715df062b2ba6
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.7":
version: 1.1.7
resolution: "@cspell/dict-docker@npm:1.1.7"
checksum: 307f8b5132edca7cd291ba0ab6ed88f8787df984d6a42401b12a0da1ecb935d50af3a108ede885ce5bede96c445acdc88bb9ea8396de151c565a90a3bf66853e
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-dotnet@npm:5.0.0"
checksum: 470e74c26821426c0136e1f05c37be8a8231565c47d31b37049ba2b3030191359bdbc683e1e7948b6b8a7c570dd82f5fb2fe218ed9b824af29fd5560cf4826c7
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-elixir@npm:4.0.3"
checksum: f084449b2de5a2fa08076ac699c6073beaa4bb43796a662d681ea8fe5cba31f9efe718f3f98ef432ba75d4ea574316de34ab8422f79f4f2022cfddee7a7b8653
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-en-common-misspellings@npm:2.0.0"
checksum: 487dc7a1c74793fd9c8362e44313c27f69b6617c9287f171fdaf9e7b94c6a73a61cde88eadd120bf4bec85647c81e949332a6816b88e3a430e32aa59414ef509
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: 72db891c955ce9b24ba756c1baad41e92854a85fe326699f9ab328358b02a76d57b65d26d02afa050c4f96668a51c1dab6fce7eaad51c70c113588bbc2b46756
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.3.17":
version: 4.3.17
resolution: "@cspell/dict-en_us@npm:4.3.17"
checksum: d56da6d77c17c5fbcd7801d6bfba9ef3def522bc21b73b114eb0437864969854bf124668c2d83598312fd96fdfad84539e7c72cf7759d6fb24921754aca2db55
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.3":
version: 3.0.3
resolution: "@cspell/dict-filetypes@npm:3.0.3"
checksum: 22c38a0b2e98d6223b364ddb5948d14bf6427c8286d4ddb111d5da9bdd4c47ddc0c9199a575c314142da9aefcaa5777a4ea33ac07f239cb4b9b303e4bd888aa1
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-fonts@npm:4.0.0"
checksum: 894a31f3df8e3a43a3dcf13e1706eb94cb5e83bd6d2aa26b0e9fc79c2de304eb5e9118eec4dff6a673e2a3243c842ca694c8e0f3c0ad78301004f983acf53832
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-fsharp@npm:1.0.1"
checksum: ce0df20704bf95d1fe434d2889cc764279cbce2b057fc5247be1ccaf7a8cc57372de3da2cdab6643b3df5221119716929b2e2aaad3f60533dcf0bd3c7d892fab
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.1.5":
version: 3.1.5
resolution: "@cspell/dict-fullstack@npm:3.1.5"
checksum: 01c98a3408d4bf4832f1f110252399e663ce869bb097d681558828bb0e22725c7fe7b43077aa57afc2c3158515eaa744074826c020825af5856a0950219785a6
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: 25d50653ed5e940f9302cc5536c37a20854bb274dec9302d73c5349e51ec623d33d99e4fe283e3b30e70f452063361fbc4cae7dc603232fa82004262f37d0f50
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-git@npm:3.0.0"
checksum: 97b6da58c93108bae0867515f790d84728f0bce580cc8ad6f0f5f63b2c81eaf6d084d543d99b693ff4d7fbea2413ff068c3e4811fc107820d243da2c06d381fa
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.5":
version: 6.0.5
resolution: "@cspell/dict-golang@npm:6.0.5"
checksum: d83917190e8a6230cebcb95c384c5114cb291c52ff51f9871197914fb6f7aaf83ad5ce4ba5a0a00dad7e8edb36c5654631b8ca9ccd4ebab7d0439b64b5773d57
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-haskell@npm:4.0.1"
checksum: cfb51e415b60c5eb266a5782d0a4b19a37f1389b9b018d1bbb2ff4358bd739af1f76f68f26a138d4b4bd0ab67146d6eb9032fc3d3c212695237c134e05339c79
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: 79f05f9080f39dbde703980eb587ed6624b8fc2f5cedc297327bc1b9b7e6022a7c382e6013149b1afe00609b96003ab5c8d18d378979f76f336ab626317183f4
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-html@npm:4.0.5"
checksum: 8801b7f77910f6a269efc652c88ecc3299cabedec03566ad6fb661845fdf9a4950bd7a2cdd1216dde982eddc9caf9ec00c6917ac90707fabb7686d02b30b0a5c
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.6":
version: 5.0.6
resolution: "@cspell/dict-java@npm:5.0.6"
checksum: 0029545c95beb0c3e8dd416671242083734a74af639244556fc72dc323e450ffdf7234afa7e24d15307f57dd4c8f47e7f0acef12eb30df4014b81b2939df5596
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-julia@npm:1.0.1"
checksum: 4cce630dddb7579b3750875af43f40fb4e6019fe6ab30791b160b71a677c17e2c6e227d54555193255b43dd08a1f1fab500a82012d9831ccca923c4f8791b976
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-k8s@npm:1.0.2"
checksum: 502910d441f8f15ca2e0865287d5a831bb198e3276b4975ea492337e9847e0625b2216fb9618b228c4e10c6f8d732822956dbe5442da97739021807e247cd686
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-latex@npm:4.0.0"
checksum: 7e7a520196d143d0a3185689d09d84bf1e23b5328dfc78187c4e4ab264bd49c3dd695eb92f8d582583e5bc26bcab4ed0976b310b56a000af81d88a7acdea7f8c
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: d3575fb7b9684480192d2cd647484312c555f3d1215d6b35371b70de3ecde4273010e5916cc2d130ff1e1223a1a49f75825651671a76d3dabdec98acf67a3902
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-lua@npm:4.0.3"
checksum: eee20135a4f0620302c5feeb50485f59af93c24b64eb2081a9e2096a106ce33ae565d6d92607582b44c9f17c8a091d82fbcb443ebae9b77f8512b0d66a703c3b
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-makefile@npm:1.0.0"
checksum: f0cac4caf31e27accd5df5e0c2f53097cccbbd085126c4b4ecc08be2a32bd7f89fe6b052e9eae4ec99843175cafa94561868271fb53c5389f27cc078565b5123
languageName: node
linkType: hard
"@cspell/dict-node@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-node@npm:4.0.3"
checksum: ed2884b7da7474535d85b23a2f80576fbce5682b609bd7f21a7d0f316ac385532838b80900be1af461fa6a20b8020c6054ca1323504e301b4fc72d66b77550eb
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.0.15":
version: 5.0.15
resolution: "@cspell/dict-npm@npm:5.0.15"
checksum: 6e3b76c7b5f9a3adb295f5cb0e03becc4fd5e100124762390034e55fbc5011a3157016f85a61b8168fe7afa7b0253477df14215554f173983742d3bb9ab5153f
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-php@npm:4.0.6"
checksum: 6752bd873e8bd509d2827c986863087fa45eebfed5c0c25ab1fe5219232d8d3293fa23067a016fd208c1b0ac93549444e2ef4f401aefd2f9a6dbb3693464a0d0
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.3":
version: 5.0.3
resolution: "@cspell/dict-powershell@npm:5.0.3"
checksum: 18eac3be8545b3df110bf867bd6285b11d7e67da037e00c9bc1376c5e322092bc1d925375a09df8b7420a6a35847aa20558610ffb491763eb82949f3af764e1d
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.6":
version: 2.0.6
resolution: "@cspell/dict-public-licenses@npm:2.0.6"
checksum: a07adccccf7ad92eb48cc0b6cc9ac0239a870902a579e072e563af4b65c434ff2da656b233e5765dec330ee5c919ef911cc61e9f63869d2bfa9a96493188a3d9
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.1.11":
version: 4.1.11
resolution: "@cspell/dict-python@npm:4.1.11"
dependencies:
"@cspell/dict-data-science": "npm:^1.0.11"
checksum: 9d156e146c044c4e014bb80181f2cc678d3bd4c40a83f29b4987ed7c441e694c91d0380dc00c67f3221448410268065da0ec9949b2912d01a54645e7d5d0c635
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-r@npm:2.0.1"
checksum: fe85939ad4c8ada34284a673918be711cca60b6d6f1c48ee98602c27905228dfbaea3462a350094633032c1d6b6bba9548df7019e0b21673cf1cf887c57ca228
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.0.2":
version: 5.0.2
resolution: "@cspell/dict-ruby@npm:5.0.2"
checksum: c2006bcc808448b1eef146eb4b6b74388113c50334206191a9fe5817fb13669482ecd114f7bbd397562ad2e19a9683266ff396f48c6ce282f6445c2cfa8e82c7
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-rust@npm:4.0.2"
checksum: c4d817cbf77ca6d97562b106cf78c43c6090465191d29db3210e431cf1b9d5ef4b6ac98d9da9c79ccaeab3da39b8d6edf952870507f40d0f051245d45d44d2c0
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-scala@npm:5.0.0"
checksum: 874312cd63de246f95ca3ab0ae92649c3fd0b5ca4e28f7586b159759deccdc87d78e85a91b962cd9abc2ea0e855763ff00dfae776840980f69ac2d1da169777c
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^3.3.18":
version: 3.3.18
resolution: "@cspell/dict-software-terms@npm:3.3.18"
checksum: 0dfffe6116c6ac18fce277cb29ec669a90620f7ae91755c22aa539f99ec34b3a0087749378b470da42d8aa06e5b5657bd2745461439ec9f29cb272f53c960803
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.1.3":
version: 2.1.3
resolution: "@cspell/dict-sql@npm:2.1.3"
checksum: a435812cc697d4c453f11efa49962992150702518e49808381ea34548b8a8ed81432a10cca36682007912b013c28e9ce3c6c183341c6cde58c8af0eef25cddc3
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-svelte@npm:1.0.2"
checksum: 5b42989bc6743a26ca5172cc23ebc1449d930695b10c908376048ce1835bf57fef7a0004f02ec5e43219f24a97f154e125041df470441199a045ed0be9e654fc
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-swift@npm:2.0.1"
checksum: 0bbb106266205c5f5e12886a73ebf0db2078bab1bdd2e1f304fe28445cd72d847a4c5072bf4fe8f9e8cdb4bc69d52fffec0806aea19ea9b64b7a87c67ee01175
languageName: node
linkType: hard
"@cspell/dict-terraform@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-terraform@npm:1.0.0"
checksum: 132b8f0532aa5a6a08fa57487313722bc10ad37a4b94a5d76b072922eb4eb56d204a3e33c1569613af5b337bd125b8e2d30cae6bf5400a07fa58c551c7fe3b37
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.1.2":
version: 3.1.2
resolution: "@cspell/dict-typescript@npm:3.1.2"
checksum: b7ad45f704272795c6d8594c468fdc3e79db1fa8f8666be708d8a62188f8159c1b973005a901a49a359cddb80506e3af711b50d4fc9441cb224af34ddd17db76
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-vue@npm:3.0.0"
checksum: 4db58b1d6f9be1a523a35678877f2cca2bb04548b136ec5ec4e7186500978dbc32cc8747ced80ade3cad3acc3c80eb23afe980679165810f8f8f26802e952e2f
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/dynamic-import@npm:8.6.1"
dependencies:
import-meta-resolve: "npm:^4.0.0"
checksum: 97755ca8a842e22ef5a2482b71361710f599a6017d9938d1ad9e88ccc3c7a364d659c64ff341fd04d979512e24d9f2f1ff6f837fe4fbc18c63fec40a0d80818b
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:8.6.1":
version: 8.6.1
resolution: "@cspell/strong-weak-map@npm:8.6.1"
checksum: f7f2058ccf2e38d952bb3722c45ffa002f3e5a27731ac7ee4fc001aeffab75f99cf8f5854afa8168e3a32115da994e0dfc8860b0e5536e3281140dd72339a2cb
languageName: node
linkType: hard
"@dprint/darwin-arm64@npm:0.45.0":
version: 0.45.0
resolution: "@dprint/darwin-arm64@npm:0.45.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@dprint/darwin-x64@npm:0.45.0":
version: 0.45.0
resolution: "@dprint/darwin-x64@npm:0.45.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@dprint/linux-arm64-glibc@npm:0.45.0":
version: 0.45.0
resolution: "@dprint/linux-arm64-glibc@npm:0.45.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-arm64-musl@npm:0.45.0":
version: 0.45.0
resolution: "@dprint/linux-arm64-musl@npm:0.45.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@dprint/linux-x64-glibc@npm:0.45.0":
version: 0.45.0
resolution: "@dprint/linux-x64-glibc@npm:0.45.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-x64-musl@npm:0.45.0":
version: 0.45.0
resolution: "@dprint/linux-x64-musl@npm:0.45.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@dprint/win32-x64@npm:0.45.0":
version: 0.45.0
resolution: "@dprint/win32-x64@npm:0.45.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.38.0":
version: 0.38.0
resolution: "@es-joy/jsdoccomment@npm:0.38.0"
dependencies:
comment-parser: "npm:1.3.1"
esquery: "npm:^1.5.0"
jsdoc-type-pratt-parser: "npm:~4.0.0"
checksum: 1f31cde49c6573b3cd70d4e9111c815084e1fdc6c1351db4bb3c82d91de5930e2e1ad1f38e3078613e74b1b17edffcc1146747f029c56f0387c725e76983c79b
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/aix-ppc64@npm:0.20.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-arm64@npm:0.20.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-arm@npm:0.20.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/android-x64@npm:0.20.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/darwin-arm64@npm:0.20.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/darwin-x64@npm:0.20.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/freebsd-arm64@npm:0.20.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/freebsd-x64@npm:0.20.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-arm64@npm:0.20.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-arm@npm:0.20.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-ia32@npm:0.20.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-loong64@npm:0.20.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-mips64el@npm:0.20.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-ppc64@npm:0.20.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-riscv64@npm:0.20.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-s390x@npm:0.20.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/linux-x64@npm:0.20.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/netbsd-x64@npm:0.20.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/openbsd-x64@npm:0.20.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/sunos-x64@npm:0.20.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-arm64@npm:0.20.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-ia32@npm:0.20.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.20.2":
version: 0.20.2
resolution: "@esbuild/win32-x64@npm:0.20.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":