-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
9409 lines (8435 loc) · 329 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.12.2":
version: 0.12.2
resolution: "@arethetypeswrong/cli@npm:0.12.2"
dependencies:
"@arethetypeswrong/core": "npm:0.12.2"
chalk: "npm:^4.1.2"
cli-table3: "npm:^0.6.3"
commander: "npm:^10.0.1"
marked: "npm:^5.1.0"
marked-terminal: "npm:^5.2.0"
node-fetch: "npm:^2.6.4"
semver: "npm:^7.5.4"
bin:
attw: dist/index.js
checksum: 64932d19dda0a14d25e6d9f44c7f05b7eb1a36ca05289be5078dea1172e3b7e8822f44198ced27dc2caf95688014d8f72314cd89a609beb4bf551ea7c925020c
languageName: node
linkType: hard
"@arethetypeswrong/core@npm:0.12.2":
version: 0.12.2
resolution: "@arethetypeswrong/core@npm:0.12.2"
dependencies:
"@andrewbranch/untar.js": "npm:^1.0.3"
fetch-ponyfill: "npm:^7.1.0"
fflate: "npm:^0.7.4"
semver: "npm:^7.5.4"
typescript: "npm:^5.2.2"
validate-npm-package-name: "npm:^5.0.0"
checksum: 32c20cc9eda855114afa0ded66f9747cb4937d6d3fb8060219b72584ce19ea4e670124de3a614ffdf9f51981188eb06b9dbf9ba7eaeed584973f3c969da76601
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4":
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.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 12cb7d4535b3f8d109a446f7bef08d20eebe94fd97b534cd415c936ab342e9634edc5c99961af976bd78bcae6e6ec4b2ab8483d0da2ac5926fbe9f7dd9ab28ab
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:17.8.0":
version: 17.8.0
resolution: "@commitlint/cli@npm:17.8.0"
dependencies:
"@commitlint/format": "npm:^17.4.4"
"@commitlint/lint": "npm:^17.8.0"
"@commitlint/load": "npm:^17.8.0"
"@commitlint/read": "npm:^17.5.1"
"@commitlint/types": "npm:^17.4.4"
execa: "npm:^5.0.0"
lodash.isfunction: "npm:^3.0.9"
resolve-from: "npm:5.0.0"
resolve-global: "npm:1.0.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 390f9a052b449b14384f42a0b6b81bd0bf2b1328f4ceda5b7e3fd5c82cf01353a7f2733d41f285d07e880cdfd7e2f72b3dc2099d67e5d0cf28b8b4c2b36c4dc1
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/config-validator@npm:17.6.7"
dependencies:
"@commitlint/types": "npm:^17.4.4"
ajv: "npm:^8.11.0"
checksum: e13e512ce9dc788f7ce1c84faf4d2e2d4d3b7c4dc18a7982ecbfc33faa5fe977793efdb868e228061d34ea8825cbbed5fc9e8e69fd5e4f0c0c08f60e21a9214e
languageName: node
linkType: hard
"@commitlint/ensure@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/ensure@npm:17.6.7"
dependencies:
"@commitlint/types": "npm:^17.4.4"
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: 1ffdce807dbb303e8fa215511a965375abeea2702f64b4f1c4d7823f1e231cb343e82c97633d12d3c89b4f71d2eaf28169db08b4f1d3b052c26c942f4b9d9380
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/execute-rule@npm:17.4.0"
checksum: 17d8e56ab00bd45fdecb0ed33186d2020ce261250d6a516204b6509610b75af8c930e7226b1111af3de298db32a7e4d0ba2c9cc7ed67db5ba5159eeed634f067
languageName: node
linkType: hard
"@commitlint/format@npm:^17.4.4":
version: 17.4.4
resolution: "@commitlint/format@npm:17.4.4"
dependencies:
"@commitlint/types": "npm:^17.4.4"
chalk: "npm:^4.1.0"
checksum: 832d9641129f2da8d32389b4a47db59d41eb1adfab742723972cad64b833c4af9e253f96757b27664fedae61644dd4c01d21f775773b45b604bd7f93b23a27d2
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^17.8.0":
version: 17.8.0
resolution: "@commitlint/is-ignored@npm:17.8.0"
dependencies:
"@commitlint/types": "npm:^17.4.4"
semver: "npm:7.5.4"
checksum: ae18943cae8370476049fcbf08c18256f44e2063c9be553eb282a81231ec50a8aff1b861e93108dc823fe6331e1aedcdd7c74c777b57e564308eeb7f7b9da33c
languageName: node
linkType: hard
"@commitlint/lint@npm:^17.8.0":
version: 17.8.0
resolution: "@commitlint/lint@npm:17.8.0"
dependencies:
"@commitlint/is-ignored": "npm:^17.8.0"
"@commitlint/parse": "npm:^17.7.0"
"@commitlint/rules": "npm:^17.7.0"
"@commitlint/types": "npm:^17.4.4"
checksum: 9d1fb7a9b8d866bd5cb4ba09d6a44cb0f14b7a384329902f60799992c7c7d291e27e534a71910c7d3800662142570f9d50c31bfbdcc157e502f6d321cb809150
languageName: node
linkType: hard
"@commitlint/load@npm:^17.8.0":
version: 17.8.0
resolution: "@commitlint/load@npm:17.8.0"
dependencies:
"@commitlint/config-validator": "npm:^17.6.7"
"@commitlint/execute-rule": "npm:^17.4.0"
"@commitlint/resolve-extends": "npm:^17.6.7"
"@commitlint/types": "npm:^17.4.4"
"@types/node": "npm:20.5.1"
chalk: "npm:^4.1.0"
cosmiconfig: "npm:^8.0.0"
cosmiconfig-typescript-loader: "npm:^4.0.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
resolve-from: "npm:^5.0.0"
ts-node: "npm:^10.8.1"
typescript: "npm:^4.6.4 || ^5.0.0"
checksum: 24287a9dfbf57f7d824ffc7f6a3df2f4771db501ce05219ed93abd00b68dc629a41a70c4d6c142ca05c4f29d38a1cf823353886c2378f5dd77d6e0cf2c540ffc
languageName: node
linkType: hard
"@commitlint/message@npm:^17.4.2":
version: 17.4.2
resolution: "@commitlint/message@npm:17.4.2"
checksum: 55b6cfeb57f7c9f913e18821aa4d972a6b6faa78c62741390996151f99554396f6df68ccfee86c163d24d8c27a4dbbcb50ef03c2972ab0a7a21d89daa2f9a519
languageName: node
linkType: hard
"@commitlint/parse@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/parse@npm:17.7.0"
dependencies:
"@commitlint/types": "npm:^17.4.4"
conventional-changelog-angular: "npm:^6.0.0"
conventional-commits-parser: "npm:^4.0.0"
checksum: d70d53932576fa30c078099fe9ab00190298ed6aec696648633ab16eb80386e0c1b407c44eb7c548b598573c260ed1bfa890dd8134166d28811f66ed436efbea
languageName: node
linkType: hard
"@commitlint/read@npm:^17.5.1":
version: 17.5.1
resolution: "@commitlint/read@npm:17.5.1"
dependencies:
"@commitlint/top-level": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.4"
fs-extra: "npm:^11.0.0"
git-raw-commits: "npm:^2.0.11"
minimist: "npm:^1.2.6"
checksum: 62ee4f7a47b22a8571ae313bca36b418805a248f4986557f38f06317c44b6d18072889f95e7bc22bbb33a2f2b08236f74596ff28e3dbd0894249477a9df367c3
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/resolve-extends@npm:17.6.7"
dependencies:
"@commitlint/config-validator": "npm:^17.6.7"
"@commitlint/types": "npm:^17.4.4"
import-fresh: "npm:^3.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
resolve-global: "npm:^1.0.0"
checksum: 3717b4ccef6e46136f8d4a4b8d78d57184b4331401db07e27f89acb049a3903035bb2b0dbd4c07e3cdcc402cbe693b365c244a0da3df47e0f74cbf3ba76be9ec
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/rules@npm:17.7.0"
dependencies:
"@commitlint/ensure": "npm:^17.6.7"
"@commitlint/message": "npm:^17.4.2"
"@commitlint/to-lines": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.4"
execa: "npm:^5.0.0"
checksum: bc6af55cb8fab82baac450f87e02fa51d91f44855aadced92d74d05f9af99ccfd90b08c67355b53ca6b4b45f386854bcf52e1a4e5bc003665f4873e785eb7c70
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/to-lines@npm:17.4.0"
checksum: 841f90f606238e145ab4ba02940662d511fc04fe553619900152a8542170fe664031b95d820ffaeb8864d4851344278e662ef29637d763fc19fd828e0f8d139b
languageName: node
linkType: hard
"@commitlint/top-level@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/top-level@npm:17.4.0"
dependencies:
find-up: "npm:^5.0.0"
checksum: 14cd77e982d2dd7989718dafdbf7a2168a5fb387005e0686c2dfa9ffc36bb9a749e5d80a151884459e4d8c88564339688dca26e9c711abe043beeb3f30c3dfd6
languageName: node
linkType: hard
"@commitlint/types@npm:17.4.4, @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
"@cspell/cspell-bundled-dicts@npm:7.3.8":
version: 7.3.8
resolution: "@cspell/cspell-bundled-dicts@npm:7.3.8"
dependencies:
"@cspell/dict-ada": "npm:^4.0.2"
"@cspell/dict-aws": "npm:^4.0.0"
"@cspell/dict-bash": "npm:^4.1.2"
"@cspell/dict-companies": "npm:^3.0.26"
"@cspell/dict-cpp": "npm:^5.0.8"
"@cspell/dict-cryptocurrencies": "npm:^4.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:^1.0.2"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.3.9"
"@cspell/dict-filetypes": "npm:^3.0.1"
"@cspell/dict-fonts": "npm:^4.0.0"
"@cspell/dict-fsharp": "npm:^1.0.0"
"@cspell/dict-fullstack": "npm:^3.1.5"
"@cspell/dict-gaming-terms": "npm:^1.0.4"
"@cspell/dict-git": "npm:^2.0.0"
"@cspell/dict-golang": "npm:^6.0.3"
"@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-k8s": "npm:^1.0.1"
"@cspell/dict-latex": "npm:^4.0.0"
"@cspell/dict-lorem-ipsum": "npm:^4.0.0"
"@cspell/dict-lua": "npm:^4.0.2"
"@cspell/dict-node": "npm:^4.0.3"
"@cspell/dict-npm": "npm:^5.0.12"
"@cspell/dict-php": "npm:^4.0.3"
"@cspell/dict-powershell": "npm:^5.0.2"
"@cspell/dict-public-licenses": "npm:^2.0.5"
"@cspell/dict-python": "npm:^4.1.9"
"@cspell/dict-r": "npm:^2.0.1"
"@cspell/dict-ruby": "npm:^5.0.1"
"@cspell/dict-rust": "npm:^4.0.1"
"@cspell/dict-scala": "npm:^5.0.0"
"@cspell/dict-software-terms": "npm:^3.3.6"
"@cspell/dict-sql": "npm:^2.1.2"
"@cspell/dict-svelte": "npm:^1.0.2"
"@cspell/dict-swift": "npm:^2.0.1"
"@cspell/dict-typescript": "npm:^3.1.2"
"@cspell/dict-vue": "npm:^3.0.0"
checksum: ee1bd757cea754f9a95e770cf82681d3411a4fd4c8c1892bb9887b6db7ddb19d5dac031bc822736bfb09472ab685fe462a33d1d555628416b5a88175a0148b12
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:7.3.8":
version: 7.3.8
resolution: "@cspell/cspell-json-reporter@npm:7.3.8"
dependencies:
"@cspell/cspell-types": "npm:7.3.8"
checksum: e41c31c7ed22c2dac40ae353b9ed7ba6963c3f886eb198a321d145963e2895016e19426c88640dbffa3d82724ce572bb674c435f0dae6552739fa4130c8b71d8
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:7.3.8":
version: 7.3.8
resolution: "@cspell/cspell-pipe@npm:7.3.8"
checksum: cfd58b0b9aa50c3e858bd15b84f70c6e4d104798537fe639c64cf17790350208592a311053bf167e88fa1a0bb4333461a51ea8591eb1423a605d552eb0058b23
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:7.3.8":
version: 7.3.8
resolution: "@cspell/cspell-resolver@npm:7.3.8"
dependencies:
global-dirs: "npm:^3.0.1"
checksum: 80564b9fb3dce90365b62eb8d120c1eec3df56175899ec0c81725a4355a398ad858e06c7ebc6446d00a707076e1389fe28e6cf645be5b0a4be4cba2c88ba7a7d
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:7.3.8":
version: 7.3.8
resolution: "@cspell/cspell-service-bus@npm:7.3.8"
checksum: d12fbfb4e97764edb2f1e60d435c6df34a1da26df95bfa3ee3f94ce0b5b0c5ff299a43b3b16b4abf8c989343675eed6485b8cf84626dce4ff2138bbfa1d046d1
languageName: node
linkType: hard
"@cspell/cspell-types@npm:7.3.8":
version: 7.3.8
resolution: "@cspell/cspell-types@npm:7.3.8"
checksum: 2a229b5cd12b1c0999d26afe9b102f90fcdadec86c5813d56f24fa9575d90242bd7d55fdaba9cfc69711bb45784f92b14a12c04ee487c960d15258400ea46a20
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.0":
version: 4.0.0
resolution: "@cspell/dict-aws@npm:4.0.0"
checksum: d1df39eb1a434c2639a941962894a822173c30d102dc27498b08c09cb3f71fc01375f798d3fcb15678768b4344255281cbc9a1697d55fccf12b01ff694e5f4c2
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.2":
version: 4.1.2
resolution: "@cspell/dict-bash@npm:4.1.2"
checksum: 2fc6acd6c74c245a7e0c6596f7ae2189569134dff9e95e0f9562812a1e39bbc2c2b39325e8494aba1367b2849656fd3abe6985afc5c51157044c2683b220ba70
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.0.26":
version: 3.0.26
resolution: "@cspell/dict-companies@npm:3.0.26"
checksum: 2bfe550e8594b18b885cf003ec40d1c02f558f8ba2abd929442c695e5225f9363cf2f833ea605c4b9c4221313c4df3a5ae175e3b9a90aeb668827c18e96a0a06
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^5.0.8":
version: 5.0.8
resolution: "@cspell/dict-cpp@npm:5.0.8"
checksum: f584f76053053c21aa942dee3dc0832b649ffe464284537644a280c2af2995298f0d850f9789ebe37c1a59e4c67df5c3b696b10c0c0e40ba2a4722c9d563473a
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-cryptocurrencies@npm:4.0.0"
checksum: c565a660b62a5ab2d597abaaef7f277cfba05e0617064dd526aadf9ba64306ab16f9fa4adf5ad8b3e79310cf127f737e5f876d4424efa7da65e403817f4e184c
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:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-en-common-misspellings@npm:1.0.2"
checksum: 5d3a618ed06aea7bbe9d893e45b6feee9a9cefa42da16e1cfb23d2886627c0a0b0e9ae3501c8fa4a7338181ee36ba910f21d56494a37cc75fe1fc93545cec516
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.9":
version: 4.3.9
resolution: "@cspell/dict-en_us@npm:4.3.9"
checksum: 476e3609d810dd7764abb9a2b6bde68ef804e22b37008d2de7db5f1bc35c82a598cef8e82b0dc69cf3e4cb9e1550e928f780dd1438b7ad0d782573976c038880
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.1":
version: 3.0.1
resolution: "@cspell/dict-filetypes@npm:3.0.1"
checksum: 43ad696dac5feaee290120216153a25f454302bda5834ce5e86dbab5fca73266a35c7fc00466120ae3b696ec1fa94b4f2b36e036dd07f05d5a4a770db7eb5d0a
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.0":
version: 1.0.0
resolution: "@cspell/dict-fsharp@npm:1.0.0"
checksum: 79141e510c44581cfa5082ab69e9f0fb09f873743f9afb9e9b465e4b74f2e05c18fd89e796649616202527f9cc50603e5f0c8b81f482b22e80a7988d3c856411
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.4":
version: 1.0.4
resolution: "@cspell/dict-gaming-terms@npm:1.0.4"
checksum: 3e57f5567747a8598b3e4de4f63a3b8090cccf7688f3e91f0a9e005e916645db1224ea600afd5b497b7e8c6a1f9291dfd4cb932278dfd423657107203a2ace0b
languageName: node
linkType: hard
"@cspell/dict-git@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-git@npm:2.0.0"
checksum: eb3985f1f8717ad4e41e146f1b011e0476d7625ab1ebee55364575b727323300773a89a8dd5a20466c74c57b7d2678e0c92446453bd484a44203be737bc07964
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.3":
version: 6.0.3
resolution: "@cspell/dict-golang@npm:6.0.3"
checksum: 73616a57cbbbda16b647d37e5173f335cb10aac34d8a1494e8bc3980ab0186551119acf481483d60c039c5bb7da6a41f4761dbba797565dc64f327f2cc45b22e
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-k8s@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-k8s@npm:1.0.1"
checksum: 6f42aaa1571bedeed6dda7f08a4f34b54a2b18f7ba21231290300c339f4a684b8470c04b88f48dc141516038dd2419d74fd086a025bc4a816516a6bb9e170ab2
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.2":
version: 4.0.2
resolution: "@cspell/dict-lua@npm:4.0.2"
checksum: 570e45e4430fa3b07759dcc4fcaf75995bd1f3c5f335496de67963177da692e89c84fb08f5b5547a582049dee64c768e81294edd4f047dee31807261e85f6f30
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.12":
version: 5.0.12
resolution: "@cspell/dict-npm@npm:5.0.12"
checksum: ac388cbe10426ec3504ca19ac2dfaaeb012a372099e7a8fd1032625fb434fec9157511d09e34c974eb71e5bcb4f26a0027332ce6d754970722ac98835aba07d3
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-php@npm:4.0.3"
checksum: fe0eef39c76c9754e8c77a791b3084cc73a5675970713868ae745caa3fd6e8a08ce7373b6f31e230c2b3b768e5f6e82f3e6a6c2b9120e09daac9f8639f118847
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.2":
version: 5.0.2
resolution: "@cspell/dict-powershell@npm:5.0.2"
checksum: 0591920546caa6965fe1238fe43aa9a9d714594d7149225bebfb0157a337d741603f52f39b2265131d20612617cfccf5da92e04491824d4c395ec664eca98076
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.5":
version: 2.0.5
resolution: "@cspell/dict-public-licenses@npm:2.0.5"
checksum: 07e647c24ed1a5f0e88828264581e9f8fde179f776a50c4389ac0bc5c09a2bb94280d299c94d1884a8da01fbf112c5640178789b457f06b1a97414b18cda99e0
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.1.9":
version: 4.1.9
resolution: "@cspell/dict-python@npm:4.1.9"
dependencies:
"@cspell/dict-data-science": "npm:^1.0.11"
checksum: f49417d154430c9a2b8f856e31d817c4d2c1a1b8725578372c29182985ffd8b603057b3b920d5b63c279f30e2887d2a177f0490245ccdbba78caa4e0f4f47377
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.1":
version: 5.0.1
resolution: "@cspell/dict-ruby@npm:5.0.1"
checksum: 2d85495b28cb7ea05b85cf3091f8f03f8a51968d532ebb0fc41ea9f8ba31915d66c8a8a2c6146a080f88ef3445a43ae972cf549ec522b2f63bfb8cb11adf8289
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-rust@npm:4.0.1"
checksum: 146d3af5d0b1b84ec62059353416cd5d4b53995ed0a0edb47b96ed89f1b8b82881e76c1bac46311318f41d1619eab87d81e0cdc94855f50b79cfa0719333cbb1
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.6":
version: 3.3.6
resolution: "@cspell/dict-software-terms@npm:3.3.6"
checksum: cc956a0faca87b1bf44297130bc8a8bcea52ecfab3c9b31c6766d9e7be6daf98568dc056ba254f43b1a680e433811ecfe6e1d2a72c8d995b59859d7c7dadd9dc
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.1.2":
version: 2.1.2
resolution: "@cspell/dict-sql@npm:2.1.2"
checksum: fffa66d7f3412b559be7d0acd711504b6b3b78a0380ba4e46b397e54d4754305b398e2e931965016aa6ca3c25e4a056c11974d58fbb7b78afd6d38660a2ede0b
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-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:7.3.8":
version: 7.3.8
resolution: "@cspell/dynamic-import@npm:7.3.8"
dependencies:
import-meta-resolve: "npm:^3.0.0"
checksum: 75cb2f8c544c50db75c2fba860a6f8a48dfff1a818723e8381bc5c61605805d02a440ede39d546cdc5f9fcd90b3d0ad95112ad4d70fee1acce71d6f09d4d7369
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:7.3.8":
version: 7.3.8
resolution: "@cspell/strong-weak-map@npm:7.3.8"
checksum: c91365b3d408de49f3009b96a88be645219550a9f944991a5068a9b54654e963f35ab55fea974d6881435435c19e1a1a7a612bf72923a04ee3b7af19ab8e2d97
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: b6e38a1712fab242c86a241c229cf562195aad985d0564bd352ac404be583029e89e93028ffd2c251d2c407ecac5fb0cbdca94a2d5c10f29ac806ede0508b3ff
languageName: node
linkType: hard
"@dprint/darwin-arm64@npm:0.41.0":
version: 0.41.0
resolution: "@dprint/darwin-arm64@npm:0.41.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@dprint/darwin-x64@npm:0.41.0":
version: 0.41.0
resolution: "@dprint/darwin-x64@npm:0.41.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@dprint/linux-arm64-glibc@npm:0.41.0":
version: 0.41.0
resolution: "@dprint/linux-arm64-glibc@npm:0.41.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-x64-glibc@npm:0.41.0":
version: 0.41.0
resolution: "@dprint/linux-x64-glibc@npm:0.41.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-x64-musl@npm:0.41.0":
version: 0.41.0
resolution: "@dprint/linux-x64-musl@npm:0.41.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@dprint/win32-x64@npm:0.41.0":
version: 0.41.0
resolution: "@dprint/win32-x64@npm:0.41.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/android-arm64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/android-arm64@npm:0.18.19"
conditions: os=android & cpu=arm64
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-arm@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/android-arm@npm:0.18.19"
conditions: os=android & cpu=arm
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-x64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/android-x64@npm:0.18.19"
conditions: os=android & cpu=x64
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/darwin-arm64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/darwin-arm64@npm:0.18.19"
conditions: os=darwin & cpu=arm64
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-x64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/darwin-x64@npm:0.18.19"
conditions: os=darwin & cpu=x64
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/freebsd-arm64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/freebsd-arm64@npm:0.18.19"
conditions: os=freebsd & cpu=arm64
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
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/freebsd-x64@npm:0.18.19"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/freebsd-x64@npm:0.19.5"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/linux-arm64@npm:0.18.19"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-arm64@npm:0.19.5"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/linux-arm@npm:0.18.19"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-arm@npm:0.19.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/linux-ia32@npm:0.18.19"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-ia32@npm:0.19.5"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/linux-loong64@npm:0.18.19"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-loong64@npm:0.19.5"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/linux-mips64el@npm:0.18.19"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-mips64el@npm:0.19.5"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/linux-ppc64@npm:0.18.19"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-ppc64@npm:0.19.5"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.18.19":
version: 0.18.19
resolution: "@esbuild/linux-riscv64@npm:0.18.19"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.5":
version: 0.19.5
resolution: "@esbuild/linux-riscv64@npm:0.19.5"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.18.19":