-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathyarn.lock
More file actions
14972 lines (13494 loc) · 540 KB
/
yarn.lock
File metadata and controls
14972 lines (13494 loc) · 540 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
"@angular-eslint/eslint-plugin-template@npm:@favware/skip-dependency@latest, @angular-eslint/eslint-plugin@npm:@favware/skip-dependency@latest, @angular-eslint/template-parser@npm:@favware/skip-dependency@latest, @next/eslint-plugin-next@npm:@favware/skip-dependency@latest, astro-eslint-parser@npm:@favware/skip-dependency@latest, eslint-plugin-astro@npm:@favware/skip-dependency@latest, eslint-plugin-cypress@npm:@favware/skip-dependency@latest, eslint-plugin-mdx@npm:@favware/skip-dependency@latest, eslint-plugin-rxjs-angular@npm:@favware/skip-dependency@latest, eslint-plugin-rxjs@npm:@favware/skip-dependency@latest, eslint-plugin-svelte3@npm:@favware/skip-dependency@latest, eslint-plugin-vue@npm:@favware/skip-dependency@latest":
version: 1.2.2
resolution: "@favware/skip-dependency@npm:1.2.2"
checksum: 10/1318b83ab874729ffc4b0b74756b2f691d43081172fb895605edda6ff474a748e1dcd59213275860854cca4bead9f2bef118d1dac832647abd5dfdb9f54b7d46
languageName: node
linkType: hard
"@astrojs/check@npm:0.9.5":
version: 0.9.5
resolution: "@astrojs/check@npm:0.9.5"
dependencies:
"@astrojs/language-server": "npm:^2.15.0"
chokidar: "npm:^4.0.1"
kleur: "npm:^4.1.5"
yargs: "npm:^17.7.2"
peerDependencies:
typescript: ^5.0.0
bin:
astro-check: dist/bin.js
checksum: 10/15aae67179963f634c27db11dd3e78fb0e8513f98c59cd3d4193293c0704e26b194880fe30ccee798c1879438f441ff453ce98e6fb41f361ff2f9219389ec6a2
languageName: node
linkType: hard
"@astrojs/compiler@npm:^2.10.3, @astrojs/compiler@npm:^2.13.0, @astrojs/compiler@npm:^2.9.1":
version: 2.13.0
resolution: "@astrojs/compiler@npm:2.13.0"
checksum: 10/4efb31cd363d928650d361d5beb363f9e601795ed227deca071effcbd6cde239f12a0dc597d5c22a60e9bbd8d43b122ef639b96066bbc009101fe7b15a58c0f0
languageName: node
linkType: hard
"@astrojs/internal-helpers@npm:0.6.1":
version: 0.6.1
resolution: "@astrojs/internal-helpers@npm:0.6.1"
checksum: 10/e18a0e52e9d35659fb6b4e641a52cbffba26405a322b1232ea73af74e69d12cf59722ec53c6fcdcd454f543628c3ff229ea166d49d5e7c88d3947182d86090e0
languageName: node
linkType: hard
"@astrojs/internal-helpers@npm:0.7.5":
version: 0.7.5
resolution: "@astrojs/internal-helpers@npm:0.7.5"
checksum: 10/cf1fb33d3b356684540a03e26bbecd59098f71237094e2c89b61fa96fe9de9ea8d16692ba8bf060f3e4a78c0eb0d906018b921c68c7287540990b7881f8522f0
languageName: node
linkType: hard
"@astrojs/language-server@npm:^2.15.0":
version: 2.15.0
resolution: "@astrojs/language-server@npm:2.15.0"
dependencies:
"@astrojs/compiler": "npm:^2.10.3"
"@astrojs/yaml2ts": "npm:^0.2.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.15"
"@volar/kit": "npm:~2.4.5"
"@volar/language-core": "npm:~2.4.5"
"@volar/language-server": "npm:~2.4.5"
"@volar/language-service": "npm:~2.4.5"
fast-glob: "npm:^3.2.12"
muggle-string: "npm:^0.4.1"
volar-service-css: "npm:0.0.61"
volar-service-emmet: "npm:0.0.61"
volar-service-html: "npm:0.0.61"
volar-service-prettier: "npm:0.0.61"
volar-service-typescript: "npm:0.0.61"
volar-service-typescript-twoslash-queries: "npm:0.0.61"
volar-service-yaml: "npm:0.0.61"
vscode-html-languageservice: "npm:^5.2.0"
vscode-uri: "npm:^3.0.8"
peerDependencies:
prettier: ^3.0.0
prettier-plugin-astro: ">=0.11.0"
peerDependenciesMeta:
prettier:
optional: true
prettier-plugin-astro:
optional: true
bin:
astro-ls: bin/nodeServer.js
checksum: 10/89d135a27d96eed90bab7d6c5a3a0841df33569017b5a9ff6091a605e503d941f0419f0ff1653143e0f9457f5188c34346c2d01ec3f199d359fdd2546ba47c94
languageName: node
linkType: hard
"@astrojs/lit@npm:^4.3.0":
version: 4.3.0
resolution: "@astrojs/lit@npm:4.3.0"
dependencies:
"@lit-labs/ssr": "npm:^3.2.2"
"@lit-labs/ssr-client": "npm:^1.1.7"
"@lit-labs/ssr-dom-shim": "npm:^1.2.0"
parse5: "npm:^7.1.2"
peerDependencies:
"@webcomponents/template-shadowroot": ^0.2.1
lit: ^3.1.0
checksum: 10/153070002400a0509e3ac3d4d43aecb99b8ce99c162175152c2bd9938e22e64edd69b67fcd94bf1341e96449e2a604adf16935e817a49e45edcde0cac41193f6
languageName: node
linkType: hard
"@astrojs/markdown-remark@npm:6.3.1":
version: 6.3.1
resolution: "@astrojs/markdown-remark@npm:6.3.1"
dependencies:
"@astrojs/internal-helpers": "npm:0.6.1"
"@astrojs/prism": "npm:3.2.0"
github-slugger: "npm:^2.0.0"
hast-util-from-html: "npm:^2.0.3"
hast-util-to-text: "npm:^4.0.2"
import-meta-resolve: "npm:^4.1.0"
js-yaml: "npm:^4.1.0"
mdast-util-definitions: "npm:^6.0.0"
rehype-raw: "npm:^7.0.0"
rehype-stringify: "npm:^10.0.1"
remark-gfm: "npm:^4.0.1"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.1.1"
remark-smartypants: "npm:^3.0.2"
shiki: "npm:^3.0.0"
smol-toml: "npm:^1.3.1"
unified: "npm:^11.0.5"
unist-util-remove-position: "npm:^5.0.0"
unist-util-visit: "npm:^5.0.0"
unist-util-visit-parents: "npm:^6.0.1"
vfile: "npm:^6.0.3"
checksum: 10/4fea1cd9f23fa97081c41a2fcb69a07ed1abf4b5ed2ddc1992d70edc69ade5e1b91203b4081534688a99353cb85ca86543ee34f10cdf001079ccb6de9dc9512a
languageName: node
linkType: hard
"@astrojs/markdown-remark@npm:6.3.9, @astrojs/markdown-remark@npm:^6.3.1":
version: 6.3.9
resolution: "@astrojs/markdown-remark@npm:6.3.9"
dependencies:
"@astrojs/internal-helpers": "npm:0.7.5"
"@astrojs/prism": "npm:3.3.0"
github-slugger: "npm:^2.0.0"
hast-util-from-html: "npm:^2.0.3"
hast-util-to-text: "npm:^4.0.2"
import-meta-resolve: "npm:^4.2.0"
js-yaml: "npm:^4.1.0"
mdast-util-definitions: "npm:^6.0.0"
rehype-raw: "npm:^7.0.0"
rehype-stringify: "npm:^10.0.1"
remark-gfm: "npm:^4.0.1"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.1.2"
remark-smartypants: "npm:^3.0.2"
shiki: "npm:^3.13.0"
smol-toml: "npm:^1.4.2"
unified: "npm:^11.0.5"
unist-util-remove-position: "npm:^5.0.0"
unist-util-visit: "npm:^5.0.0"
unist-util-visit-parents: "npm:^6.0.2"
vfile: "npm:^6.0.3"
checksum: 10/047d8aca20e86a16bd4afe99e324b9124159f3677f19f0eb8bbc8472950f5ee98a590750d625396cb1151d56a3aec8d256512e1518882987753453abc51d6008
languageName: node
linkType: hard
"@astrojs/mdx@npm:^4.2.3":
version: 4.2.6
resolution: "@astrojs/mdx@npm:4.2.6"
dependencies:
"@astrojs/markdown-remark": "npm:6.3.1"
"@mdx-js/mdx": "npm:^3.1.0"
acorn: "npm:^8.14.1"
es-module-lexer: "npm:^1.6.0"
estree-util-visit: "npm:^2.0.0"
hast-util-to-html: "npm:^9.0.5"
kleur: "npm:^4.1.5"
rehype-raw: "npm:^7.0.0"
remark-gfm: "npm:^4.0.1"
remark-smartypants: "npm:^3.0.2"
source-map: "npm:^0.7.4"
unist-util-visit: "npm:^5.0.0"
vfile: "npm:^6.0.3"
peerDependencies:
astro: ^5.0.0
checksum: 10/6604fd796dde4017763d88ca613a727cab09c1ac25b53dc3128de8e63db1b6619b7c2526c8e022a737990510693ef915e29e141c2e369342c21f060ab341335a
languageName: node
linkType: hard
"@astrojs/prism@npm:3.2.0":
version: 3.2.0
resolution: "@astrojs/prism@npm:3.2.0"
dependencies:
prismjs: "npm:^1.29.0"
checksum: 10/0a4ee8514c24bde65fc4d1eaab718014176a07834ced4911598405092d52d2af779e34ee0e3f45bb823d9e1e66e2639b67ec59275ab5ce78fc19d4f58338d3b7
languageName: node
linkType: hard
"@astrojs/prism@npm:3.3.0":
version: 3.3.0
resolution: "@astrojs/prism@npm:3.3.0"
dependencies:
prismjs: "npm:^1.30.0"
checksum: 10/419ff6ced32527444b4840c49f31f9f4d5d43cdea63839f0d8f4f1f1b9b74a62f072d91740bbdaaf920e11d1b8e230244ab9a72562bfb80ee5f2064ea7db79d4
languageName: node
linkType: hard
"@astrojs/sitemap@npm:^3.3.0":
version: 3.3.1
resolution: "@astrojs/sitemap@npm:3.3.1"
dependencies:
sitemap: "npm:^8.0.0"
stream-replace-string: "npm:^2.0.0"
zod: "npm:^3.24.2"
checksum: 10/92f621e34a0a559d2f20820f5f997cfcc576eed62be9d7081e83be0e4be129cff925f159b24d5b69c93a38dbcf6e378ea8ee424aaabc1b0556b666edb37430d3
languageName: node
linkType: hard
"@astrojs/starlight@npm:0.36.2":
version: 0.36.2
resolution: "@astrojs/starlight@npm:0.36.2"
dependencies:
"@astrojs/markdown-remark": "npm:^6.3.1"
"@astrojs/mdx": "npm:^4.2.3"
"@astrojs/sitemap": "npm:^3.3.0"
"@pagefind/default-ui": "npm:^1.3.0"
"@types/hast": "npm:^3.0.4"
"@types/js-yaml": "npm:^4.0.9"
"@types/mdast": "npm:^4.0.4"
astro-expressive-code: "npm:^0.41.1"
bcp-47: "npm:^2.1.0"
hast-util-from-html: "npm:^2.0.1"
hast-util-select: "npm:^6.0.2"
hast-util-to-string: "npm:^3.0.0"
hastscript: "npm:^9.0.0"
i18next: "npm:^23.11.5"
js-yaml: "npm:^4.1.0"
klona: "npm:^2.0.6"
mdast-util-directive: "npm:^3.0.0"
mdast-util-to-markdown: "npm:^2.1.0"
mdast-util-to-string: "npm:^4.0.0"
pagefind: "npm:^1.3.0"
rehype: "npm:^13.0.1"
rehype-format: "npm:^5.0.0"
remark-directive: "npm:^3.0.0"
ultrahtml: "npm:^1.6.0"
unified: "npm:^11.0.5"
unist-util-visit: "npm:^5.0.0"
vfile: "npm:^6.0.2"
peerDependencies:
astro: ^5.5.0
checksum: 10/692600af31f7a172478966637fc55e1babb39cb9dfe5641eb28acecc09e9af0cac011950da737c7b611a5349b43b220e4f1903bbd1b6fd40aeacf6395ade33c4
languageName: node
linkType: hard
"@astrojs/telemetry@npm:3.3.0":
version: 3.3.0
resolution: "@astrojs/telemetry@npm:3.3.0"
dependencies:
ci-info: "npm:^4.2.0"
debug: "npm:^4.4.0"
dlv: "npm:^1.1.3"
dset: "npm:^3.1.4"
is-docker: "npm:^3.0.0"
is-wsl: "npm:^3.1.0"
which-pm-runs: "npm:^1.1.0"
checksum: 10/de48659f1193525f0d0b5a5656a06bfecef6e18533239fddf0485da97cb705cb2dc94ade2ca6fff8f82a6b19c8c9192b841681eca4f54cceb73c51c7d63b0730
languageName: node
linkType: hard
"@astrojs/yaml2ts@npm:^0.2.1":
version: 0.2.1
resolution: "@astrojs/yaml2ts@npm:0.2.1"
dependencies:
yaml: "npm:^2.5.0"
checksum: 10/a4c5e46da52115a7674f7766abc154fd57ef289d31e855089ac54382ab0b976680aa0ab1764710353b4ab379ae676895b0beab45d20117cc239961ba00130a7b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.11, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.27.1"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10/721b8a6e360a1fa0f1c9fe7351ae6c874828e119183688b533c477aa378f1010f37cc9afbfc4722c686d1f5cdd00da02eab4ba7278a0c504fa0d7a321dcd4fdf
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.27.2":
version: 7.28.4
resolution: "@babel/compat-data@npm:7.28.4"
checksum: 10/95b7864e6b210c84c069743966da448c0cb50015a4de5e18dd755776a0b5e53c4653e74f26700aed8de922eaa3b8844fc5fc5b29bc64830249d2abe914aec832
languageName: node
linkType: hard
"@babel/core@npm:^7.24.4":
version: 7.28.4
resolution: "@babel/core@npm:7.28.4"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.28.3"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-module-transforms": "npm:^7.28.3"
"@babel/helpers": "npm:^7.28.4"
"@babel/parser": "npm:^7.28.4"
"@babel/template": "npm:^7.27.2"
"@babel/traverse": "npm:^7.28.4"
"@babel/types": "npm:^7.28.4"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/0593295241fac9be567145ef16f3858d34fc91390a9438c6d47476be9823af4cc0488c851c59702dd46b968e9fd46d17ddf0105ea30195ca85f5a66b4044c519
languageName: node
linkType: hard
"@babel/generator@npm:^7.28.3":
version: 7.28.3
resolution: "@babel/generator@npm:7.28.3"
dependencies:
"@babel/parser": "npm:^7.28.3"
"@babel/types": "npm:^7.28.2"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10/d00d1e6b51059e47594aab7920b88ec6fcef6489954a9172235ab57ad2e91b39c95376963a6e2e4cc7e8b88fa4f931018f71f9ab32bbc9c0bc0de35a0231f26c
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/helper-compilation-targets@npm:7.27.2"
dependencies:
"@babel/compat-data": "npm:^7.27.2"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/bd53c30a7477049db04b655d11f4c3500aea3bcbc2497cf02161de2ecf994fec7c098aabbcebe210ffabc2ecbdb1e3ffad23fb4d3f18723b814f423ea1749fe8
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/helper-globals@npm:7.28.0"
checksum: 10/91445f7edfde9b65dcac47f4f858f68dc1661bf73332060ab67ad7cc7b313421099a2bfc4bda30c3db3842cfa1e86fffbb0d7b2c5205a177d91b22c8d7d9cb47
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-module-imports@npm:7.27.1"
dependencies:
"@babel/traverse": "npm:^7.27.1"
"@babel/types": "npm:^7.27.1"
checksum: 10/58e792ea5d4ae71676e0d03d9fef33e886a09602addc3bd01388a98d87df9fcfd192968feb40ac4aedb7e287ec3d0c17b33e3ecefe002592041a91d8a1998a8d
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.28.3":
version: 7.28.3
resolution: "@babel/helper-module-transforms@npm:7.28.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
"@babel/traverse": "npm:^7.28.3"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/598fdd8aa5b91f08542d0ba62a737847d0e752c8b95ae2566bc9d11d371856d6867d93e50db870fb836a6c44cfe481c189d8a2b35ca025a224f070624be9fa87
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10/0ae29cc2005084abdae2966afdb86ed14d41c9c37db02c3693d5022fba9f5d59b011d039380b8e537c34daf117c549f52b452398f576e908fb9db3c7abbb3a00
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.27.1, @babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10/8e5d9b0133702cfacc7f368bf792f0f8ac0483794877c6dca5fcb73810ee138e27527701826fb58a40a004f3a5ec0a2f3c3dd5e326d262530b119918f3132ba7
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-option@npm:7.27.1"
checksum: 10/db73e6a308092531c629ee5de7f0d04390835b21a263be2644276cb27da2384b64676cab9f22cd8d8dbd854c92b1d7d56fc8517cf0070c35d1c14a8c828b0903
languageName: node
linkType: hard
"@babel/helpers@npm:^7.28.4":
version: 7.28.4
resolution: "@babel/helpers@npm:7.28.4"
dependencies:
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.28.4"
checksum: 10/5a70a82e196cf8808f8a449cc4780c34d02edda2bb136d39ce9d26e63b615f18e89a95472230c3ce7695db0d33e7026efeee56f6454ed43480f223007ed205eb
languageName: node
linkType: hard
"@babel/parser@npm:^7.24.4, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.3, @babel/parser@npm:^7.28.4, @babel/parser@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/parser@npm:7.28.5"
dependencies:
"@babel/types": "npm:^7.28.5"
bin:
parser: ./bin/babel-parser.js
checksum: 10/8d9bfb437af6c97a7f6351840b9ac06b4529ba79d6d3def24d6c2996ab38ff7f1f9d301e868ca84a93a3050fadb3d09dbc5105b24634cd281671ac11eebe8df7
languageName: node
linkType: hard
"@babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.23.2":
version: 7.26.10
resolution: "@babel/runtime@npm:7.26.10"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/9d7ff8e96abe3791047c1138789c742411e3ef19c4d7ca18ce916f83cec92c06ec5dc64401759f6dd1e377cf8a01bbd2c62e033eb7550f435cf6579768d0d4a5
languageName: node
linkType: hard
"@babel/template@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/template@npm:7.27.2"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/parser": "npm:^7.27.2"
"@babel/types": "npm:^7.27.1"
checksum: 10/fed15a84beb0b9340e5f81566600dbee5eccd92e4b9cc42a944359b1aa1082373391d9d5fc3656981dff27233ec935d0bc96453cf507f60a4b079463999244d8
languageName: node
linkType: hard
"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.3, @babel/traverse@npm:^7.28.4":
version: 7.28.4
resolution: "@babel/traverse@npm:7.28.4"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.28.3"
"@babel/helper-globals": "npm:^7.28.0"
"@babel/parser": "npm:^7.28.4"
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.28.4"
debug: "npm:^4.3.1"
checksum: 10/c3099364b7b1c36bcd111099195d4abeef16499e5defb1e56766b754e8b768c252e856ed9041665158aa1b31215fc6682632756803c8fa53405381ec08c4752b
languageName: node
linkType: hard
"@babel/types@npm:^7.27.1, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.4, @babel/types@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/types@npm:7.28.5"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.28.5"
checksum: 10/4256bb9fb2298c4f9b320bde56e625b7091ea8d2433d98dcf524d4086150da0b6555aabd7d0725162670614a9ac5bf036d1134ca13dedc9707f988670f1362d7
languageName: node
linkType: hard
"@capsizecss/unpack@npm:^3.0.1":
version: 3.0.1
resolution: "@capsizecss/unpack@npm:3.0.1"
dependencies:
fontkit: "npm:^2.0.2"
checksum: 10/96d2ccfc1607cb574f8aa47e0f3b45cadeeaee2d558dd322e761dff220a130e783a03f67dbc1558ff13c68e1de15d6afcd0def55a665f1273af62f966ee5f04b
languageName: node
linkType: hard
"@commitlint/cli@npm:^20.1.0":
version: 20.1.0
resolution: "@commitlint/cli@npm:20.1.0"
dependencies:
"@commitlint/format": "npm:^20.0.0"
"@commitlint/lint": "npm:^20.0.0"
"@commitlint/load": "npm:^20.1.0"
"@commitlint/read": "npm:^20.0.0"
"@commitlint/types": "npm:^20.0.0"
tinyexec: "npm:^1.0.0"
yargs: "npm:^17.0.0"
bin:
commitlint: ./cli.js
checksum: 10/a74027effa40a299bad443406ca49fffaac744190ba12a160d4ad17d5c24a23df3beddf9fe6674dd70e75f136b65e7ef07320ae21472645b5a0bce8ba4b43a71
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/config-conventional@npm:20.0.0"
dependencies:
"@commitlint/types": "npm:^20.0.0"
conventional-changelog-conventionalcommits: "npm:^7.0.2"
checksum: 10/a98dd9fa3a23364143c95b124e35a81b0c5cb1e35866edd9cced1476dcb25268866a745f655ae22ff3d081013bcc5535402373b9723424a8aacf31dbb353f710
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/config-validator@npm:20.0.0"
dependencies:
"@commitlint/types": "npm:^20.0.0"
ajv: "npm:^8.11.0"
checksum: 10/7db94a9e1f8f4243ffcbb763a26cc3160f77c5b3844ff548f6b941946eadc134bc8f4db201ecb9f971495d06d0a3c26ba086506610e4c143badf499f796c2507
languageName: node
linkType: hard
"@commitlint/ensure@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/ensure@npm:20.0.0"
dependencies:
"@commitlint/types": "npm:^20.0.0"
lodash.camelcase: "npm:^4.3.0"
lodash.kebabcase: "npm:^4.1.1"
lodash.snakecase: "npm:^4.1.1"
lodash.startcase: "npm:^4.4.0"
lodash.upperfirst: "npm:^4.3.1"
checksum: 10/5f6fb214b1f3b454d909d4fc84bdfeb671028924106a3db5949baae92429656b0306f9627f36b3141f5f03230ca79240d2d984a5efebe850e3cb2435bad35e21
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/execute-rule@npm:20.0.0"
checksum: 10/6e05580d9dafd362281747795de22e582ce7af36daeee638dd3f84b792d6b921dad20cb258603fb6ebb08f0b490906b2cfd72255b0d7e6ab2cfb96441a553159
languageName: node
linkType: hard
"@commitlint/format@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/format@npm:20.0.0"
dependencies:
"@commitlint/types": "npm:^20.0.0"
chalk: "npm:^5.3.0"
checksum: 10/4a97be5f7b6f29b956643cb9417cd152dcd39ae00639900fcaf47b54b2da1278587351c6dcb4740e0e333a84862e21065f5e230c5ed12381e0bc1babc40c6038
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/is-ignored@npm:20.0.0"
dependencies:
"@commitlint/types": "npm:^20.0.0"
semver: "npm:^7.6.0"
checksum: 10/cc6feb17eb6b60ababb1ab0f8236dce5618aa36f920187d6c561f22e4d9a1f2a4f8250dbeee12798603f866e4099be43001583df447759eac22e67d217e9f7be
languageName: node
linkType: hard
"@commitlint/lint@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/lint@npm:20.0.0"
dependencies:
"@commitlint/is-ignored": "npm:^20.0.0"
"@commitlint/parse": "npm:^20.0.0"
"@commitlint/rules": "npm:^20.0.0"
"@commitlint/types": "npm:^20.0.0"
checksum: 10/d8e04fdb723e4d8ab2f3df6fdb45fdb9223b8fb524377d8ffa3a9dbbe72ac7274766426466e6961ab22a2953754a6cae58bd65fc72e3d6edff0fe05a5dafcaf0
languageName: node
linkType: hard
"@commitlint/load@npm:^20.1.0":
version: 20.1.0
resolution: "@commitlint/load@npm:20.1.0"
dependencies:
"@commitlint/config-validator": "npm:^20.0.0"
"@commitlint/execute-rule": "npm:^20.0.0"
"@commitlint/resolve-extends": "npm:^20.1.0"
"@commitlint/types": "npm:^20.0.0"
chalk: "npm:^5.3.0"
cosmiconfig: "npm:^9.0.0"
cosmiconfig-typescript-loader: "npm:^6.1.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
checksum: 10/4dc97f31bc93af9e44ae57cd50bb508fc3be1c1c43a1f10c5f6dbdaefbe93318df32c0d5042143ab02231a7bc8fdb227f6cb124363331e82e5974e9fd7a0865a
languageName: node
linkType: hard
"@commitlint/message@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/message@npm:20.0.0"
checksum: 10/db02980b1e0fd4a38079a5642d9c2daf22acb0dcd87c6005aa2d866eebc4e482c8852b4bd2cb2cad93173e264cfbf9490645fbd4973446466c677f6ad52d37bd
languageName: node
linkType: hard
"@commitlint/parse@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/parse@npm:20.0.0"
dependencies:
"@commitlint/types": "npm:^20.0.0"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: 10/67eb7ab5bf498b2583a0f3caf4693c78f8460346cc6655864018b541897dc32e9aad62bffde11ef717b68a0f8e14b1de71f2c1ba8d5552da0282057c3140b917
languageName: node
linkType: hard
"@commitlint/read@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/read@npm:20.0.0"
dependencies:
"@commitlint/top-level": "npm:^20.0.0"
"@commitlint/types": "npm:^20.0.0"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
tinyexec: "npm:^1.0.0"
checksum: 10/f8dec29260e3fc39e49177fb0bfa22c477c6ff0c3dbc944394a7ddbad518a9884aa8917cc1e34756c43201503a28b17197cf8f396bf266fbc58eddcc43ea2cef
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^20.1.0":
version: 20.1.0
resolution: "@commitlint/resolve-extends@npm:20.1.0"
dependencies:
"@commitlint/config-validator": "npm:^20.0.0"
"@commitlint/types": "npm:^20.0.0"
global-directory: "npm:^4.0.1"
import-meta-resolve: "npm:^4.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
checksum: 10/56ef9c4fa9ebbbd95fbe39ed96f3950f0bd13ff3545913f3e708fe52eeda86c735c494f30a32c0b4a7e6814a2e4ac67ec167fe6d4aef2f298c262598877d9c90
languageName: node
linkType: hard
"@commitlint/rules@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/rules@npm:20.0.0"
dependencies:
"@commitlint/ensure": "npm:^20.0.0"
"@commitlint/message": "npm:^20.0.0"
"@commitlint/to-lines": "npm:^20.0.0"
"@commitlint/types": "npm:^20.0.0"
checksum: 10/0c6d0540456cb93a6a4b30e4efa558a93fca1a1b3fda95c0bc84d07ce016d6340f435151cf8697ee2124e3adffd2ceea51aede11e961b442d0d28b90761cadfc
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/to-lines@npm:20.0.0"
checksum: 10/b8910b6a4c36cca32af3b7e3e7e72fdf92c997e9e3b415f75c31ee8b52d627b351c71393b5f9b7f5acdbb8b1f0491d80cea83624a9e361c01bceed786592c474
languageName: node
linkType: hard
"@commitlint/top-level@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/top-level@npm:20.0.0"
dependencies:
find-up: "npm:^7.0.0"
checksum: 10/e3e2c93e41902cc2ca13bfd6492ffefaaafe21cab9795aa599c9f3c0aaeef53b006620dae6fea179f939cc14fe9e37a5356329a6097440e204bc203a7cb84727
languageName: node
linkType: hard
"@commitlint/types@npm:^20.0.0":
version: 20.0.0
resolution: "@commitlint/types@npm:20.0.0"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10/36c1eec3924f16221c05de0610c2e3073a994c6fa9901d1636c6235b8998c9ad6b3a7981eeb35ae2541d875f08b99b1cdffddd7944ccd0ebca26fba742fba0ac
languageName: node
linkType: hard
"@conventional-changelog/git-client@npm:^1.0.0":
version: 1.0.1
resolution: "@conventional-changelog/git-client@npm:1.0.1"
dependencies:
"@types/semver": "npm:^7.5.5"
semver: "npm:^7.5.2"
peerDependencies:
conventional-commits-filter: ^5.0.0
conventional-commits-parser: ^6.0.0
peerDependenciesMeta:
conventional-commits-filter:
optional: true
conventional-commits-parser:
optional: true
checksum: 10/3f309c4a5985da8c023a5960e6e91f7abdaff55466a3d11235731ad32b173d6295e102fcfa2298b9bae442b06642872d8ee987cb218362b056e9d280345eabc9
languageName: node
linkType: hard
"@ctrl/tinycolor@npm:^4.0.4":
version: 4.1.0
resolution: "@ctrl/tinycolor@npm:4.1.0"
checksum: 10/e64569399139ef0abd2eb0ec9fb7267dfd7820f7ad7d4567a63e5fc35e5cfdcb8ecdb3bad65cb9244b47ba6c77bc51085826c00e981acf263a3221dc89343adc
languageName: node
linkType: hard
"@custom-elements-manifest/analyzer@npm:^0.10.10":
version: 0.10.10
resolution: "@custom-elements-manifest/analyzer@npm:0.10.10"
dependencies:
"@custom-elements-manifest/find-dependencies": "npm:^0.0.6"
"@github/catalyst": "npm:^1.6.0"
"@web/config-loader": "npm:0.1.3"
chokidar: "npm:3.5.2"
command-line-args: "npm:5.1.2"
comment-parser: "npm:1.2.4"
custom-elements-manifest: "npm:1.0.0"
debounce: "npm:1.2.1"
globby: "npm:11.0.4"
typescript: "npm:~5.4.2"
bin:
cem: cem.js
custom-elements-manifest: cem.js
checksum: 10/e80192497fe8e70fb52c71fda3d1ba21e5ee004df101a2f2654fa3e374b7d52852b853db77377fe8b62b2e1f0d432ae15f7003b2a92b83e1af198eb21c5e2946
languageName: node
linkType: hard
"@custom-elements-manifest/find-dependencies@npm:^0.0.6":
version: 0.0.6
resolution: "@custom-elements-manifest/find-dependencies@npm:0.0.6"
dependencies:
rs-module-lexer: "npm:^2.5.1"
checksum: 10/149fce84ca5dc82b5cb8475d31d4c8828c06c33959d14ca1b14d64e8d831fbcce751dfc3301bfefd1bcd9c2f309533c59c7fb36ec49644747f09c7d7c9a02c95
languageName: node
linkType: hard
"@emmetio/abbreviation@npm:^2.3.3":
version: 2.3.3
resolution: "@emmetio/abbreviation@npm:2.3.3"
dependencies:
"@emmetio/scanner": "npm:^1.0.4"
checksum: 10/1edbb943aeaee445f0aa9a32656dc79755532efc6e54ede55562e1914a060724619cfb33007e566e74fa266541a3faeff8d3800c711d3f8f7f0180e2014ff98d
languageName: node
linkType: hard
"@emmetio/css-abbreviation@npm:^2.1.8":
version: 2.1.8
resolution: "@emmetio/css-abbreviation@npm:2.1.8"
dependencies:
"@emmetio/scanner": "npm:^1.0.4"
checksum: 10/b2f401f73c44bd18c16655d8c9bbc1fd21956b45e943fc20c41be342eab8232a3fdd7379656cd80077ee00418d24306bd905a1454fbb574f3dd196a0d4426178
languageName: node
linkType: hard
"@emmetio/css-parser@npm:^0.4.0":
version: 0.4.0
resolution: "@emmetio/css-parser@npm:0.4.0"
dependencies:
"@emmetio/stream-reader": "npm:^2.2.0"
"@emmetio/stream-reader-utils": "npm:^0.1.0"
checksum: 10/663d9fc2a3bdf5c2c653a909dd0db4ca7eaa22a9553f8298087187c2edc11043271ee952e2c7046cc8f41db3f296bbf66653a60a5ec310a9488caaeef392fdde
languageName: node
linkType: hard
"@emmetio/html-matcher@npm:^1.3.0":
version: 1.3.0
resolution: "@emmetio/html-matcher@npm:1.3.0"
dependencies:
"@emmetio/scanner": "npm:^1.0.0"
checksum: 10/e87c02f077ab912049b14cf1f20a02f8ca52ec9fef8af21de7b46919f0cbaad4f5ca4b8afc0b784fc0c175f661fcf02e644b6c941331c382b30b4b0be5711431
languageName: node
linkType: hard
"@emmetio/scanner@npm:^1.0.0, @emmetio/scanner@npm:^1.0.4":
version: 1.0.4
resolution: "@emmetio/scanner@npm:1.0.4"
checksum: 10/96d970d1dc30a2927ca7da462a92c9d045b5e365a5f2db01696abb83ff11ef006138dc4be0fac4343e5e9bf26127caec77501628b29df3bb10669d9d40d625a5
languageName: node
linkType: hard
"@emmetio/stream-reader-utils@npm:^0.1.0":
version: 0.1.0
resolution: "@emmetio/stream-reader-utils@npm:0.1.0"
checksum: 10/78b22414625d891ff687edbf49b7b0a6d17121c8ddfd01486d3e094be3566446aa2067afb9a807c771e6be73ab8a3215d9c8a59551f8a5e3b30cdbcb23bed27b
languageName: node
linkType: hard
"@emmetio/stream-reader@npm:^2.2.0":
version: 2.2.0
resolution: "@emmetio/stream-reader@npm:2.2.0"
checksum: 10/bdf8f76c976401e17c5a5587b4400b9553e238daa81a6a0fe4b8feb0d7ad6857b19ccacdff7c5b6de113462fbcc59a482209a5ea31070f5bae150fac9f49d990
languageName: node
linkType: hard
"@emnapi/core@npm:^1.4.3":
version: 1.5.0
resolution: "@emnapi/core@npm:1.5.0"
dependencies:
"@emnapi/wasi-threads": "npm:1.1.0"
tslib: "npm:^2.4.0"
checksum: 10/b500a69df001580731b0d355298b58832d44ab176937c0db7d10073a396f7a801ebcca10581f125a1cd88af4e6ecd6fbb04b78629cc703a424218b3a36d7bf50
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.4.3, @emnapi/runtime@npm:^1.4.4":
version: 1.5.0
resolution: "@emnapi/runtime@npm:1.5.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/5311ce854306babc77f4bd94c2f973722714a0fab93c126239104ad52dea16a147bfed4c4cff3ca1eb32709607221c25d2f747ae8524cbeb9088058f02ff962b
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.1.0":
version: 1.1.0
resolution: "@emnapi/wasi-threads@npm:1.1.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/0d557e75262d2f4c95cb2a456ba0785ef61f919ce488c1d76e5e3acfd26e00c753ef928cd80068363e0c166ba8cc0141305daf0f81aad5afcd421f38f11e0f4e
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.76.0":
version: 0.76.0
resolution: "@es-joy/jsdoccomment@npm:0.76.0"
dependencies:
"@types/estree": "npm:^1.0.8"
"@typescript-eslint/types": "npm:^8.46.0"
comment-parser: "npm:1.4.1"
esquery: "npm:^1.6.0"
jsdoc-type-pratt-parser: "npm:~6.10.0"
checksum: 10/ce7a79c3323f17afdcf997221c0aa45a023c7dc6bbfec501642538691b3307e920146fcb490c00c9f4e8a21adcafad664dffbb3e53051dbb75a0ee85a2428c43
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/aix-ppc64@npm:0.25.12"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/android-arm64@npm:0.25.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/android-arm@npm:0.25.12"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/android-x64@npm:0.25.12"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/darwin-arm64@npm:0.25.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/darwin-x64@npm:0.25.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/freebsd-arm64@npm:0.25.12"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/freebsd-x64@npm:0.25.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-arm64@npm:0.25.12"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-arm@npm:0.25.12"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-ia32@npm:0.25.12"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-loong64@npm:0.25.12"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-mips64el@npm:0.25.12"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-ppc64@npm:0.25.12"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-riscv64@npm:0.25.12"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-s390x@npm:0.25.12"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/linux-x64@npm:0.25.12"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/netbsd-arm64@npm:0.25.12"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/netbsd-x64@npm:0.25.12"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/openbsd-arm64@npm:0.25.12"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/openbsd-x64@npm:0.25.12"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/openharmony-arm64@npm:0.25.12"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/sunos-x64@npm:0.25.12"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/win32-arm64@npm:0.25.12"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/win32-ia32@npm:0.25.12"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.12":
version: 0.25.12
resolution: "@esbuild/win32-x64@npm:0.25.12"
conditions: os=win32 & cpu=x64