-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
7188 lines (6421 loc) · 241 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: 6
cacheKey: 8
"@75lb/deep-merge@npm:^1.1.1":
version: 1.1.1
resolution: "@75lb/deep-merge@npm:1.1.1"
dependencies:
lodash.assignwith: ^4.2.0
typical: ^7.1.1
checksum: fd9063488d854bc5d2e1636426a51d7864d0d32d2d82c5b01a40e89466088680f6e2623345fb46782de438088b6d3f029b0eea6d79a7807e0000b365f6b8142b
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.23.4
resolution: "@babel/code-frame@npm:7.23.4"
dependencies:
"@babel/highlight": ^7.23.4
chalk: ^2.4.2
checksum: 29999d08c3dbd803f3c296dae7f4f40af1f9e381d6bbc76e5a75327c4b8b023bcb2e209843d292f5d71c3b5c845df1da959d415ed862d6a68e0ad6c5c9622d37
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": ^7.22.20
chalk: ^2.4.2
js-tokens: ^4.0.0
checksum: 643acecdc235f87d925979a979b539a5d7d1f31ae7db8d89047269082694122d11aa85351304c9c978ceeb6d250591ccadb06c366f358ccee08bb9c122476b89
languageName: node
linkType: hard
"@commitlint/cli@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/cli@npm:18.4.3"
dependencies:
"@commitlint/format": ^18.4.3
"@commitlint/lint": ^18.4.3
"@commitlint/load": ^18.4.3
"@commitlint/read": ^18.4.3
"@commitlint/types": ^18.4.3
execa: ^5.0.0
lodash.isfunction: ^3.0.9
resolve-from: 5.0.0
resolve-global: 1.0.0
yargs: ^17.0.0
bin:
commitlint: cli.js
checksum: 903b0db897ae9836aa9190da4bacb26d3f8b9621602f5810ee7cca1cac3c339a16671bec1a4e3a414dc226b57687096f84cae2ed50faac6d1814a4b582d663e2
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/config-conventional@npm:18.4.3"
dependencies:
conventional-changelog-conventionalcommits: ^7.0.2
checksum: bb6c1559979002e79c5e7c575f57fd713638523cdadfa61754eaabb8aad042d688c859e82ccf58589bb9aa2a4497e820702744095c9b82f6018fbb3b5d75d08d
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/config-validator@npm:18.4.3"
dependencies:
"@commitlint/types": ^18.4.3
ajv: ^8.11.0
checksum: e56aa321aa4f680ed78822f974e724e27c005c6c6b910ff59c3a2b0220c97ff4291e316674637ec28da6f8234952e2d20673d9851e049913474e8f24b4e2d376
languageName: node
linkType: hard
"@commitlint/ensure@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/ensure@npm:18.4.3"
dependencies:
"@commitlint/types": ^18.4.3
lodash.camelcase: ^4.3.0
lodash.kebabcase: ^4.1.1
lodash.snakecase: ^4.1.1
lodash.startcase: ^4.4.0
lodash.upperfirst: ^4.3.1
checksum: 5c8c437ffef5b0d241a02d1c8967324765429d27e2ae882feb4fc96f53472e4c8d6ea6d86a64da7c97dd7efac07bc1f1c2a8babc1bbb56db48152a4f26f2ba69
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/execute-rule@npm:18.4.3"
checksum: 0f0e99e2f079872efe39915313f7d353a36dfac4432bb74ac60a526ca3c9b7bb55365a2e4627f99f4be3fb8ac4c6e745adcacfbdcbf940418f101ffaa10d5ae3
languageName: node
linkType: hard
"@commitlint/format@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/format@npm:18.4.3"
dependencies:
"@commitlint/types": ^18.4.3
chalk: ^4.1.0
checksum: 244515c99e60ce1e2c4106ee076554a082ab3655225c59c2bb4fab412f47e1d5e44c5e72a9b8907996eb947243f913347d20640a8da9c01b52e4cf247f1a9f94
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/is-ignored@npm:18.4.3"
dependencies:
"@commitlint/types": ^18.4.3
semver: 7.5.4
checksum: 01fd386bea9634dc7cee2a3f8f9916f4dabf9d3043d838b8ea3328ec622a777c4c637f4a80b639289e38429496535561cc7398b36e880b73fcc819d4f1427fb9
languageName: node
linkType: hard
"@commitlint/lint@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/lint@npm:18.4.3"
dependencies:
"@commitlint/is-ignored": ^18.4.3
"@commitlint/parse": ^18.4.3
"@commitlint/rules": ^18.4.3
"@commitlint/types": ^18.4.3
checksum: dd1e0ad437ab62b5f5b562aef7862f6f1c7cc278c0ae2575923a3b1b2b4594a04bcf9573d279c5a1ae1a92378778bb34f485adb9f927eb718dafb40457b0bc19
languageName: node
linkType: hard
"@commitlint/load@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/load@npm:18.4.3"
dependencies:
"@commitlint/config-validator": ^18.4.3
"@commitlint/execute-rule": ^18.4.3
"@commitlint/resolve-extends": ^18.4.3
"@commitlint/types": ^18.4.3
"@types/node": ^18.11.9
chalk: ^4.1.0
cosmiconfig: ^8.3.6
cosmiconfig-typescript-loader: ^5.0.0
lodash.isplainobject: ^4.0.6
lodash.merge: ^4.6.2
lodash.uniq: ^4.5.0
resolve-from: ^5.0.0
checksum: 8fb8652f00f739c75493d3c805d5cc09e5bef8398eff26b9fbfd8d2be2b6a47758bab72650a3ab5202427c9e1936ea36270c40aca39f87fade38c7293194ee21
languageName: node
linkType: hard
"@commitlint/message@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/message@npm:18.4.3"
checksum: b81d59f5a295d0cffbab0edd212b1fa4cdd4fd05cc242bc95d6919c038be9d7022db2d6c0d8132c2910ee409cdce5ce6e472e12ac9bb2d3f6acb7a3db7bbeb99
languageName: node
linkType: hard
"@commitlint/parse@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/parse@npm:18.4.3"
dependencies:
"@commitlint/types": ^18.4.3
conventional-changelog-angular: ^7.0.0
conventional-commits-parser: ^5.0.0
checksum: 696c60ecee20f9bfb5e19715ae777aca8e86b133ef709a66171c228b4f618ef15ba515e11274c46ff13df964ba69ab1ddec4055ddce1bc0a69f70b6d2301ccd5
languageName: node
linkType: hard
"@commitlint/read@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/read@npm:18.4.3"
dependencies:
"@commitlint/top-level": ^18.4.3
"@commitlint/types": ^18.4.3
fs-extra: ^11.0.0
git-raw-commits: ^2.0.11
minimist: ^1.2.6
checksum: ebc815effe4920c769f879947608c367b452f334d9a8e8c3140b7685920bb4ba092d36c5416781522c2e50178a4b91092c5661044c13a0d62dace60091f39706
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/resolve-extends@npm:18.4.3"
dependencies:
"@commitlint/config-validator": ^18.4.3
"@commitlint/types": ^18.4.3
import-fresh: ^3.0.0
lodash.mergewith: ^4.6.2
resolve-from: ^5.0.0
resolve-global: ^1.0.0
checksum: ef321ae425385e720763019a1dcf39b5daf65a661f6af43d69b7aad04eda21ce43487c7552b65f5611c96b45bfefabe63c9eaef20352f223812b5c9d489a600a
languageName: node
linkType: hard
"@commitlint/rules@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/rules@npm:18.4.3"
dependencies:
"@commitlint/ensure": ^18.4.3
"@commitlint/message": ^18.4.3
"@commitlint/to-lines": ^18.4.3
"@commitlint/types": ^18.4.3
execa: ^5.0.0
checksum: 857c66c1e4d2d24bb3f07a16576626ac27d103ff589afe59ea36d84276c62bd49005ed2e81f43cb430bbd29eb86eb23ebbfec9c58796654249f0064802b9eb62
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/to-lines@npm:18.4.3"
checksum: c9d47868284168fbe94764a2abe3526010bd2d43fa9a7ac3946648408998efc1279827299346042d019120eb8f5692cc5a5c12159f8da49585e4c885c2e628a6
languageName: node
linkType: hard
"@commitlint/top-level@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/top-level@npm:18.4.3"
dependencies:
find-up: ^5.0.0
checksum: b71581c9c485c2ca518b20021ed8d106ea6cd504453c9bed1436df2a620caec78a38bed1e3e8086c51e8b747a7ba6515569275ef29a6707349db6614cda70940
languageName: node
linkType: hard
"@commitlint/types@npm:^18.4.3":
version: 18.4.3
resolution: "@commitlint/types@npm:18.4.3"
dependencies:
chalk: ^4.1.0
checksum: 52dfc0ee835f3030fff25e45b4568e83eef818126a30f60860637c74de4919c5f9f1eab157622bb70facf9483f07898cfcb47efa484caf6443dd866942e460ec
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:8.3.2":
version: 8.3.2
resolution: "@cspell/cspell-bundled-dicts@npm:8.3.2"
dependencies:
"@cspell/dict-ada": ^4.0.2
"@cspell/dict-aws": ^4.0.1
"@cspell/dict-bash": ^4.1.3
"@cspell/dict-companies": ^3.0.29
"@cspell/dict-cpp": ^5.0.10
"@cspell/dict-cryptocurrencies": ^5.0.0
"@cspell/dict-csharp": ^4.0.2
"@cspell/dict-css": ^4.0.12
"@cspell/dict-dart": ^2.0.3
"@cspell/dict-django": ^4.1.0
"@cspell/dict-docker": ^1.1.7
"@cspell/dict-dotnet": ^5.0.0
"@cspell/dict-elixir": ^4.0.3
"@cspell/dict-en-common-misspellings": ^2.0.0
"@cspell/dict-en-gb": 1.1.33
"@cspell/dict-en_us": ^4.3.13
"@cspell/dict-filetypes": ^3.0.3
"@cspell/dict-fonts": ^4.0.0
"@cspell/dict-fsharp": ^1.0.1
"@cspell/dict-fullstack": ^3.1.5
"@cspell/dict-gaming-terms": ^1.0.4
"@cspell/dict-git": ^3.0.0
"@cspell/dict-golang": ^6.0.5
"@cspell/dict-haskell": ^4.0.1
"@cspell/dict-html": ^4.0.5
"@cspell/dict-html-symbol-entities": ^4.0.0
"@cspell/dict-java": ^5.0.6
"@cspell/dict-k8s": ^1.0.2
"@cspell/dict-latex": ^4.0.0
"@cspell/dict-lorem-ipsum": ^4.0.0
"@cspell/dict-lua": ^4.0.3
"@cspell/dict-makefile": ^1.0.0
"@cspell/dict-node": ^4.0.3
"@cspell/dict-npm": ^5.0.14
"@cspell/dict-php": ^4.0.5
"@cspell/dict-powershell": ^5.0.3
"@cspell/dict-public-licenses": ^2.0.5
"@cspell/dict-python": ^4.1.11
"@cspell/dict-r": ^2.0.1
"@cspell/dict-ruby": ^5.0.2
"@cspell/dict-rust": ^4.0.1
"@cspell/dict-scala": ^5.0.0
"@cspell/dict-software-terms": ^3.3.15
"@cspell/dict-sql": ^2.1.3
"@cspell/dict-svelte": ^1.0.2
"@cspell/dict-swift": ^2.0.1
"@cspell/dict-typescript": ^3.1.2
"@cspell/dict-vue": ^3.0.0
checksum: 2b50d8a3d056a6e261e4d525fe8f70b8d4e9860c305f6ba21ea7869807b2b8100b30d6f4ff4da91ea0ac6fcea7191158c7091e839b3b41ee3052f3e3b401b347
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:8.3.2":
version: 8.3.2
resolution: "@cspell/cspell-json-reporter@npm:8.3.2"
dependencies:
"@cspell/cspell-types": 8.3.2
checksum: 25926f8cfef378dbce59f140d9f383db4598222a3de5f2a0a6840e225d694afce2c069498668304f4ec39e58f5570887ef0d31f45824ca16b0fc31f20180352e
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:8.3.2":
version: 8.3.2
resolution: "@cspell/cspell-pipe@npm:8.3.2"
checksum: 14b01d2cdc6af931a0b5ac9fcd5e5c358fcdd7710ed82d35a9dcf6c7d3e917bc5ac953571ec9fffa4ed22d8f872e2a74a10258cccac10b7cd49878c8c2e15a3c
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:8.3.2":
version: 8.3.2
resolution: "@cspell/cspell-resolver@npm:8.3.2"
dependencies:
global-directory: ^4.0.1
checksum: fe723a1b8407b4168f6262cd30a97ad04eb5eb40f4cac3a11c6bf674ed67cc08525b0282b95edbcaf1d014dec3880f6f01b3f49e4319ade5b8e169f0a910f8d1
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:8.3.2":
version: 8.3.2
resolution: "@cspell/cspell-service-bus@npm:8.3.2"
checksum: 9bec7ddafcd8acab743248eb547fa5a84cf5363b0d0da354fdb2a0a6268a516b3600c7034ea71b6fca1c2517818f939876d961a4a3fc73a175eb62f5cbb6b7ae
languageName: node
linkType: hard
"@cspell/cspell-types@npm:8.3.2":
version: 8.3.2
resolution: "@cspell/cspell-types@npm:8.3.2"
checksum: 5f0b038e6717a3fa9c4109845c94e2a3d561a8b1a5dac073535929dee81e4d6d18af96759135a4dab6b06529a86ab1bd4e6b4a70121561bf22dfe4508140a5c3
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-ada@npm:4.0.2"
checksum: 847729d40022db4df698aa9511c6b9073954f71268b64ad4fa354e6ac3eb5b03486bcb566ecadd4bccbebb4f188752eff2b2bdd9021b58dbf2cd61cd6a426752
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-aws@npm:4.0.1"
checksum: 8445468151205fdfc51993ebc329e3a210a1628069971f973fb87c4d32cbb33676b32a370021efe0863ef63414632c8edf025ba7d296e932a93f3b05ba6193fc
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.29":
version: 3.0.31
resolution: "@cspell/dict-companies@npm:3.0.31"
checksum: 6fd3ee3bd4485c54231e72bb6602166c51074571177a51f9fdbc71a5afc50e2ad7b43a85d93971c81912cadd00722042a0a48e94cb59627a4a8705dab32b4736
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^5.0.10":
version: 5.1.3
resolution: "@cspell/dict-cpp@npm:5.1.3"
checksum: 82c75789101856383912bfbef3599d2cc5154ce26761efc1c65154f69015b2bdde07b64edd1f55b2f860f1b8309afb41904837706b9236e684bf03ad45749f87
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: 208c9434b8f5c8a33a96bb087572c10d5c946cd0847b9439271d0c4d2dcde5ee2588aca73bfea0c868d0124731b3ca890fab4762724d16435f161d4d5e7f3b9b
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: b8a66135525e235bd6f2ea02de84ac7eae78e1068418f36b0c2260f9516b72492ef73f3fdc5fe8db2a6933747ff45a3eb743423a7dbf5b74548b1b1f30792679
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: 3e55abd3cc0ecb0924caa245b83595c8e90b42a8fb438f3294d06ad32d30f3235dc8943a2865f06eaec5285a8d6a7df1db71fb228753d56a678a0f0cff87c24c
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: 977aac18d737d88e4cdca0771b664078a2d8cde1a0313696882581e67cb1acbf1f6a3923c1ee3f05878cfe3ad6f063a2e451f33e7df61cd1e0eb5de425bb4f2d
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: 09a9e7a3ee4cad75c87cc7adf6b5981b3ec52d4e3707e8de2e1a2a55cd5c8539057a7742d9c7035e23eb0aeff80a95b9599696c7192c9b3b9d8f14440fe01938
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.3.13":
version: 4.3.15
resolution: "@cspell/dict-en_us@npm:4.3.15"
checksum: 8c49af876c0ec6d5e2f50b5a6a0e2acefb050578bb567aa950947f4e67f1e3ea2fbdc18d44a6b59ebfaffe571124def936131b7d68e7070f9631c75414d0194b
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: 7e33e4b39fb071165d81920dd0ccc07e4b737a7b09522acf3781b26136526e445e03e456caaecff261d76b711196b84cff7c21293853bf00ebe93f2e64c42520
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.4":
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: 20bf2c6a23d26f23e39629f3a48c31c2993d126b03ca31892e4e03ed48d2f5d5d929675987df54b6dad95828f6baa080111167e81a2dc3836c1f5b0b6db04a56
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: 2273e77cad6f373c4b0a43c5fb707725ff7c845e6de3545c8b05cbb2d82e1205f004a817498f561ced3d8d8b1d15848a82f2a667c0b64a1ee46cbde67d8ac136
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.6":
version: 5.0.6
resolution: "@cspell/dict-java@npm:5.0.6"
checksum: 7d5df7831e8a4c0295ebbcfdf9a3185b197f1aa60ec85f7edf4aaec4cc1c53f37a291f3f95543642951d21ff487285f5cfb6e853b7f96f514a35052d59252909
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-k8s@npm:1.0.2"
checksum: 4afd7806033b2bf71b17f4cf3fbc33449492bfb2a33a8301cc97b2e55583c07a4a07c288f50f445261c1de4b95494e495b8b982ca428d285393f7eb917bb5a61
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-latex@npm:4.0.0"
checksum: 33a3f158d8c0151cbb4e6bd79ba1189d167b3916e1ce37d7b5754d18dffefe061320fa54c3cb482bd5c7cf37392d0112530b07a3eca63dffbe1069de317dc652
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: 178e7f3ab45f30722cae7354803dd98ea6577c025a11eda9362fa795a06dd8e934f833bfc7d46816617974822ace11217505a1bd0ea2955aaee92cf94cc6b127
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.0.14":
version: 5.0.15
resolution: "@cspell/dict-npm@npm:5.0.15"
checksum: 8be1089f438261ff09eda368b5451448b0701d514f79d555196139ad45144e94184a5df3bdf48379e667f15dc84e8f97ed2a178c097b7ec1a448fbe18e24a3fc
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-php@npm:4.0.5"
checksum: 017375f8a08f93872672b9d14c885b3114ea1b82cb8a4375029c7e71dcb303b82bf684fc84df3cbd8d74b9d1e74c80234280605ef8ca26a7972d99bbf15b14f9
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.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.11":
version: 4.1.11
resolution: "@cspell/dict-python@npm:4.1.11"
dependencies:
"@cspell/dict-data-science": ^1.0.11
checksum: cdfc493d3a260887dc31b115ab880849895522c4a0c0d4fe379a2e42ebf41f0724f02f778629e3e972fc6fa93e6d7bc7892e4b26b3b6fbf72399cf5d3b67585b
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.1":
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: 759dd8746e68e45299b65eeaf1dfd32d1e345fd80fd9a623af502266598c384198853001f70a700c454d8490fb9a5e1358ca1e0d7c0d43154a4f07e2d5531c72
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^3.3.15, @cspell/dict-software-terms@npm:^3.3.17":
version: 3.3.17
resolution: "@cspell/dict-software-terms@npm:3.3.17"
checksum: 0e8b3cf226f2cd3dd0bccb1f28a8fac24d7223e7ba670b73aec08cb69a1285755743716e53261ae4ef4f6f43d7682a8af11f4a14ef50b1875c1809f955c71f06
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-typescript@npm:^3.1.2":
version: 3.1.2
resolution: "@cspell/dict-typescript@npm:3.1.2"
checksum: 3cd0fa39856002975cf05b5584de42f58700a3420bd08b7b073af87dbcc1f66cab45e36a2156dd4e6c926cf67baaa192f02ccf61b9a9e5e94e69e035af54cec1
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.3.2":
version: 8.3.2
resolution: "@cspell/dynamic-import@npm:8.3.2"
dependencies:
import-meta-resolve: ^4.0.0
checksum: 176a5684922e9d3b3b277cdacbac14da509f691bd62da5135fab7c75db57f41c52ef0386c6ba3958e48dbc1b7b6f2751067c63bc1167ee09fae427c86dac71f7
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:8.3.2":
version: 8.3.2
resolution: "@cspell/strong-weak-map@npm:8.3.2"
checksum: 696389c5ecb985bdded3530a088712ad03354051efc6506fae0328353a476604008a03364f3736de9041f51128b46ff6ffdda628c03c2c4800dc256a1b75e6ba
languageName: node
linkType: hard
"@ericcornelissen/bash-parser@npm:0.5.2":
version: 0.5.2
resolution: "@ericcornelissen/bash-parser@npm:0.5.2"
dependencies:
array-last: ^1.1.1
babylon: ^6.9.1
compose-function: ^3.0.3
deep-freeze: 0.0.1
filter-iterator: 0.0.1
filter-obj: ^1.1.0
has-own-property: ^0.1.0
identity-function: ^1.0.0
is-iterable: ^1.1.0
iterable-lookahead: ^1.0.0
lodash.curry: ^4.1.1
magic-string: ^0.16.0
map-obj: ^2.0.0
object-pairs: ^0.1.0
object-values: ^1.0.0
reverse-arguments: ^1.0.0
shell-quote-word: ^1.0.1
to-pascal-case: ^1.0.0
unescape-js: ^1.0.5
checksum: ed6feb775a45e529e36b8ab01cfe2ba39446d8403f30022d4c00f009a45ae47e9c2fd43d5607b7120366c29c42aaf4c5b0bc202066e71d543f3cde235240a87b
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm64@npm:0.18.20"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/android-arm64@npm:0.19.8"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-arm@npm:0.18.20"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/android-arm@npm:0.19.8"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/android-x64@npm:0.18.20"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/android-x64@npm:0.19.8"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-arm64@npm:0.18.20"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/darwin-arm64@npm:0.19.8"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/darwin-x64@npm:0.18.20"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/darwin-x64@npm:0.19.8"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-arm64@npm:0.18.20"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/freebsd-arm64@npm:0.19.8"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/freebsd-x64@npm:0.18.20"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/freebsd-x64@npm:0.19.8"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm64@npm:0.18.20"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-arm64@npm:0.19.8"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-arm@npm:0.18.20"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-arm@npm:0.19.8"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ia32@npm:0.18.20"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-ia32@npm:0.19.8"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-loong64@npm:0.18.20"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-loong64@npm:0.19.8"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-mips64el@npm:0.18.20"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-mips64el@npm:0.19.8"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-ppc64@npm:0.18.20"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-ppc64@npm:0.19.8"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-riscv64@npm:0.18.20"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-riscv64@npm:0.19.8"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-s390x@npm:0.18.20"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-s390x@npm:0.19.8"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/linux-x64@npm:0.18.20"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/linux-x64@npm:0.19.8"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/netbsd-x64@npm:0.18.20"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/netbsd-x64@npm:0.19.8"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/openbsd-x64@npm:0.18.20"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/openbsd-x64@npm:0.19.8"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/sunos-x64@npm:0.18.20"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.19.8":
version: 0.19.8
resolution: "@esbuild/sunos-x64@npm:0.19.8"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.18.20":
version: 0.18.20
resolution: "@esbuild/win32-arm64@npm:0.18.20"
conditions: os=win32 & cpu=arm64