-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
yarn.lock
14576 lines (13123 loc) · 526 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@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
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
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-jsx-a11y@npm:@favware/skip-dependency@latest, eslint-plugin-mdx@npm:@favware/skip-dependency@latest, eslint-plugin-react-hooks@npm:@favware/skip-dependency@latest, eslint-plugin-react@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.4":
version: 0.9.4
resolution: "@astrojs/check@npm:0.9.4"
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/ec82f50fc6c9f80c846e428c33e76b461c978329f362daed784e3ace766ed533e9d2f9cbdadc263bb512b45fa4a709e972067a9d298ca28888206d4913f43d12
languageName: node
linkType: hard
"@astrojs/compiler@npm:^2.10.3, @astrojs/compiler@npm:^2.9.1":
version: 2.10.3
resolution: "@astrojs/compiler@npm:2.10.3"
checksum: 10/25694664996def784453e73f507c7751e9dec57eaf882b11398d642d622393724c50d4aea01beae1562bdef16e990bca4c2cee6457b0c73572724989accf9b33
languageName: node
linkType: hard
"@astrojs/internal-helpers@npm:0.4.1":
version: 0.4.1
resolution: "@astrojs/internal-helpers@npm:0.4.1"
checksum: 10/dfd5fb2020b101aee18daae3550ba3649e3851f0e0a52de40023b990dda1a835a8b66e40c9c4ef13aca6d376e6b9ee625a0c49d1d0157edb4c57dbae4be5b889
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:5.2.0":
version: 5.2.0
resolution: "@astrojs/markdown-remark@npm:5.2.0"
dependencies:
"@astrojs/prism": "npm:3.1.0"
github-slugger: "npm:^2.0.0"
hast-util-from-html: "npm:^2.0.1"
hast-util-to-text: "npm:^4.0.2"
import-meta-resolve: "npm:^4.1.0"
mdast-util-definitions: "npm:^6.0.0"
rehype-raw: "npm:^7.0.0"
rehype-stringify: "npm:^10.0.0"
remark-gfm: "npm:^4.0.0"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.1.0"
remark-smartypants: "npm:^3.0.2"
shiki: "npm:^1.10.3"
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.2"
checksum: 10/bfd7afabc9e045acfeb66fdf32e83fee7c9cad6eac30d29e4a4632a2d8cf45a1ffd87ac960207f7ff7d58592714018b8792db3ffeaac24eeef8d9909dbd89f64
languageName: node
linkType: hard
"@astrojs/markdown-remark@npm:5.3.0":
version: 5.3.0
resolution: "@astrojs/markdown-remark@npm:5.3.0"
dependencies:
"@astrojs/prism": "npm:3.1.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"
mdast-util-definitions: "npm:^6.0.0"
rehype-raw: "npm:^7.0.0"
rehype-stringify: "npm:^10.0.1"
remark-gfm: "npm:^4.0.0"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.1.1"
remark-smartypants: "npm:^3.0.2"
shiki: "npm:^1.22.0"
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/030fec20f1e0b45e369b75c2d9125bae9a8e4c12e779ddac2fc9da59936d969ffcf9a650dcf3f68b885af8e2784f5c86729acce34b4bf2d3fbd86acdcb64bed4
languageName: node
linkType: hard
"@astrojs/mdx@npm:^3.1.3":
version: 3.1.3
resolution: "@astrojs/mdx@npm:3.1.3"
dependencies:
"@astrojs/markdown-remark": "npm:5.2.0"
"@mdx-js/mdx": "npm:^3.0.1"
acorn: "npm:^8.12.1"
es-module-lexer: "npm:^1.5.4"
estree-util-visit: "npm:^2.0.0"
github-slugger: "npm:^2.0.0"
gray-matter: "npm:^4.0.3"
hast-util-to-html: "npm:^9.0.1"
kleur: "npm:^4.1.5"
rehype-raw: "npm:^7.0.0"
remark-gfm: "npm:^4.0.0"
remark-smartypants: "npm:^3.0.2"
source-map: "npm:^0.7.4"
unist-util-visit: "npm:^5.0.0"
vfile: "npm:^6.0.2"
peerDependencies:
astro: ^4.8.0
checksum: 10/84e9e463dba22debfb43fc906788c7b11b6925519033eddde7ec606a4c757fbbc2c7258d14cc4037d32ffd911930962ad953fa1e0881a0655b86553a1d844a08
languageName: node
linkType: hard
"@astrojs/prism@npm:3.1.0":
version: 3.1.0
resolution: "@astrojs/prism@npm:3.1.0"
dependencies:
prismjs: "npm:^1.29.0"
checksum: 10/8673e4912f0b977fe2d772aafa9e1076c63cf9b68c7fed14ed2c43021279b7dfb7f96b5cb8d4bc4ae2f35b821af95e2f72e7f94c9c90203180782c29fd70a058
languageName: node
linkType: hard
"@astrojs/sitemap@npm:^3.1.6":
version: 3.1.6
resolution: "@astrojs/sitemap@npm:3.1.6"
dependencies:
sitemap: "npm:^7.1.2"
stream-replace-string: "npm:^2.0.0"
zod: "npm:^3.23.8"
checksum: 10/9160db939c12a81e95b9b941cd51bfe5d7f35ab38d0560d40172f82c5d9d3138ce4ebc3620476a16547e576ee7f6410f44df721cefc22a3e2cd1b8284aeb43f2
languageName: node
linkType: hard
"@astrojs/starlight@npm:0.29.0":
version: 0.29.0
resolution: "@astrojs/starlight@npm:0.29.0"
dependencies:
"@astrojs/mdx": "npm:^3.1.3"
"@astrojs/sitemap": "npm:^3.1.6"
"@pagefind/default-ui": "npm:^1.0.3"
"@types/hast": "npm:^3.0.4"
"@types/mdast": "npm:^4.0.4"
astro-expressive-code: "npm:^0.38.3"
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"
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.0.3"
rehype: "npm:^13.0.1"
rehype-format: "npm:^5.0.0"
remark-directive: "npm:^3.0.0"
unified: "npm:^11.0.5"
unist-util-visit: "npm:^5.0.0"
vfile: "npm:^6.0.2"
peerDependencies:
astro: ^4.14.0
checksum: 10/32e1bf68f27215e1f2a93aac18ca6eaeca34a385a35b6d09cdaf6c5786d60be7232f73aa454ee63f58bd523d6bd00bd0dfe0425127806c9bd038f579558c3c29
languageName: node
linkType: hard
"@astrojs/telemetry@npm:3.1.0":
version: 3.1.0
resolution: "@astrojs/telemetry@npm:3.1.0"
dependencies:
ci-info: "npm:^4.0.0"
debug: "npm:^4.3.4"
dlv: "npm:^1.1.3"
dset: "npm:^3.1.3"
is-docker: "npm:^3.0.0"
is-wsl: "npm:^3.0.0"
which-pm-runs: "npm:^1.1.0"
checksum: 10/8c571c53154d111ba865a4f870796baca07b42afe2e5390713c6bd2b63ed06d32d6008f1d3070fc15a1b1ebfcc33ae309a1da1ddf5854aa7c55d042e9de660f0
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.22.13, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/db2c2122af79d31ca916755331bb4bac96feb2b334cdaca5097a6b467fdd41963b89b14b6836a14f083de7ff887fc78fa1b3c10b14e743d33e12dbfe5ee3d223
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.9":
version: 7.26.2
resolution: "@babel/compat-data@npm:7.26.2"
checksum: 10/ed9eed6b62ce803ef4a320b1dac76b0302abbb29c49dddf96f3e3207d9717eb34e299a8651bb1582e9c3346ead74b6d595ffced5b3dae718afa08b18741f8402
languageName: node
linkType: hard
"@babel/core@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.26.0"
"@babel/generator": "npm:^7.26.0"
"@babel/helper-compilation-targets": "npm:^7.25.9"
"@babel/helper-module-transforms": "npm:^7.26.0"
"@babel/helpers": "npm:^7.26.0"
"@babel/parser": "npm:^7.26.0"
"@babel/template": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
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/65767bfdb1f02e80d3af4f138066670ef8fdd12293de85ef151758a901c191c797e86d2e99b11c4cdfca33c72385ecaf38bbd7fa692791ec44c77763496b9b93
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
"@babel/parser": "npm:^7.26.2"
"@babel/types": "npm:^7.26.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/71ace82b5b07a554846a003624bfab93275ccf73cdb9f1a37a4c1094bf9dc94bb677c67e8b8c939dbd6c5f0eda2e8f268aa2b0d9c3b9511072565660e717e045
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-annotate-as-pure@npm:7.25.9"
dependencies:
"@babel/types": "npm:^7.25.9"
checksum: 10/41edda10df1ae106a9b4fe617bf7c6df77db992992afd46192534f5cff29f9e49a303231733782dd65c5f9409714a529f215325569f14282046e9d3b7a1ffb6c
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-compilation-targets@npm:7.25.9"
dependencies:
"@babel/compat-data": "npm:^7.25.9"
"@babel/helper-validator-option": "npm:^7.25.9"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/8053fbfc21e8297ab55c8e7f9f119e4809fa7e505268691e1bedc2cf5e7a5a7de8c60ad13da2515378621b7601c42e101d2d679904da395fa3806a1edef6b92e
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
dependencies:
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/e090be5dee94dda6cd769972231b21ddfae988acd76b703a480ac0c96f3334557d70a965bf41245d6ee43891e7571a8b400ccf2b2be5803351375d0f4e5bcf08
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helper-module-transforms@npm:7.26.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/9841d2a62f61ad52b66a72d08264f23052d533afc4ce07aec2a6202adac0bfe43014c312f94feacb3291f4c5aafe681955610041ece2c276271adce3f570f2f5
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-plugin-utils@npm:7.25.9"
checksum: 10/e347d87728b1ab10b6976d46403941c8f9008c045ea6d99997a7ffca7b852dc34b6171380f7b17edf94410e0857ff26f3a53d8618f11d73744db86e8ca9b8c64
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10/c28656c52bd48e8c1d9f3e8e68ecafd09d949c57755b0d353739eb4eae7ba4f7e67e92e4036f1cd43378cc1397a2c943ed7bcaf5949b04ab48607def0258b775
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.5, @babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10/3f9b649be0c2fd457fa1957b694b4e69532a668866b8a0d81eabfa34ba16dbf3107b39e0e7144c55c3c652bf773ec816af8df4a61273a2bb4eb3145ca9cf478e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-option@npm:7.25.9"
checksum: 10/9491b2755948ebbdd68f87da907283698e663b5af2d2b1b02a2765761974b1120d5d8d49e9175b167f16f72748ffceec8c9cf62acfbee73f4904507b246e2b3d
languageName: node
linkType: hard
"@babel/helpers@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helpers@npm:7.26.0"
dependencies:
"@babel/template": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
checksum: 10/fd4757f65d10b64cfdbf4b3adb7ea6ffff9497c53e0786452f495d1f7794da7e0898261b4db65e1c62bbb9a360d7d78a1085635c23dfc3af2ab6dcba06585f86
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
"@babel/types": "npm:^7.26.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10/8baee43752a3678ad9f9e360ec845065eeee806f1fdc8e0f348a8a0e13eef0959dabed4a197c978896c493ea205c804d0a1187cc52e4a1ba017c7935bab4983d
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-syntax-jsx@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/bb609d1ffb50b58f0c1bac8810d0e46a4f6c922aa171c458f3a19d66ee545d36e782d3bffbbc1fed0dc65a558bdce1caf5279316583c0fff5a2c1658982a8563
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
"@babel/helper-module-imports": "npm:^7.25.9"
"@babel/helper-plugin-utils": "npm:^7.25.9"
"@babel/plugin-syntax-jsx": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/eb179ecdf0ae19aed254105cf78fbac35f9983f51ed04b7b67c863a4820a70a879bd5da250ac518321f86df20eac010e53e3411c8750c386d51da30e4814bfb6
languageName: node
linkType: hard
"@babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.23.2":
version: 7.25.6
resolution: "@babel/runtime@npm:7.25.6"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/0c4134734deb20e1005ffb9165bf342e1074576621b246d8e5e41cc7cb315a885b7d98950fbf5c63619a2990a56ae82f444d35fe8c4691a0b70c2fe5673667dc
languageName: node
linkType: hard
"@babel/template@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/template@npm:7.25.9"
dependencies:
"@babel/code-frame": "npm:^7.25.9"
"@babel/parser": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/e861180881507210150c1335ad94aff80fd9e9be6202e1efa752059c93224e2d5310186ddcdd4c0f0b0fc658ce48cb47823f15142b5c00c8456dde54f5de80b2
languageName: node
linkType: hard
"@babel/traverse@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/traverse@npm:7.25.9"
dependencies:
"@babel/code-frame": "npm:^7.25.9"
"@babel/generator": "npm:^7.25.9"
"@babel/parser": "npm:^7.25.9"
"@babel/template": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
checksum: 10/7431614d76d4a053e429208db82f2846a415833f3d9eb2e11ef72eeb3c64dfd71f4a4d983de1a4a047b36165a1f5a64de8ca2a417534cc472005c740ffcb9c6a
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/types@npm:7.26.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
checksum: 10/40780741ecec886ed9edae234b5eb4976968cc70d72b4e5a40d55f83ff2cc457de20f9b0f4fe9d858350e43dab0ea496e7ef62e2b2f08df699481a76df02cd6e
languageName: node
linkType: hard
"@commitlint/cli@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/cli@npm:19.5.0"
dependencies:
"@commitlint/format": "npm:^19.5.0"
"@commitlint/lint": "npm:^19.5.0"
"@commitlint/load": "npm:^19.5.0"
"@commitlint/read": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
tinyexec: "npm:^0.3.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 10/1d3384cc9823462da3a35308a145dc4fcf92025f7af976e1ceb9cbe9cbd7b7b83703fe0e9ca12fc7f4903ea2fe68c8c1492c18409ba301894c01cb2264a00795
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/config-conventional@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
conventional-changelog-conventionalcommits: "npm:^7.0.2"
checksum: 10/5844fb51347677dd28f970a50528fbc44b9b415a8a5fd6fea6c7f6a2a11357956748eda9d1d6ae499430659b0aa78bfa7dcf8abf599951e7f34a581e60bf57da
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/config-validator@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
ajv: "npm:^8.11.0"
checksum: 10/681bfdcabcb0ff794ea65d95128083869c97039c3a352219d6d88a2d4f3d0412b8ec515db77433fc6b0fce072051beb103d16889d42e76ea97873191ec191b23
languageName: node
linkType: hard
"@commitlint/ensure@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/ensure@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.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/a9d575637121221cb63232ee96024a63614052ccc205ec8fdab53feed70104b85608e31b4632f280d2876f10a2243474191d96e448b222abfc8d8ab48f9f8e7e
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/execute-rule@npm:19.5.0"
checksum: 10/ff05568c3a287ef8564171d5bc5d4510b2e00b552e4703f79db3d62f3cba9d669710717695d199e04c2117d41f9e72d7e43a342d5c1b62d456bc8e8bb7dda1e9
languageName: node
linkType: hard
"@commitlint/format@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/format@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
checksum: 10/685b64ebee936d71bbbf66276b11d50b0227f2ad0df3c00317d5b7e25bce8b1b8dbc65cc7c5c7fafc76cad11a83ad4378a666bf8f12a3eb1c7d6a2a6c6cb25aa
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/is-ignored@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
semver: "npm:^7.6.0"
checksum: 10/1c7ee34686fd098587f9717763473477d49e847f470a317903f922d13091271d013a046f61b43b31b34eba4e4b0f76369b7427588269bbdc4c5f622d3ace2c95
languageName: node
linkType: hard
"@commitlint/lint@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/lint@npm:19.5.0"
dependencies:
"@commitlint/is-ignored": "npm:^19.5.0"
"@commitlint/parse": "npm:^19.5.0"
"@commitlint/rules": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10/bba8cd17a90876b6b2cd2f869ee4d08cd3e5ad8a10f2c273d379d3b6602da30c46c2d9d0925710d7b9ebf180b3d1f02409adfc0f1a888cc566d88c9ee5862bdd
languageName: node
linkType: hard
"@commitlint/load@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/load@npm:19.5.0"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/execute-rule": "npm:^19.5.0"
"@commitlint/resolve-extends": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
chalk: "npm:^5.3.0"
cosmiconfig: "npm:^9.0.0"
cosmiconfig-typescript-loader: "npm:^5.0.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
checksum: 10/87a9450c768632c09e9d98993752a5622aee698642eee5a9b31c3c48625455e043406b7ea6e02a8f41d86c524c9ecbdb9b823caf67da3048f0d96531177fda28
languageName: node
linkType: hard
"@commitlint/message@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/message@npm:19.5.0"
checksum: 10/ad6993476ce3e6ed6ed7ae5327ac8d5116ca70168d9de6dff656a7e6f2b9f01a1c3ac7a13418831b5cdc3148ea9bcd78c32bdb7aa863280108e176ff803f7a51
languageName: node
linkType: hard
"@commitlint/parse@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/parse@npm:19.5.0"
dependencies:
"@commitlint/types": "npm:^19.5.0"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: 10/2a6f8bbbd79aa36a7e1128c60cecb322557110aa4aa8757c741c2f79071c540ba56957cef81fb64f4a304535e462d0c48b5c1ef1b2766fea7971d38ec5ad6384
languageName: node
linkType: hard
"@commitlint/read@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/read@npm:19.5.0"
dependencies:
"@commitlint/top-level": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
tinyexec: "npm:^0.3.0"
checksum: 10/0ea2da48ae1bab9add9e831a1659306567755c20ec74cf04e6e50ef1e520970decd259af652995f55eef422a3f1382f0e64e5fbc23606176f766f71076ad872b
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/resolve-extends@npm:19.5.0"
dependencies:
"@commitlint/config-validator": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.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/71a1c9423570dedb55809f4ad7c35962607cb06921364116e8f2d8c3d37a7ff2a43747ad5a9cd924b58614e6880a42a3fa1510244748bb6997469b52b0fecd78
languageName: node
linkType: hard
"@commitlint/rules@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/rules@npm:19.5.0"
dependencies:
"@commitlint/ensure": "npm:^19.5.0"
"@commitlint/message": "npm:^19.5.0"
"@commitlint/to-lines": "npm:^19.5.0"
"@commitlint/types": "npm:^19.5.0"
checksum: 10/2c879d2cd50a3b4572cea41f044cc3091f0a11ef5ead0bb54bfa564ea637e0d93e08ae322ec4c99bb5b379b82835ace595d1c8dab6e35c1b68b63292160a61b3
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/to-lines@npm:19.5.0"
checksum: 10/68aaca7bf1331b5f2f604e814d57f483ead81a8296f8cff5667249510a5601825dfbbaccade3d02e0aca580b973c01419276d693cc9aa888cbe11022daa9dce6
languageName: node
linkType: hard
"@commitlint/top-level@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/top-level@npm:19.5.0"
dependencies:
find-up: "npm:^7.0.0"
checksum: 10/f6b5a3746c458e12c7a9e93f7c856ba90fba6e61db614ea1201e6b6e92cb8161dd13e88d8c9b408709ea0c19bc949cffcd1dd356cb6f51fc2ede8df48c1fd410
languageName: node
linkType: hard
"@commitlint/types@npm:^19.5.0":
version: 19.5.0
resolution: "@commitlint/types@npm:19.5.0"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10/a26f33ec6987d7d93bdbd7e1b177cfac30ca056ea383faf343c6a09c0441aa057a24be1459c3d4e7e91edd2ecf8d6c4dd670948c9d22646d64767137c6db098a
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.3":
version: 0.10.3
resolution: "@custom-elements-manifest/analyzer@npm:0.10.3"
dependencies:
"@custom-elements-manifest/find-dependencies": "npm:^0.0.5"
"@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/9f1ccb972a89a3cb587ae74ef94dae9663074566da29c5acd49356e1138e1b54567325106312058d18f5e334619083919e1d08da25e6ce9e08c9902859bb7539
languageName: node
linkType: hard
"@custom-elements-manifest/find-dependencies@npm:^0.0.5":
version: 0.0.5
resolution: "@custom-elements-manifest/find-dependencies@npm:0.0.5"
dependencies:
es-module-lexer: "npm:^0.9.3"
checksum: 10/b73fd7c38a62ecb24613b9ecbd8c00b43c2ad172575afd845217f3cb5ce861e7bc152cbf51a6b3e0469560fa95782f985e8c220947560c3660890f1b744fb380
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/runtime@npm:^1.1.1":
version: 1.2.0
resolution: "@emnapi/runtime@npm:1.2.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/c954b36493b713e451c74e9f1a48124b5491196700ec458c5d4a94eac3351e14803b4fd48ae6f72c77956d75792093d377f96412a6f59766099cb142e5c5b8f4
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.46.0":
version: 0.46.0
resolution: "@es-joy/jsdoccomment@npm:0.46.0"
dependencies:
comment-parser: "npm:1.4.1"
esquery: "npm:^1.6.0"
jsdoc-type-pratt-parser: "npm:~4.0.0"
checksum: 10/1853865bebd502763dfd85ff247195806a40cff860278c5c20767f0b330c4fd51e71458ed4dac53891dcf5e3bb2fac13b5538eeb38938cf4549cf17984b0cc2e
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/aix-ppc64@npm:0.24.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm64@npm:0.24.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm@npm:0.24.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-x64@npm:0.24.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-arm64@npm:0.24.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-x64@npm:0.24.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-arm64@npm:0.24.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-x64@npm:0.24.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm64@npm:0.24.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm@npm:0.24.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ia32@npm:0.24.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-loong64@npm:0.24.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-mips64el@npm:0.24.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ppc64@npm:0.24.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-riscv64@npm:0.24.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-s390x@npm:0.24.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-x64@npm:0.24.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/netbsd-x64@npm:0.24.0"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-arm64@npm:0.24.0"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/openbsd-x64@npm:0.24.0"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/sunos-x64@npm:0.24.0"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-arm64@npm:0.24.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-ia32@npm:0.24.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/win32-x64@npm:0.24.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.1.2, @eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.1
resolution: "@eslint-community/regexpp@npm:4.10.1"
checksum: 10/54f13817caf90545502d7a19e1b61df79087aee9584342ffc558b6d067530764a47f1c484f493f43e2c70cfdff59ccfd5f26df2af298c4ad528469e599bd1d53
languageName: node
linkType: hard
"@eslint/compat@npm:^1.1.1, @eslint/compat@npm:^1.2.3":
version: 1.2.3