-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathyarn.lock
16449 lines (14836 loc) · 593 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
"@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.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.11.0, @astrojs/compiler@npm:^2.9.1":
version: 2.11.0
resolution: "@astrojs/compiler@npm:2.11.0"
checksum: 10/41e6727d35d7002d1a59a20faf046def0a17bdeff911c211414338fb84081410d8aa5aec230dbd989d1851d15c0e2771e735480a002363a0d6c982d59ed965f7
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/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.0.2":
version: 6.0.2
resolution: "@astrojs/markdown-remark@npm:6.0.2"
dependencies:
"@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.0"
remark-parse: "npm:^11.0.0"
remark-rehype: "npm:^11.1.1"
remark-smartypants: "npm:^3.0.2"
shiki: "npm:^1.26.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.1"
vfile: "npm:^6.0.3"
checksum: 10/357683d86ae3ab0cf6339e6a274ac65917bd2d30d614ccbb0fd0e08974f591099e3ddf96d0de23343708a86ed6fa909450c83077d74123693a367eb42863c0c3
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/mdx@npm:^4.0.5":
version: 4.0.6
resolution: "@astrojs/mdx@npm:4.0.6"
dependencies:
"@astrojs/markdown-remark": "npm:6.0.2"
"@mdx-js/mdx": "npm:^3.1.0"
acorn: "npm:^8.14.0"
es-module-lexer: "npm:^1.6.0"
estree-util-visit: "npm:^2.0.0"
hast-util-to-html: "npm:^9.0.4"
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.3"
peerDependencies:
astro: ^5.0.0
checksum: 10/c1aa7d219a971304bf883fc558cd05ca85179b15260138dc6278e2c35e4a2f318b6e20b8e240baa67a18322dd019e7073d187ad114144e5edd1021f59f985507
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/sitemap@npm:^3.2.1":
version: 3.2.1
resolution: "@astrojs/sitemap@npm:3.2.1"
dependencies:
sitemap: "npm:^8.0.0"
stream-replace-string: "npm:^2.0.0"
zod: "npm:^3.23.8"
checksum: 10/117fa0e26005520b8c6d0715ab8f55271b4c4d03c9e8ba8e739415f0d079d772777e1702e408fcbf72ea3b6e289dee8ced490397fce76dfe5726e986a47d630b
languageName: node
linkType: hard
"@astrojs/starlight@npm:0.33.1":
version: 0.33.1
resolution: "@astrojs/starlight@npm:0.33.1"
dependencies:
"@astrojs/mdx": "npm:^4.0.5"
"@astrojs/sitemap": "npm:^3.2.1"
"@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.40.0"
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"
unified: "npm:^11.0.5"
unist-util-visit: "npm:^5.0.0"
vfile: "npm:^6.0.2"
peerDependencies:
astro: ^5.1.5
checksum: 10/171f59353a252108e5daf334a751fdcd5bc5da0565a411a748f6d5655d197c1c449cb71a9310e4b9cb6eca238642e7fd04f9778e51c57c596e545c769e00732a
languageName: node
linkType: hard
"@astrojs/telemetry@npm:3.2.0":
version: 3.2.0
resolution: "@astrojs/telemetry@npm:3.2.0"
dependencies:
ci-info: "npm:^4.1.0"
debug: "npm:^4.3.7"
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/d1ce4511049d3d9db0bc036519cd9762ccabd3638ffa2a25b858a55ff882798c7c3eeaa1bfbad967b4d2274afd298d46c390335c8579901ce202eb79f375e38d
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":
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/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.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10/3f9b649be0c2fd457fa1957b694b4e69532a668866b8a0d81eabfa34ba16dbf3107b39e0e7144c55c3c652bf773ec816af8df4a61273a2bb4eb3145ca9cf478e
languageName: node
linkType: hard
"@babel/parser@npm:^7.25.4":
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/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/types@npm:^7.25.4, @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.8.0":
version: 19.8.0
resolution: "@commitlint/cli@npm:19.8.0"
dependencies:
"@commitlint/format": "npm:^19.8.0"
"@commitlint/lint": "npm:^19.8.0"
"@commitlint/load": "npm:^19.8.0"
"@commitlint/read": "npm:^19.8.0"
"@commitlint/types": "npm:^19.8.0"
tinyexec: "npm:^0.3.0"
yargs: "npm:^17.0.0"
bin:
commitlint: ./cli.js
checksum: 10/80879bafedb2935c984e5f86f47810c7eae54bf987181f46bfe4d86887c0e6063c38738c3fa6ea23ed1230a158ff95f8b82ba4d4850d7e0806408e2624b6e566
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/config-conventional@npm:19.8.0"
dependencies:
"@commitlint/types": "npm:^19.8.0"
conventional-changelog-conventionalcommits: "npm:^7.0.2"
checksum: 10/b7231cb985609b26dcd9f35a2ba897bb1c3688bfbbc4a72444001e01150efa3b5d7f574c0d269815e80503ae57c6719bff0c66ec0004fd2eeefae4085c7893a7
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/config-validator@npm:19.8.0"
dependencies:
"@commitlint/types": "npm:^19.8.0"
ajv: "npm:^8.11.0"
checksum: 10/2187dd82ab643336989c5466f620091782e81945dd9c4f6e765c7bbddaf5ab8b2c71559793327389af276b1553e05b2e008e9efb50107d015410938a22145ed3
languageName: node
linkType: hard
"@commitlint/ensure@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/ensure@npm:19.8.0"
dependencies:
"@commitlint/types": "npm:^19.8.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/eddc204eb9ac2689ac00503eb61166568ba46cfd7d04cc7a8a0911e23a1df3da586d9b1a02fc3e776660f2e37bfa5a3f9f3b7e85d1e3053f9f26232d13f42b14
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/execute-rule@npm:19.8.0"
checksum: 10/88aaa3a6bc93407673d10975081c8eb4406678931ab68078a93c3dd27ede8b5195a535c04c69a9369048bca040b8933e763f418e4c9af40962a2c7a2ae6f4a96
languageName: node
linkType: hard
"@commitlint/format@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/format@npm:19.8.0"
dependencies:
"@commitlint/types": "npm:^19.8.0"
chalk: "npm:^5.3.0"
checksum: 10/ed6d50da8d035fa2eb0882a284af6c137a3c84eebbade004736c01f9e3bede6ea9fce2389d0b4f0ccaaf3620d9886af5815e10fe8329a7c5254bd6b2e435e745
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/is-ignored@npm:19.8.0"
dependencies:
"@commitlint/types": "npm:^19.8.0"
semver: "npm:^7.6.0"
checksum: 10/48799c65f618b46dcb6c9e7333fad2b34d57f90cf22c98b99e736bf2078814019a01d91c2e9bd909f742534c2a47f2562ddfc52460a6a0f07956f51db1ee07dd
languageName: node
linkType: hard
"@commitlint/lint@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/lint@npm:19.8.0"
dependencies:
"@commitlint/is-ignored": "npm:^19.8.0"
"@commitlint/parse": "npm:^19.8.0"
"@commitlint/rules": "npm:^19.8.0"
"@commitlint/types": "npm:^19.8.0"
checksum: 10/9365d6fa717dfb442050902dc063a5b49cd2ac3b0ecefa0c55267c3a5ae666a46f035a4873ef1f6f0f8379303c48eb1509378c01c66404cfdaae37fc25c6b38e
languageName: node
linkType: hard
"@commitlint/load@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/load@npm:19.8.0"
dependencies:
"@commitlint/config-validator": "npm:^19.8.0"
"@commitlint/execute-rule": "npm:^19.8.0"
"@commitlint/resolve-extends": "npm:^19.8.0"
"@commitlint/types": "npm:^19.8.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/7cf41b635735dc8a380db42e855a21b7a37be94ff13ab5e37bccac7ca453b71b704bcd52f8e64549d7a8b147829110305bb1a7ee64c19e7167e0e05ec3d7c0d9
languageName: node
linkType: hard
"@commitlint/message@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/message@npm:19.8.0"
checksum: 10/a8dee65927ec865dbd930f177cb0734e67298fb32feb91a1221ff4728ea3e75284d6d02f0d66eb12592288c5efea3ced9d7dfdf5e5daca5b9bf0cd932ef92db4
languageName: node
linkType: hard
"@commitlint/parse@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/parse@npm:19.8.0"
dependencies:
"@commitlint/types": "npm:^19.8.0"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: 10/5fa0828785e9159f3e844c592005c65bc58632c47d787f9de2e2546731530bc05ee554b9071c459784f95b2d72bd9f9b0af9f19d3e7f26ee87eb6f8dab34dcad
languageName: node
linkType: hard
"@commitlint/read@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/read@npm:19.8.0"
dependencies:
"@commitlint/top-level": "npm:^19.8.0"
"@commitlint/types": "npm:^19.8.0"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
tinyexec: "npm:^0.3.0"
checksum: 10/d3e5e532e81f8052326c4762118530284417866b1fa01aebcf356687c2aedc293932ba245dbf4d93d7cd8d65b9267ef5d7be1931825341b2fbf8a69a22dbb08a
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/resolve-extends@npm:19.8.0"
dependencies:
"@commitlint/config-validator": "npm:^19.8.0"
"@commitlint/types": "npm:^19.8.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/622a7c3da8b1e32428702eeb1d2f6ea931acdae993d1f9d811dd9e2fe41f31fe2a61e49ec5c46282424f37365a532075a31e81c36204f6ef35c324ef10ced3b5
languageName: node
linkType: hard
"@commitlint/rules@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/rules@npm:19.8.0"
dependencies:
"@commitlint/ensure": "npm:^19.8.0"
"@commitlint/message": "npm:^19.8.0"
"@commitlint/to-lines": "npm:^19.8.0"
"@commitlint/types": "npm:^19.8.0"
checksum: 10/d8897f2e3d5dc3c967cff6d7b1e167635ee245fa8a114a787d085a0fc411089515994ddbbc3732f7f3058405597bff9adb663b56d6b05b51a289a94661c0202c
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/to-lines@npm:19.8.0"
checksum: 10/2a1b895908fce972879158bdf0cefde3e480db88a286e4be5bba5c6a84d9dd2f7f21def05f9eb33c9128147f920daa37561a191412cae41937ac13cc7be043cf
languageName: node
linkType: hard
"@commitlint/top-level@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/top-level@npm:19.8.0"
dependencies:
find-up: "npm:^7.0.0"
checksum: 10/9ac4a6eb32a5fc6d1913ff097a2ca33b1c5cb228e760c60911f55d666af1ac3f301b596db76a7219c38e849a740620561f1b31aba73aee9b445ad93b1c462cbd
languageName: node
linkType: hard
"@commitlint/types@npm:^19.8.0":
version: 19.8.0
resolution: "@commitlint/types@npm:19.8.0"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10/a8bd0b65a2cf7d9924102c798ec2b68ffeb28c58c4aa975f953b85fcc7404fcc50f11054899d1b7a87f2a14da43a22452725eca6a211bbd5dcdde92b33458a6d
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
"@conventional-changelog/git-client@npm:^2.0.0":
version: 2.0.0
resolution: "@conventional-changelog/git-client@npm:2.0.0"
dependencies:
semver: "npm:^7.5.2"
peerDependencies:
conventional-commits-filter: ^5.0.0
conventional-commits-parser: ^6.1.0
peerDependenciesMeta:
conventional-commits-filter:
optional: true
conventional-commits-parser:
optional: true
checksum: 10/75856570e643adf1ea53686fe6d3467e1f5dbdaf23ca8a818526276832b3c89c09275eab007041bf84842204132fc27ef4c5e476aabbec90daa3ced21f60d39a
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.4":
version: 0.10.4
resolution: "@custom-elements-manifest/analyzer@npm:0.10.4"
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/f69bf92c2bb9c62ab685212b870e1888837b21858dbf907b6ccdcd1baf8f11e55ce1a0dc99eb6190e5037043aeddfbe6ca4ba1e10dee4f6f4aa8edb70f9918f6
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/core@npm:^1.3.1":
version: 1.3.1
resolution: "@emnapi/core@npm:1.3.1"
dependencies:
"@emnapi/wasi-threads": "npm:1.0.1"
tslib: "npm:^2.4.0"
checksum: 10/00dbc2ae1b9682c3afadb39e0de4e69c7223b06df59b975c2a2ef58d6cbd91f5a7cfd666a97831c958737c5ec110735c6164bf0ac6f56b60477a933bd9ce793c
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.1, @emnapi/runtime@npm:^1.3.1":
version: 1.3.1
resolution: "@emnapi/runtime@npm:1.3.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/619915ee44682356f77f60455025e667b0b04ad3c95ced36c03782aea9ebc066fa73e86c4a59d221177eba5e5533d40b3a6dbff4e58ee5d81db4270185c21e22
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.0.1":
version: 1.0.1
resolution: "@emnapi/wasi-threads@npm:1.0.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/949f8bdcb11153d530652516b11d4b11d8c6ed48a692b4a59cbaa4305327aed59a61f0d87c366085c20ad0b0336c3b50eaddbddeeb3e8c55e7e82b583b9d98fb
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.49.0":
version: 0.49.0
resolution: "@es-joy/jsdoccomment@npm:0.49.0"
dependencies:
comment-parser: "npm:1.4.1"
esquery: "npm:^1.6.0"
jsdoc-type-pratt-parser: "npm:~4.1.0"
checksum: 10/d767cef9b09f22d1892b8bd544eee32aa7b55c585edf6b51452e6f377f205b06f46bd319174022f75794d39625b4b0f8ce75c8a4ea0b7fd0f773063506e0ef4d
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/aix-ppc64@npm:0.25.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/android-arm64@npm:0.25.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/android-arm@npm:0.25.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/android-x64@npm:0.25.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/darwin-arm64@npm:0.25.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/darwin-x64@npm:0.25.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/freebsd-arm64@npm:0.25.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/freebsd-x64@npm:0.25.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-arm64@npm:0.25.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-arm@npm:0.25.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-ia32@npm:0.25.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-loong64@npm:0.25.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-mips64el@npm:0.25.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-ppc64@npm:0.25.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-riscv64@npm:0.25.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-s390x@npm:0.25.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-x64@npm:0.25.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/netbsd-arm64@npm:0.25.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/netbsd-x64@npm:0.25.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/openbsd-arm64@npm:0.25.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/openbsd-x64@npm:0.25.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/sunos-x64@npm:0.25.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/win32-arm64@npm:0.25.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/win32-ia32@npm:0.25.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/win32-x64@npm:0.25.2"
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, @eslint-community/eslint-utils@npm:^4.4.1":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/ae92a11412674329b4bd38422518601ec9ceae28e251104d1cad83715da9d38e321f68c817c39b64e66d0af7d98df6f9a10ad2dc638911254b47fb8932df00ef
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:4.12.1, @eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.11.0, @eslint-community/regexpp@npm:^4.12.1, @eslint-community/regexpp@npm:^4.8.0":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10/c08f1dd7dd18fbb60bdd0d85820656d1374dd898af9be7f82cb00451313402a22d5e30569c150315b4385907cdbca78c22389b2a72ab78883b3173be317620cc
languageName: node
linkType: hard
"@eslint/compat@npm:^1.2.7, @eslint/compat@npm:^1.2.8":
version: 1.2.8
resolution: "@eslint/compat@npm:1.2.8"
peerDependencies:
eslint: ^9.10.0
peerDependenciesMeta:
eslint:
optional: true
checksum: 10/f344d73e6b46a2303504b55198f9c480be4881ee10d35c12cae57ba1565575157540765764a971afaafd990163b2ed2227f9efa363a6ed4d27ea350dc2847a52
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.20.0":
version: 0.20.0
resolution: "@eslint/config-array@npm:0.20.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.6"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10/9db7f6cbb5363f2f98ee4805ce09d1a95c4349e86f3f456f2c23a0849b7a6aa8d2be4c25e376ee182af062762e15a101844881c89b566eea0856c481ffcb2090
languageName: node
linkType: hard
"@eslint/config-helpers@npm:^0.2.0":
version: 0.2.0
resolution: "@eslint/config-helpers@npm:0.2.0"
checksum: 10/be54f7dfb37a3a12207c80b57423416758b03dae0a882cfc7d48d79e54ba39c97e14bad2998cd95cfa134b457a375a7438d772ed749bf54b70a05a06aeb29134
languageName: node
linkType: hard
"@eslint/core@npm:^0.12.0":
version: 0.12.0
resolution: "@eslint/core@npm:0.12.0"
dependencies:
"@types/json-schema": "npm:^7.0.15"
checksum: 10/ee8a2c65ee49af727e167b180a8672739e468ad0b1b9ac52558e61bb120f1a93af23f9e723e0e58f273adfe30ccd98167b59598c7be07440489fa38f669b59ae
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.3.1":
version: 3.3.1
resolution: "@eslint/eslintrc@npm:3.3.1"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10/cc240addbab3c5fceaa65b2c8d5d4fd77ddbbf472c2f74f0270b9d33263dc9116840b6099c46b64c9680301146250439b044ed79278a1bcc557da412a4e3c1bb
languageName: node
linkType: hard
"@eslint/js@npm:9.24.0":
version: 9.24.0
resolution: "@eslint/js@npm:9.24.0"
checksum: 10/d210114c147a1c1ebfaed5f32734e7c1f8ef551a5ea48ea67f9469668aa4079565ccd038412437bca87515d51dc9e8b8c788473dcf3d08e35dfb27e92cb3ce1b
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.6":
version: 2.1.6
resolution: "@eslint/object-schema@npm:2.1.6"
checksum: 10/266085c8d3fa6cd99457fb6350dffb8ee39db9c6baf28dc2b86576657373c92a568aec4bae7d142978e798b74c271696672e103202d47a0c148da39154351ed6
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.2.7":
version: 0.2.7
resolution: "@eslint/plugin-kit@npm:0.2.7"
dependencies:
"@eslint/core": "npm:^0.12.0"
levn: "npm:^0.4.1"
checksum: 10/e932da4ff9e24d0383febf73d3c3269f6c6f2cabba98acc2aac1cf50aa697fdf899c3944f44d2a86fb6805e1a30795d5e5fe38dd5abc76c923ce2828fab4c59b
languageName: node
linkType: hard
"@expressive-code/core@npm:^0.40.1":
version: 0.40.1
resolution: "@expressive-code/core@npm:0.40.1"
dependencies:
"@ctrl/tinycolor": "npm:^4.0.4"
hast-util-select: "npm:^6.0.2"
hast-util-to-html: "npm:^9.0.1"
hast-util-to-text: "npm:^4.0.1"
hastscript: "npm:^9.0.0"
postcss: "npm:^8.4.38"
postcss-nested: "npm:^6.0.1"
unist-util-visit: "npm:^5.0.0"
unist-util-visit-parents: "npm:^6.0.1"
checksum: 10/659f6157ed65dc5f30ce056fe4045adc180f03f865c472b1fff2ca719d8358313199fd33861952480ae7e20487c119a30c881c87253ffa9f54a11832dfba4dcb
languageName: node
linkType: hard
"@expressive-code/plugin-frames@npm:^0.40.1":
version: 0.40.1
resolution: "@expressive-code/plugin-frames@npm:0.40.1"
dependencies:
"@expressive-code/core": "npm:^0.40.1"
checksum: 10/a31e197513d837dc67bc2cc5b3b41a66f6da64156ede69b81c3fa0a54d31a97f87c1d57383809d60cbe7c8fd9b9455f9dafe8f33cc9194cf53bcb68c6de12bea
languageName: node
linkType: hard
"@expressive-code/plugin-shiki@npm:^0.40.1":
version: 0.40.1
resolution: "@expressive-code/plugin-shiki@npm:0.40.1"
dependencies:
"@expressive-code/core": "npm:^0.40.1"
shiki: "npm:^1.26.1"
checksum: 10/457694d1995feac88165bd5a971e9e405396b5b549829a26a6b9e087225bd4c11d36ae167c23ddb72d5b5f0666d8b2670c2cf523ce4336488bbeaf861a144b19
languageName: node
linkType: hard
"@expressive-code/plugin-text-markers@npm:^0.40.1":
version: 0.40.1
resolution: "@expressive-code/plugin-text-markers@npm:0.40.1"
dependencies:
"@expressive-code/core": "npm:^0.40.1"
checksum: 10/d162b8df82979fd4bf6042eb564f8c991f163f36dd4f5ca79abf3592927356e3172aa0ec1e8c75df77a791d4bb7cb1ce32d758d08cd72efc46f612547718376b
languageName: node
linkType: hard
"@favware/cliff-jumper@npm:^6.0.0":
version: 6.0.0
resolution: "@favware/cliff-jumper@npm:6.0.0"
dependencies: