-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
8023 lines (6439 loc) · 263 KB
/
pnpm-lock.yaml
File metadata and controls
8023 lines (6439 loc) · 263 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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
'@changesets/changelog-github':
specifier: ^0.5.1
version: 0.5.1
'@changesets/cli':
specifier: ^2.29.4
version: 2.29.4
examples/allow-js:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@tsconfig/node22':
specifier: ^22.0.2
version: 22.0.2
'@types/jsdom':
specifier: ^21.1.7
version: 21.1.7
'@types/node':
specifier: ^22.15.31
version: 22.15.31
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-standard':
specifier: workspace:^
version: link:../../packages/eslint-config-standard
'@vue/eslint-config-typescript':
specifier: ^14.5.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vue/tsconfig':
specifier: ^0.7.0
version: 0.7.0(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jsdom:
specifier: ^26.1.0
version: 26.1.0
npm-run-all2:
specifier: ^8.0.4
version: 8.0.4
typescript:
specifier: ~5.8.0
version: 5.8.2
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
vue-tsc:
specifier: ^2.2.10
version: 2.2.10(typescript@5.8.2)
examples/js:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-standard':
specifier: workspace:^
version: link:../../packages/eslint-config-standard
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jsdom:
specifier: ^26.1.0
version: 26.1.0
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
examples/ts:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@tsconfig/node22':
specifier: ^22.0.2
version: 22.0.2
'@types/jsdom':
specifier: ^21.1.7
version: 21.1.7
'@types/node':
specifier: ^22.15.31
version: 22.15.31
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-standard-with-typescript':
specifier: workspace:^
version: link:../../packages/eslint-config-standard-with-typescript
'@vue/eslint-config-typescript':
specifier: ^14.5.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vue/tsconfig':
specifier: ^0.7.0
version: 0.7.0(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jiti:
specifier: ^2.4.2
version: 2.4.2
jsdom:
specifier: ^26.1.0
version: 26.1.0
npm-run-all2:
specifier: ^8.0.4
version: 8.0.4
typescript:
specifier: ~5.8.0
version: 5.8.2
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
vue-tsc:
specifier: ^2.2.10
version: 2.2.10(typescript@5.8.2)
examples/ts-with-oxlint:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@tsconfig/node22':
specifier: ^22.0.2
version: 22.0.2
'@types/jsdom':
specifier: ^21.1.7
version: 21.1.7
'@types/node':
specifier: ^22.15.31
version: 22.15.31
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-standard':
specifier: workspace:^
version: link:../../packages/eslint-config-standard
'@vue/eslint-config-typescript':
specifier: ^14.5.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vue/tsconfig':
specifier: ^0.7.0
version: 0.7.0(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-oxlint:
specifier: ^0.16.3
version: 0.16.3
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jiti:
specifier: ^2.4.2
version: 2.4.2
jsdom:
specifier: ^26.1.0
version: 26.1.0
npm-run-all2:
specifier: ^8.0.4
version: 8.0.4
oxlint:
specifier: ^0.16.3
version: 0.16.3
typescript:
specifier: ~5.8.0
version: 5.8.2
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
vue-tsc:
specifier: ^2.2.10
version: 2.2.10(typescript@5.8.2)
examples/ts-with-playwright:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@playwright/test':
specifier: ^1.53.0
version: 1.53.0
'@tsconfig/node22':
specifier: ^22.0.2
version: 22.0.2
'@types/jsdom':
specifier: ^21.1.7
version: 21.1.7
'@types/node':
specifier: ^22.15.31
version: 22.15.31
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-standard-with-typescript':
specifier: workspace:^
version: link:../../packages/eslint-config-standard-with-typescript
'@vue/eslint-config-typescript':
specifier: ^14.5.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vue/tsconfig':
specifier: ^0.7.0
version: 0.7.0(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-playwright:
specifier: ^2.2.0
version: 2.2.0(eslint@9.28.0(jiti@2.4.2))
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jiti:
specifier: ^2.4.2
version: 2.4.2
jsdom:
specifier: ^26.1.0
version: 26.1.0
npm-run-all2:
specifier: ^8.0.4
version: 8.0.4
typescript:
specifier: ~5.8.0
version: 5.8.2
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
vue-tsc:
specifier: ^2.2.10
version: 2.2.10(typescript@5.8.2)
examples/ts-with-prettier:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@tsconfig/node22':
specifier: ^22.0.2
version: 22.0.2
'@types/jsdom':
specifier: ^21.1.7
version: 21.1.7
'@types/node':
specifier: ^22.15.31
version: 22.15.31
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-prettier':
specifier: ^10.2.0
version: 10.2.0(@types/eslint@8.56.12)(eslint@9.28.0(jiti@2.4.2))(prettier@3.5.3)
'@vue/eslint-config-standard-with-typescript':
specifier: workspace:^
version: link:../../packages/eslint-config-standard-with-typescript
'@vue/eslint-config-typescript':
specifier: ^14.5.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vue/tsconfig':
specifier: ^0.7.0
version: 0.7.0(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jiti:
specifier: ^2.4.2
version: 2.4.2
jsdom:
specifier: ^26.1.0
version: 26.1.0
npm-run-all2:
specifier: ^8.0.4
version: 8.0.4
prettier:
specifier: 3.5.3
version: 3.5.3
typescript:
specifier: ~5.8.0
version: 5.8.2
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
vue-tsc:
specifier: ^2.2.10
version: 2.2.10(typescript@5.8.2)
examples/ts-with-tsx-in-vue:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@tsconfig/node22':
specifier: ^22.0.2
version: 22.0.2
'@types/jsdom':
specifier: ^21.1.7
version: 21.1.7
'@types/node':
specifier: ^22.15.31
version: 22.15.31
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-standard-with-typescript':
specifier: workspace:^
version: link:../../packages/eslint-config-standard-with-typescript
'@vue/eslint-config-typescript':
specifier: ^14.5.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vue/tsconfig':
specifier: ^0.7.0
version: 0.7.0(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jiti:
specifier: ^2.4.2
version: 2.4.2
jsdom:
specifier: ^26.1.0
version: 26.1.0
npm-run-all2:
specifier: ^8.0.4
version: 8.0.4
typescript:
specifier: ~5.8.0
version: 5.8.2
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
vue-tsc:
specifier: ^2.2.10
version: 2.2.10(typescript@5.8.2)
examples/type-checked:
dependencies:
pinia:
specifier: ^3.0.3
version: 3.0.3(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.2)
vue-router:
specifier: ^4.5.1
version: 4.5.1(vue@3.5.16(typescript@5.8.2))
devDependencies:
'@tsconfig/node22':
specifier: ^22.0.2
version: 22.0.2
'@types/jsdom':
specifier: ^21.1.7
version: 21.1.7
'@types/node':
specifier: ^22.15.31
version: 22.15.31
'@vitejs/plugin-vue':
specifier: ^5.2.4
version: 5.2.4(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitejs/plugin-vue-jsx':
specifier: ^4.2.0
version: 4.2.0(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
'@vitest/eslint-plugin':
specifier: ^1.2.2
version: 1.2.2(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1))
'@vue/eslint-config-standard-with-typescript':
specifier: workspace:^
version: link:../../packages/eslint-config-standard-with-typescript
'@vue/eslint-config-typescript':
specifier: ^14.5.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vue/tsconfig':
specifier: ^0.7.0
version: 0.7.0(typescript@5.8.2)(vue@3.5.16(typescript@5.8.2))
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
jiti:
specifier: ^2.4.2
version: 2.4.2
jsdom:
specifier: ^26.1.0
version: 26.1.0
npm-run-all2:
specifier: ^8.0.4
version: 8.0.4
typescript:
specifier: ~5.8.0
version: 5.8.2
vite:
specifier: ^6.2.3
version: 6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1)
vite-plugin-vue-devtools:
specifier: ^7.7.6
version: 7.7.6(rollup@4.37.0)(vite@6.2.3(@types/node@22.15.31)(jiti@2.4.2)(terser@5.34.1))(vue@3.5.16(typescript@5.8.2))
vitest:
specifier: ^3.2.3
version: 3.2.3(@types/node@22.15.31)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.34.1)
vue-tsc:
specifier: ^2.2.10
version: 2.2.10(typescript@5.8.2)
packages/eslint-config-standard:
dependencies:
'@stylistic/eslint-plugin':
specifier: ^4.4.1
version: 4.4.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
eslint-import-resolver-next:
specifier: ^0.4.3
version: 0.4.3
eslint-plugin-import-x:
specifier: ^4.15.2
version: 4.15.2(@typescript-eslint/utils@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.28.0(jiti@2.4.2))
eslint-plugin-n:
specifier: ^17.19.0
version: 17.19.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
eslint-plugin-promise:
specifier: ^7.2.1
version: 7.2.1(eslint@9.28.0(jiti@2.4.2))
eslint-plugin-vue:
specifier: ^9.28.0 || ^10.0.0
version: 10.0.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
globals:
specifier: ^16.2.0
version: 16.2.0
devDependencies:
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
packages/eslint-config-standard-with-typescript:
dependencies:
'@typescript-eslint/eslint-plugin':
specifier: ^8.34.0
version: 8.34.0(@typescript-eslint/parser@8.26.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
'@vue/eslint-config-standard':
specifier: workspace:^
version: link:../eslint-config-standard
'@vue/eslint-config-typescript':
specifier: ^14.2.0
version: 14.5.0(eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2))))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2)
eslint-import-resolver-next:
specifier: ^0.4.3
version: 0.4.3
eslint-import-resolver-typescript:
specifier: ^4.4.3
version: 4.4.3(eslint-plugin-import-x@4.15.2(@typescript-eslint/utils@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-import@2.31.0)(eslint@9.28.0(jiti@2.4.2))
eslint-plugin-import-x:
specifier: ^4.15.2
version: 4.15.2(@typescript-eslint/utils@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.28.0(jiti@2.4.2))
devDependencies:
eslint:
specifier: ^9.28.0
version: 9.28.0(jiti@2.4.2)
eslint-plugin-vue:
specifier: ^10.2.0
version: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.28.0(jiti@2.4.2)))
typescript:
specifier: ~5.8.0
version: 5.8.2
packages:
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@antfu/utils@0.7.10':
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
'@asamuzakjp/css-color@2.8.3':
resolution: {integrity: sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.26.5':
resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.27.2':
resolution: {integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.10':
resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.27.1':
resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.26.10':
resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.27.1':
resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.27.1':
resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.26.5':
resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.25.9':
resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-class-features-plugin@7.27.1':
resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-member-expression-to-functions@7.25.9':
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.27.1':
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-module-transforms@7.27.1':
resolution: {integrity: sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.25.9':
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-optimise-call-expression@7.27.1':
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.26.5':
resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.27.1':
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
'@babel/helper-replace-supers@7.26.5':
resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.27.1':
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.26.10':
resolution: {integrity: sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.27.1':
resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.10':
resolution: {integrity: sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/parser@7.27.2':
resolution: {integrity: sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-proposal-decorators@7.25.9':
resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-decorators@7.25.9':
resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-attributes@7.26.0':
resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-jsx@7.25.9':
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.25.9':
resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.27.1':
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-typescript@7.26.8':
resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-typescript@7.27.1':
resolution: {integrity: sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/template@7.26.9':
resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.26.10':
resolution: {integrity: sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.27.1':
resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==}
engines: {node: '>=6.9.0'}
'@babel/types@7.26.10':
resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.27.1':
resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
engines: {node: '>=6.9.0'}
'@changesets/apply-release-plan@7.0.12':
resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==}
'@changesets/assemble-release-plan@6.0.8':
resolution: {integrity: sha512-y8+8LvZCkKJdbUlpXFuqcavpzJR80PN0OIfn8HZdwK7Sh6MgLXm4hKY5vu6/NDoKp8lAlM4ERZCqRMLxP4m+MQ==}
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
'@changesets/changelog-github@0.5.1':
resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==}
'@changesets/cli@2.29.4':
resolution: {integrity: sha512-VW30x9oiFp/un/80+5jLeWgEU6Btj8IqOgI+X/zAYu4usVOWXjPIK5jSSlt5jsCU7/6Z7AxEkarxBxGUqkAmNg==}
hasBin: true
'@changesets/config@3.1.1':
resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
'@changesets/get-dependents-graph@2.1.3':
resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
'@changesets/get-github-info@0.6.0':
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
'@changesets/get-release-plan@4.0.12':
resolution: {integrity: sha512-KukdEgaafnyGryUwpHG2kZ7xJquOmWWWk5mmoeQaSvZTWH1DC5D/Sw6ClgGFYtQnOMSQhgoEbDxAbpIIayKH1g==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
'@changesets/git@3.0.4':
resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==}
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
'@changesets/parse@0.4.1':
resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
'@changesets/pre@2.0.2':
resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
'@changesets/read@0.6.5':
resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==}
'@changesets/should-skip-package@0.1.2':
resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
'@changesets/types@6.1.0':
resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
'@csstools/color-helpers@5.0.1':
resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==}
engines: {node: '>=18'}
'@csstools/css-calc@2.1.1':
resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-color-parser@3.0.7':
resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-parser-algorithms@3.0.4':
resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-tokenizer': ^3.0.3
'@csstools/css-tokenizer@3.0.3':
resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
'@emnapi/core@1.3.1':
resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
'@emnapi/core@1.4.3':