-
Notifications
You must be signed in to change notification settings - Fork 400
Expand file tree
/
Copy pathyarn.lock
More file actions
13037 lines (11712 loc) · 453 KB
/
Copy pathyarn.lock
File metadata and controls
13037 lines (11712 loc) · 453 KB
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
"@75lb/deep-merge@npm:^1.1.1":
version: 1.1.2
resolution: "@75lb/deep-merge@npm:1.1.2"
dependencies:
lodash: "npm:^4.17.21"
typical: "npm:^7.1.1"
checksum: 10/e64f8488ccd0e0237d1fb9450e5d56583c7b9421e08abcbcb277fbafaf979291c216c892834797b82ba4853329422d51e1564d02a6981debccfb2d49eee19cc1
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@actions/core@npm:^1.10.1":
version: 1.11.1
resolution: "@actions/core@npm:1.11.1"
dependencies:
"@actions/exec": "npm:^1.1.1"
"@actions/http-client": "npm:^2.0.1"
checksum: 10/94f260e33607cc16567ce4c88014f069cd7da92baaa443b72cff80fdf4f1dcd18192e135df0d51ec29e8b82cfe214218715d482f2a7804efa5095737d1245f38
languageName: node
linkType: hard
"@actions/exec@npm:^1.1.1":
version: 1.1.1
resolution: "@actions/exec@npm:1.1.1"
dependencies:
"@actions/io": "npm:^1.0.1"
checksum: 10/c04bd25191e522841c7e17862d70099de8db61278d2b4c744b69ac0197a48f85c75dba548e1c29c695c4cc5363d558846b4dcd3db9013463c18ba8cf36497c6d
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1":
version: 2.2.3
resolution: "@actions/http-client@npm:2.2.3"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10/0c0a540c79e50f795d214f696710bb9c50bdf5bb1458be288140f2aae3686adec73fdb464c43da5ef94f985ac7736273efef21cb5ba5a3b09e85b403d852c04b
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 10/4de44e8d428ba9f20049c844b37ecd486b589ed201f8cc8c5b550a9e4c72d1f594271ee2a7a6cfe8a42ebfb5dd527ef65016454656db391a353d41eab4f147e1
languageName: node
linkType: hard
"@adraffy/ens-normalize@npm:1.10.1":
version: 1.10.1
resolution: "@adraffy/ens-normalize@npm:1.10.1"
checksum: 10/4cb938c4abb88a346d50cb0ea44243ab3574330c81d4f5aaaf9dfee584b96189d0faa404de0fcbef5a1b73909ea4ebc3e63d84bd23f9949e5c8d4085207a5091
languageName: node
linkType: hard
"@aztec/bb.js@npm:5.0.0-nightly.20260522":
version: 5.0.0-nightly.20260522
resolution: "@aztec/bb.js@npm:5.0.0-nightly.20260522"
dependencies:
comlink: "npm:^4.4.1"
commander: "npm:^12.1.0"
idb-keyval: "npm:^6.2.1"
msgpackr: "npm:^1.11.2"
pako: "npm:^2.1.0"
tslib: "npm:^2.4.0"
bin:
bb: dest/node/bin/index.js
checksum: 10/2e1ef141d3ea2e7df092d23c9dc29268ea01213aca2becd3e43667d356d9e337623867ddd4360be925a6adb3cc7b6212e01863819709e181eeafaa42c1914e4a
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.12.11":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 10/44e58529c9d93083288dc9e649c553c5ba997475a7b0758cc3ddc4d77b8a7d985dbe78cc39c9bbc61f26d50af6da1ddf0a3427eae8cc222a9370619b671ed8f5
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10/df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10/62fef9b5bcea7131df4626d009029b1ae85332042f4648a4ce6e740c3fd23112603c740c45575caec62f260c96b11054d3be5987f4981a5479793579c3aac71f
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-bundled-dicts@npm:10.0.1"
dependencies:
"@cspell/dict-ada": "npm:^4.1.1"
"@cspell/dict-al": "npm:^1.1.1"
"@cspell/dict-aws": "npm:^4.0.17"
"@cspell/dict-bash": "npm:^4.2.2"
"@cspell/dict-companies": "npm:^3.2.11"
"@cspell/dict-cpp": "npm:^7.0.2"
"@cspell/dict-cryptocurrencies": "npm:^5.0.5"
"@cspell/dict-csharp": "npm:^4.0.8"
"@cspell/dict-css": "npm:^4.1.1"
"@cspell/dict-dart": "npm:^2.3.2"
"@cspell/dict-data-science": "npm:^2.0.13"
"@cspell/dict-django": "npm:^4.1.6"
"@cspell/dict-docker": "npm:^1.1.17"
"@cspell/dict-dotnet": "npm:^5.0.13"
"@cspell/dict-elixir": "npm:^4.0.8"
"@cspell/dict-en-common-misspellings": "npm:^2.1.12"
"@cspell/dict-en-gb-mit": "npm:^3.1.22"
"@cspell/dict-en_us": "npm:^4.4.33"
"@cspell/dict-filetypes": "npm:^3.0.18"
"@cspell/dict-flutter": "npm:^1.1.1"
"@cspell/dict-fonts": "npm:^4.0.6"
"@cspell/dict-fsharp": "npm:^1.1.1"
"@cspell/dict-fullstack": "npm:^3.2.9"
"@cspell/dict-gaming-terms": "npm:^1.1.2"
"@cspell/dict-git": "npm:^3.1.0"
"@cspell/dict-golang": "npm:^6.0.26"
"@cspell/dict-google": "npm:^1.0.9"
"@cspell/dict-haskell": "npm:^4.0.6"
"@cspell/dict-html": "npm:^4.0.15"
"@cspell/dict-html-symbol-entities": "npm:^4.0.5"
"@cspell/dict-java": "npm:^5.0.12"
"@cspell/dict-julia": "npm:^1.1.1"
"@cspell/dict-k8s": "npm:^1.0.12"
"@cspell/dict-kotlin": "npm:^1.1.1"
"@cspell/dict-latex": "npm:^5.1.0"
"@cspell/dict-lorem-ipsum": "npm:^4.0.5"
"@cspell/dict-lua": "npm:^4.0.8"
"@cspell/dict-makefile": "npm:^1.0.5"
"@cspell/dict-markdown": "npm:^2.0.16"
"@cspell/dict-monkeyc": "npm:^1.0.12"
"@cspell/dict-node": "npm:^5.0.9"
"@cspell/dict-npm": "npm:^5.2.38"
"@cspell/dict-php": "npm:^4.1.1"
"@cspell/dict-powershell": "npm:^5.0.15"
"@cspell/dict-public-licenses": "npm:^2.0.16"
"@cspell/dict-python": "npm:^4.2.26"
"@cspell/dict-r": "npm:^2.1.1"
"@cspell/dict-ruby": "npm:^5.1.1"
"@cspell/dict-rust": "npm:^4.1.2"
"@cspell/dict-scala": "npm:^5.0.9"
"@cspell/dict-shell": "npm:^1.1.2"
"@cspell/dict-software-terms": "npm:^5.2.2"
"@cspell/dict-sql": "npm:^2.2.1"
"@cspell/dict-svelte": "npm:^1.0.7"
"@cspell/dict-swift": "npm:^2.0.6"
"@cspell/dict-terraform": "npm:^1.1.3"
"@cspell/dict-typescript": "npm:^3.2.3"
"@cspell/dict-vue": "npm:^3.0.5"
"@cspell/dict-zig": "npm:^1.0.0"
checksum: 10/cdf332f6b08190b60203df26a8360813661af629caf4b9104fd64b668579800da6e86c0f0c312ba3da4bf923171b3716de0f597e4d55dbc318188229bd90938c
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-json-reporter@npm:10.0.1"
dependencies:
"@cspell/cspell-types": "npm:10.0.1"
checksum: 10/cbf9707fd50bfceed3ed6863554df74fc34d35aa4dfeed446fc6eb074661fe3c8d12a373d5ac0ab11b69e762ed9c22074226f8db83fbef3c5879d938a021b63e
languageName: node
linkType: hard
"@cspell/cspell-performance-monitor@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-performance-monitor@npm:10.0.1"
checksum: 10/922b58217af881ad01c38c7a7405182ad590322e813b2a0ab51679cd4577721e5d812855145c0a74f8d6337d5d032265b38ffc78158be08b42c2f97c66c071f5
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-pipe@npm:10.0.1"
checksum: 10/5995be987a4f7efc9a9482e0488f618c150d2d41827fc3f692fbf2628ba114bc10bb7d55369e7dbb1bf6c83c3b8cef5de04226d0150df47231f5eae8c0cb733d
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-resolver@npm:10.0.1"
dependencies:
global-directory: "npm:^5.0.0"
checksum: 10/fdf2cfcd91a9eae60ff40068559a29ade993e3e74b0daadb5aa92a9849403a8205d6558de0ac154aa333bad04489f9a9f7f691d2d53db651c0c1da0589761fa8
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-service-bus@npm:10.0.1"
checksum: 10/d7a9a042cbebc49c04e5a66a744a9a2db673369424495cfcca38b8150ebe39dc27908fd910cf01e9ad903a5604b74fbdeffa8935b70481f31bf3bb1d199e29b6
languageName: node
linkType: hard
"@cspell/cspell-types@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-types@npm:10.0.1"
checksum: 10/add7d4f0a3c6776e861c73a0b7b9df34891b73b045c56155351b3185caed881b2b5a7dd9c4de02a60717d7145b126993dd6ee93ee814f5a5bf614ec7c34f9354
languageName: node
linkType: hard
"@cspell/cspell-worker@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/cspell-worker@npm:10.0.1"
dependencies:
cspell-lib: "npm:10.0.1"
checksum: 10/8f56847d355e15789846579be7e3e409cdaf6358239b13e39a1a2052599eb2619e8b6b78b510a7907e5dd8c377d35ba197d591d97dc42457aa17b34046f33717
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-ada@npm:4.1.1"
checksum: 10/0d49c5c9db2ca27328091b0ee604b28fc381ab61ae85fd39c1fee4db77831b0e529648ba845c9bcc92d77bf16cd35ccc7dc56470fecca82d0c9cf6daceb7310c
languageName: node
linkType: hard
"@cspell/dict-al@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-al@npm:1.1.1"
checksum: 10/a1363e99e07aa71cd512ae266cf88a6ea761bac728daf0a78cfe9e02dae4cc9ddf2f73c5670ae889d44a57d50b2b132bea15e839fa8273d7a0544a95118266be
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.17":
version: 4.0.17
resolution: "@cspell/dict-aws@npm:4.0.17"
checksum: 10/9f724e385ffe76a04cb3cd081bf301191c56b31273f5619507ca6baabf8fa00fbe27571d66e89016cd0bbc68cbf97a9920b5247e90e73a60e2eeedb87e1b86c6
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.2.2":
version: 4.2.2
resolution: "@cspell/dict-bash@npm:4.2.2"
dependencies:
"@cspell/dict-shell": "npm:1.1.2"
checksum: 10/0223269db3c438a32ade8865f27b8e65f7ba59dded358d6c9c244049071b3cb156f4fa62ec87fe210b09e09a298547ee9f4809fd9ce1aaade30199ea9b808870
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.2.11":
version: 3.2.11
resolution: "@cspell/dict-companies@npm:3.2.11"
checksum: 10/7ebaa0a31c9d8c20645083b925bda258bbf36e8c139151c59883f426a84883adcca0ca990d9a8b343e8be8e8fbc3c841e8566c69759db9c074aa2e5917fa05d8
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^7.0.2":
version: 7.0.2
resolution: "@cspell/dict-cpp@npm:7.0.2"
checksum: 10/da2ee512a33d5c7a5a91c81ce023bd6fbcbf366cbc311dd6dec02ec6048018dd145e991f54d343bfe52038fa85d3d1268db2f61f2371f5aee6e82a1929967f75
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.5":
version: 5.0.5
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.5"
checksum: 10/93dd23accb42b384fc3153e1423d39f14f88d141f7eabdc68231785b2b352125cbab3a5b6ae2532d2007bf48d70f45887cf22873b5b4654766aa22e1b6fd97a0
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-csharp@npm:4.0.8"
checksum: 10/5acb41c32cdce8c3bda7ea74dfb833db92c403813a57373b8781d4aaede005be1342ad946a16139d47162f2405b90869eee477fc033b7cc10d731bb3ff9547db
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-css@npm:4.1.1"
checksum: 10/83d67eecd3c25a7b057779e48bc1b04b05e831e403dd6e5ff15b9025bda4012553ac356abba548ba5aad820324a5b66738f3dc3dd05378ed273956bada4ef03e
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.3.2":
version: 2.3.2
resolution: "@cspell/dict-dart@npm:2.3.2"
checksum: 10/d4bf20c272110ad6537824199de1224447b798abf225fd3af2b73d8eca4d9e64eac3c2580940d93b07d74744d8e35aea7f2f547ac3ef3e73b0499bf36bb50f74
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.13":
version: 2.0.13
resolution: "@cspell/dict-data-science@npm:2.0.13"
checksum: 10/d5aee1a87dace4a401ebe7d9327773a8b21f1e0ae5ce4307f302d60857539f964de334a98c772d6dd88c60e3f3056b9bdd3774fe1bcacb2dbaca9160aef52725
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.6":
version: 4.1.6
resolution: "@cspell/dict-django@npm:4.1.6"
checksum: 10/0898787758a64de3a9b9a74febc1e789de30e01403c3c87fe4d99ce992419113297a4a6ddf982c3504f51c4382dd60467288da63cc87e27506f3daba8c03b15a
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.17":
version: 1.1.17
resolution: "@cspell/dict-docker@npm:1.1.17"
checksum: 10/438cc04e0ebcab53b49cecee7ae02c743733b8ec7df4b75075c31574f764aa60353a3cb0db3fb8c80271339d4fc0c1d05864bb6b1ac14891cacfd4098f0b0dce
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.13":
version: 5.0.13
resolution: "@cspell/dict-dotnet@npm:5.0.13"
checksum: 10/42cb2a74a55d19b875f7cdb43fd8eb6159b78cd98242e6ac09ae61ff48c0aaf7b634d36e218e9b819b8d30ae1ca2cfae9dca3cf8819dcb388b8ee0f30964cebd
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-elixir@npm:4.0.8"
checksum: 10/fad21bd31eb5826b18fbf11a4ff7d9e600cb662c1c2f70306212d8a95bf76f50af1cd74ba880fbb0c813537bfe29477b8a52bc67a6c136557fd909713f0ca664
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.1.12":
version: 2.1.12
resolution: "@cspell/dict-en-common-misspellings@npm:2.1.12"
checksum: 10/2f3d608c241694c673cfd0191274554270c82ca18953d84a3224fe7122fe5cb68261ab06f13ff90466266da4835ce1a2f266790f67a19b8f2f1928b3a1d22354
languageName: node
linkType: hard
"@cspell/dict-en-gb-mit@npm:^3.1.22":
version: 3.1.22
resolution: "@cspell/dict-en-gb-mit@npm:3.1.22"
checksum: 10/04790889e8d9dff5cd9ac3e25336e2b600438cc03da7bc487c0bc8caee0bfb558bd8007846d9bdecf9a9d45c655e9c21fed3449b673d86aa22f485cd288279ca
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.4.33":
version: 4.4.33
resolution: "@cspell/dict-en_us@npm:4.4.33"
checksum: 10/d57b4821fcc40ee5cea86681288e7ebb3467ff10359470b037c36eba39b3101423118b335296d366543e8b1206feb158d87da56e6c14ccb2702c55e625507f24
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.18":
version: 3.0.18
resolution: "@cspell/dict-filetypes@npm:3.0.18"
checksum: 10/dd9a531889ed3bf48690e16d4801798d83e8bf6eaa93eb2cca6216b5e41f854201176d62c3b51973f7e97767777d95460aa3328e47a023ed082d3d128ee54283
languageName: node
linkType: hard
"@cspell/dict-flutter@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-flutter@npm:1.1.1"
checksum: 10/1ba1539d740093da234606ae3110498669ef230fbbfdc3c97ca5560008619ce8a757442846b594900a5d85d0a4e68263bf7f2d4949cab930361fa1056a237d3f
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-fonts@npm:4.0.6"
checksum: 10/29ad0cf68cd3e6cef29e4c257de6ad5034ea4cdfdaf5aafd8ff6fc7918da205252d9de68c3a82b36169d21aa4abd17a4f1f4e352821f4f90f527d252d8830e8a
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-fsharp@npm:1.1.1"
checksum: 10/f83b49083cfa6101ebb5bef67f3128c5c14f7d5005d6981e41c4a317bebaa5672431fcb0699b3f345c69057921b2b59bc34721ce5a63b481b4f6300ca7f77868
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.2.9":
version: 3.2.9
resolution: "@cspell/dict-fullstack@npm:3.2.9"
checksum: 10/f9f0cf5937a455e8aaa88b8365ee3ec4394971638353168967087d5acc109a0c6d7ae85e28a131252f1beb293a8ad6e4eda6dd8723de44b4ab3dcaecbe983162
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.1.2":
version: 1.1.2
resolution: "@cspell/dict-gaming-terms@npm:1.1.2"
checksum: 10/023a2f819dfdeddf879e7fb4b68a1db9728da1aa1a87e14f2b08f624c28d0915d2722d2a46f7ad8cbc32c7be0e42966ad6192f6c75e0f2053a9a15fc95fa34af
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.1.0":
version: 3.1.0
resolution: "@cspell/dict-git@npm:3.1.0"
checksum: 10/d64ac12882bfff6f02755bf4eaf47d9e340edcf36867a83d5df106dba6e13ab7ccc519c48f12f8312324a4ac674ff468a8499b4ebd9cf264af97f545597614eb
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.26":
version: 6.0.26
resolution: "@cspell/dict-golang@npm:6.0.26"
checksum: 10/b229f7e5b78b2839eed501e37719546cee787426f323a4a62feaec1db15422482b8b4d97a126c0c6342c2bf1c6f6dc12ac4e05aa245de4b768c5753d2affe9d4
languageName: node
linkType: hard
"@cspell/dict-google@npm:^1.0.9":
version: 1.0.9
resolution: "@cspell/dict-google@npm:1.0.9"
checksum: 10/b3dbd00ae9256c5c11cf55ad8dd9cebb9c8bfad5912c2c31e28aa35237eb8797c4b08356d7f94ee6e7b1cf2491c2bd2dcde790ec911fb02159f639947d411742
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-haskell@npm:4.0.6"
checksum: 10/510ce26a6d34dfa829278a59bedea4c4712b3a0c9430f19b7101597f0a9f26302dd6266a6ab938bfc2d67d08a04148beda68bfcd0589d1c990075a21d52816de
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.5"
checksum: 10/050f57152c873bf9725dfec3e7c6b6ce6a0c178ee084fcad48be186bcc965caabf10462d47fc3c9adcae8d5d8d91dc3cf739ab913d2ed7f5f50abec215e9851b
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.15":
version: 4.0.15
resolution: "@cspell/dict-html@npm:4.0.15"
checksum: 10/e5bcee3ac7757ba0e937c8ea76cb0111ac32105e6ce42babdd305fb226f22125228f0df2eebad0692436bb40fe2f74d17a04bc3e9ef6c89370a65bdb6c17232a
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.12":
version: 5.0.12
resolution: "@cspell/dict-java@npm:5.0.12"
checksum: 10/aab329be836228a9f9fb3b5259325fbbaccc86de9bdc7e6acb4b164bba25f1b2d4cb8abc3fb274d21391e0274ca5642bd65df5b576ab40b2663a6471f20f11bb
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-julia@npm:1.1.1"
checksum: 10/ffd13dad37e306a50166a27ee8d0c7d947ccb58c98f8287ede8e3955b6fa0ebb2244484dc8dd81206b86d2240762316036ce462553c734cfbca78891bda92566
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.12":
version: 1.0.12
resolution: "@cspell/dict-k8s@npm:1.0.12"
checksum: 10/84b2eb558789f764fcad994cc71d85c9b77b1ab639db2221cdae9912b2bc649e29487112e71ea12a72d94869e87125c0ee61a3e5e7b8d45eb02489b77803a405
languageName: node
linkType: hard
"@cspell/dict-kotlin@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-kotlin@npm:1.1.1"
checksum: 10/8822138c76a1f6bb54ec33e470fbd403086a20532101bd9adf4e59464772266da0e379758a490d9ab87a9e0b89ca13e968f48f71334dd0b6881b4ab05bf6cc9d
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^5.1.0":
version: 5.1.0
resolution: "@cspell/dict-latex@npm:5.1.0"
checksum: 10/e3f41fac2cd974db4ff76f78b86e06cec5a60008288a92ad92eff79bc00fbe51dd76c4e109d88fee03bdda2fbbe388cfeeb9e4632a0578b278f801a36e51357b
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.5"
checksum: 10/7f4be03a7d2bfe9128f4f7d1f04b5cf5d525db2ffa86f1c3ca9ae7b2ccd774cd56dee9ede23d0291c502e365d7de925f5bf210ab4b5b745b0459fce13fd38820
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-lua@npm:4.0.8"
checksum: 10/3e0255147637c2df83e5eea7da70e5ccddd0be873123c79da1f12b9f590b1e516a27448be3cba31529ffdea769a5de866caa5d55f9d9a49026f0ceacebd9b3ba
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-makefile@npm:1.0.5"
checksum: 10/bde75e635750234aa4e47e6904c5c5ffd9ede4c503daa015b085830414edf40860cfdbd04b1aa81b7b433f11abaab7d244093ba667e1124e7595777cc5dccf96
languageName: node
linkType: hard
"@cspell/dict-markdown@npm:^2.0.16":
version: 2.0.16
resolution: "@cspell/dict-markdown@npm:2.0.16"
peerDependencies:
"@cspell/dict-css": ^4.1.1
"@cspell/dict-html": ^4.0.15
"@cspell/dict-html-symbol-entities": ^4.0.5
"@cspell/dict-typescript": ^3.2.3
checksum: 10/951986c4485bb83de9c7547dcba9e2aa8510b89d3146d636c2fac26b9a684230a317d2b6d1812f5fc8e274b77889680e40fb4631392f81da1e3466ee9baa3017
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.0.12":
version: 1.0.12
resolution: "@cspell/dict-monkeyc@npm:1.0.12"
checksum: 10/9c952968b50a44d5860f9d9ebce49a71d433f1411d7a074711db176eedaaaf810c0c01bb5e32bc66bb08953b8d4a2c8a19bef394407603d18023d1242a882470
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-node@npm:5.0.9"
checksum: 10/b934c9c94e230742a612f3133cc81a62af4073e2f8c50855d37e90bad7860200600b8492988d70f3ba13a055e357554a4abf71f0a437650ae24e5b300d6615ee
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.2.38":
version: 5.2.38
resolution: "@cspell/dict-npm@npm:5.2.38"
checksum: 10/ae82de05a93dbdc57701cb4ee626a06fd3b0d1964bd0ae4a14dde7f054913406612fcc08f083dbc0f81ef423649086eddf2e35e6e79b1813ba8f5600994ec8dc
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-php@npm:4.1.1"
checksum: 10/e81bed158736ea6f2db8d9e116c16cc3f46b455bb3ed673a100166cfee340be38d0cd9bc3f39c5590364c0bb2bd472755f5e4c65a20787d2d7df749ff43f49d1
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.15":
version: 5.0.15
resolution: "@cspell/dict-powershell@npm:5.0.15"
checksum: 10/3e46e0e98d92e42d34eb297d6e1626bea15e4ad6774b3f855f07e02aa1f458e9e77ae33602a0ed604f8009a2b842d4fffe5a2ee6b9884c2b63b45799003120b9
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.16":
version: 2.0.16
resolution: "@cspell/dict-public-licenses@npm:2.0.16"
checksum: 10/1f227d3d083bdec495d19050347897cf2fe58d3c77143d233a41b300e00981790b46361a651eb592ff60dc8bc772db3f16c0c89cc295ea2b446237031f48efb1
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.2.26":
version: 4.2.26
resolution: "@cspell/dict-python@npm:4.2.26"
dependencies:
"@cspell/dict-data-science": "npm:^2.0.13"
checksum: 10/27542a051c606ef3ad37c35874fd7e6ef6334b4e903f4db320911f3bf497e1f58753f8ad6201ad5fc01f442b0a08f0c764e72dc2b96389e7eb85056d87467401
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.1.1":
version: 2.1.1
resolution: "@cspell/dict-r@npm:2.1.1"
checksum: 10/70ac0a26fdd753633e2e1817f3ac0c475a5a0d92641ce2032fd5745d8fe32ca9f1d87b6d1318302b87e8a699229f2593db75f9618d0bdfb7809f0b331516efbf
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.1.1":
version: 5.1.1
resolution: "@cspell/dict-ruby@npm:5.1.1"
checksum: 10/8f09db1fdcf0e990ab56ac61b40cc2a7a3c2fbd01f8b4dc2de7018c31a1fad98228a67225f49801fbc2353624df8492b9775d8d04e37bfea2182cb390a686c83
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.1.2":
version: 4.1.2
resolution: "@cspell/dict-rust@npm:4.1.2"
checksum: 10/f618727d8c3af5f3d5e74eca04e9b0685f525d217206c40faf9803aa4fd7b9defc9b5174bff17411ef2d935df7ebe66cb2e38f34b6887a118908e10a5c834376
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-scala@npm:5.0.9"
checksum: 10/9b095e052e4c72fe0d0657f11f654cac6e8bbf6f6ac2043e8f1de8641aa7cad46b94416d70aa9dbd8556b1c1cfd0ac522868867e911a707e7b0e2cbcfcbfb5e2
languageName: node
linkType: hard
"@cspell/dict-shell@npm:1.1.2, @cspell/dict-shell@npm:^1.1.2":
version: 1.1.2
resolution: "@cspell/dict-shell@npm:1.1.2"
checksum: 10/f659da0eb8e26c65214f532b123e2bab55fe2af6d436a9b06a7c003761c269f04f6970871efd4615c176b6d80cc0c5754ef6513f386b151138e0ed677d331b1e
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^5.2.2":
version: 5.2.2
resolution: "@cspell/dict-software-terms@npm:5.2.2"
checksum: 10/b931d22ff3088f7f3bac7ad36492925f1ddc4d1c9eb9e237aa5d2ce0e5792054d6f7218cddee43bc56a6507424706f586745635f0d8db798e1c3440dd0ff2991
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.2.1":
version: 2.2.1
resolution: "@cspell/dict-sql@npm:2.2.1"
checksum: 10/c898c8f23e613ad1708dd92a8fbe5dac10e048ae8584a42c570697046c8841aa0518e10435fff34b9bdc84bb0cfd6a5307c990ed16f36253a0f2c31f739d3dce
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.7":
version: 1.0.7
resolution: "@cspell/dict-svelte@npm:1.0.7"
checksum: 10/ca739512b762731f7840243e0833bd135328cbef529d07803bc7b49a2452b1592ed318b80e55bb38caf807d51dd949029c7586a80529c6b942ce6a33842ca586
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.6":
version: 2.0.6
resolution: "@cspell/dict-swift@npm:2.0.6"
checksum: 10/89ba40dcc7b54cc1af07560b69a9418a8c8c275da9cf64e0cf94e1052930bf360706575db59eb3237c8210073fa0ff87511012958d355f67ff3735138782f26d
languageName: node
linkType: hard
"@cspell/dict-terraform@npm:^1.1.3":
version: 1.1.3
resolution: "@cspell/dict-terraform@npm:1.1.3"
checksum: 10/d815557fde66895e14c6e9408dbcb17f46e4d56fd6c75f74fac48d5b4425f05fd9a60b8e874e2192e908e20f01ead382352842f4326355f7adf096dc23f8eaf7
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.2.3":
version: 3.2.3
resolution: "@cspell/dict-typescript@npm:3.2.3"
checksum: 10/3e0f76f8ca964e36de5b022bd53fe4005993dde260fc58ea5346801cacc12483106828cfe158f94509bed0b1bf52d7f4cb2509e69e4eda2a4f032e21ec75201b
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.5":
version: 3.0.5
resolution: "@cspell/dict-vue@npm:3.0.5"
checksum: 10/3288b44c0362d5a67a090ebe667fba577c32c422090ba8935cf7c994e0444495eafeb1be8cc64cc4f2e23788794f70a85b243ba924c6d73ca5a734a21f978cbc
languageName: node
linkType: hard
"@cspell/dict-zig@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-zig@npm:1.0.0"
checksum: 10/85a40bf4398ba6d6f27dbfc57a9c5e176f18e60c22b97b09b90a813165b98c6d2ac0d096e1e7670af8dee7a30cdd93804ef7ab8b7d05d4ce30a0d3def13b1c1c
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/dynamic-import@npm:10.0.1"
dependencies:
"@cspell/url": "npm:10.0.1"
import-meta-resolve: "npm:^4.2.0"
checksum: 10/871eaee6ac153fbebe443b0fae9852c53cea73e9d6b33a8683cbaa435bbd4eb3a64546d80f453c68686a2d61ef836178df0efab4de5685c4a3bd88a30e6cd966
languageName: node
linkType: hard
"@cspell/filetypes@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/filetypes@npm:10.0.1"
checksum: 10/303cca6cbe4e1cdf5e10082295280041268ea2ead19870d7192201084713e39e0368fcaf4cb054e7996354d1f287368ca797c1b35080362fa93f3a4dda5b3a97
languageName: node
linkType: hard
"@cspell/rpc@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/rpc@npm:10.0.1"
checksum: 10/e4ade36afec09c3c1b8f1f67940b91aa695b3ed77f3d5624f0344abd1f3dde9562d10e8c0de70f444f700c37e7dfe943d0c602d55ee8283a673a62bde7a113ee
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/strong-weak-map@npm:10.0.1"
checksum: 10/d05cd56d159500cfd66696837379f412f875a0efb39a9bef9a076ed20eb343c8fa5adc05bc46eed3cd798ca607b33443738e807042578c375ff2ea8e17fa1f18
languageName: node
linkType: hard
"@cspell/url@npm:10.0.1":
version: 10.0.1
resolution: "@cspell/url@npm:10.0.1"
checksum: 10/665a3914b8752a971c5de35e825bae427fc8628d332106af2ed92c4a26316443ac6c89edda3346fc7728103d09f28fc990c1e0d84011a0af6ce91615e9a58492
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^1.1.0":
version: 1.1.0
resolution: "@discoveryjs/json-ext@npm:1.1.0"
checksum: 10/c941e41fcfa0d40bfd0b12e5cd5995b609328adb5fa881b1e8bebcae57784d505ccb92ae5d470055336802197a664d3856decccfd09a59c8feef2bf214591ff5
languageName: node
linkType: hard
"@emnapi/core@npm:1.10.0":
version: 1.10.0
resolution: "@emnapi/core@npm:1.10.0"
dependencies:
"@emnapi/wasi-threads": "npm:1.2.1"
tslib: "npm:^2.4.0"
checksum: 10/d32f386084e64deaf2609aabb8295d1ad5af6144d0f46d2060b76cc53f1f3b486df54bec9b0f33c37d85a3822e1193ebcd4e3deb4a5f0e4cd650aa2ffc631715
languageName: node
linkType: hard
"@emnapi/runtime@npm:1.10.0":
version: 1.10.0
resolution: "@emnapi/runtime@npm:1.10.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/d21083d07fa0c2da171c142e78ef986b66b07d45b06accc0bcaf49fcc61bb4dbc10e1c1760813070165b9f49b054376a931045347f21c0f42ff1eb2d2040faac
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.2.1":
version: 1.2.1
resolution: "@emnapi/wasi-threads@npm:1.2.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/57cd4292be81c05d26aa886d68a9e4c449ff666e8503fed6463dfc6b64a4e4213f03c152d53296b7cda32840271e38cd33347332070658f01befeb9bf4e59f36
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/aix-ppc64@npm:0.27.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/aix-ppc64@npm:0.28.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm64@npm:0.27.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-arm64@npm:0.28.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm@npm:0.27.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-arm@npm:0.28.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-x64@npm:0.27.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/android-x64@npm:0.28.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-arm64@npm:0.27.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/darwin-arm64@npm:0.28.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-x64@npm:0.27.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/darwin-x64@npm:0.28.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-arm64@npm:0.27.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/freebsd-arm64@npm:0.28.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-x64@npm:0.27.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/freebsd-x64@npm:0.28.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm64@npm:0.27.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-arm64@npm:0.28.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm@npm:0.27.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-arm@npm:0.28.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ia32@npm:0.27.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-ia32@npm:0.28.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-loong64@npm:0.27.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-loong64@npm:0.28.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-mips64el@npm:0.27.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-mips64el@npm:0.28.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ppc64@npm:0.27.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-ppc64@npm:0.28.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-riscv64@npm:0.27.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-riscv64@npm:0.28.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-s390x@npm:0.27.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-s390x@npm:0.28.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-x64@npm:0.27.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/linux-x64@npm:0.28.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-arm64@npm:0.27.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/netbsd-arm64@npm:0.28.0"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-x64@npm:0.27.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.28.0":
version: 0.28.0
resolution: "@esbuild/netbsd-x64@npm:0.28.0"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/openbsd-arm64@npm:0.27.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard