-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
2579 lines (2319 loc) · 87.2 KB
/
yarn.lock
File metadata and controls
2579 lines (2319 loc) · 87.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@algolia/abtesting@npm:1.1.0":
version: 1.1.0
resolution: "@algolia/abtesting@npm:1.1.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/0531541f10ab45deffd74188c481f61faf959c2b8293249798d9d47fe76ab53627f8a135c49770bbdde1234057d1a9385a5df5b74b20295ba494002877fed073
languageName: node
linkType: hard
"@algolia/autocomplete-core@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-core@npm:1.17.7"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.17.7"
"@algolia/autocomplete-shared": "npm:1.17.7"
checksum: 10c0/603e0f0157eed71a8fabfba2d14ca846e399dc4e10bc300eb2f018529f9ac68f689193f582b6e97828e01bb150c045bb7d251aa40950a058a191dc560895ed98
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.17.7"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.7"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10c0/4f0f6b87ca76ea2fb45bfaa8a14c206d5bead60962b80bad10fd26928a37835d61a7420cbfd07cc2f1eb027b23b2e14f5796acfc35a74a9f51653367ee95e506
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-preset-algolia@npm:1.17.7"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.7"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/eb20746cbba532f8ade62fb48b7d2b6e9b2e0b5acc33bc80071630d3da724d78242de9c06cf838bef402ce2a912e86ab018bd2f6728ecb0f981a22c65bbbb2cb
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.17.7":
version: 1.17.7
resolution: "@algolia/autocomplete-shared@npm:1.17.7"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/9eb0c3ab57c7bae5b9c1d4c5c58dfdab56d1f4591f7488bd3d1dfd372eb8fa03416c97e247a3fcd581cda075eaea8b973dcfa306a8085c67d71f14513e3f5c5b
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/client-abtesting@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/3f06a1c2433602355c4463a14a961ae3bef9e7baeeb72d8deea9d19059c08d4c639e24c0450de508a5a82d3904835a178925058a16675e671512f03e2d0d7625
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/client-analytics@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/1e771cdeb5044ff8346e944f4da317a77e939047916dad03790a820540e194f28ccdcb1c790b998388696b3d1ac9e48aa2deb1532f096831891c5c0d5010eb89
languageName: node
linkType: hard
"@algolia/client-common@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/client-common@npm:5.35.0"
checksum: 10c0/c2d614260e5961e96f7de428b748af8ea3041c8530064b1926f35063c4c88e3ee0769537c35f130ff94eb701927cc72f3ccfdd8a5a8513a87ed528fec7fdb79c
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/client-insights@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/c3b146a433500c73148bba58ab2abef0bca9bce08cf15446e8b6143fdf884dafeba6fe86b9ab77337cce91c70f7ef4cc4ffee87736b96a30bad92a53897bfaa7
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/client-personalization@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/0cecdca5bec6bf059c4569c66b6ecec3d556825b6767d54254b46333a6e8a2aeacff49a08aefc9490d3f5cc4fefb54200f3945117964a23f7a7bbfd2c7993fac
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/client-query-suggestions@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/dd0f2a1e41f9203cfbdaa301346c6a363d1da3016b625439453435363bb0f7c14fed49480ae0a2e013131a6632a6d8c1749b0223336f1642a1f26b214ce3c0f7
languageName: node
linkType: hard
"@algolia/client-search@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/client-search@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/a9e52b4f21822f723fad21647056439737d956eb9bd70f541fcbdf96ad5ef60ac0782ed1801af9d3671444bfef95dd74133f3d8846a600bcb387dc8f1b910da6
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.35.0":
version: 1.35.0
resolution: "@algolia/ingestion@npm:1.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/342b9adea87d01a5f29168c16365e5ae0cade177b0749042cda29a64eaaacb2086957bbf70c40ad49a361436d744ca585937f27ebfd1edf12c62ec091c5111bb
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.35.0":
version: 1.35.0
resolution: "@algolia/monitoring@npm:1.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/2bbad1df73421c7bb77efcaab82c83a2bec919e8d843b638640a6c6294fb8b35ad617ec79cc422636125f8365268bd8071e0dbd15455130fec15c9d920de02db
languageName: node
linkType: hard
"@algolia/recommend@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/recommend@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
"@algolia/requester-browser-xhr": "npm:5.35.0"
"@algolia/requester-fetch": "npm:5.35.0"
"@algolia/requester-node-http": "npm:5.35.0"
checksum: 10c0/fa81ef425b9f2c63cfda584372d073b7ced020d0b13e3ced2ea0d992562bb642f7b2bab91844dc91bc4dacc260de437a595242704690fff74f1eceb211356293
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/requester-browser-xhr@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
checksum: 10c0/59061fe14c641714136bedec90d54f5146ccc11c576687bbe800b42c1aff26e7106d76d367b3c58edc2e6a14efd22d1f3c3e2417c6734e35c27042c937476830
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/requester-fetch@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
checksum: 10c0/45c654f1b5746503b268cf5b1959c81943aea2d0fd78e7a028bfa134bbc2b7e2264ab25fa7429eef1ffa4e347030314577d3b5e92e405326d06ae44813786d4d
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.35.0":
version: 5.35.0
resolution: "@algolia/requester-node-http@npm:5.35.0"
dependencies:
"@algolia/client-common": "npm:5.35.0"
checksum: 10c0/c33fbeb38ea48660f61c028074bb37c226d50b1cb853938dbc9bcf8e1144930438764d9ea009d1c98da511c1bd2663f363ee27a21f8aea83510525a0ae5a8a6b
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-identifier@npm:7.27.1"
checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84
languageName: node
linkType: hard
"@babel/parser@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/parser@npm:7.28.0"
dependencies:
"@babel/types": "npm:^7.28.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/c2ef81d598990fa949d1d388429df327420357cb5200271d0d0a2784f1e6d54afc8301eb8bdf96d8f6c77781e402da93c7dc07980fcc136ac5b9d5f1fce701b5
languageName: node
linkType: hard
"@babel/types@npm:^7.28.0":
version: 7.28.2
resolution: "@babel/types@npm:7.28.2"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
checksum: 10c0/24b11c9368e7e2c291fe3c1bcd1ed66f6593a3975f479cbb9dd7b8c8d8eab8a962b0d2fca616c043396ce82500ac7d23d594fbbbd013828182c01596370a0b10
languageName: node
linkType: hard
"@docsearch/css@npm:3.8.2":
version: 3.8.2
resolution: "@docsearch/css@npm:3.8.2"
checksum: 10c0/32f86b7b344834885a4a0b1a317d3fb568bafb2ceab5b4733c2d99ebd13d85899035fcb2680c940876c96d0d9f7b5db84b5be3a4d5ca41f0807775cc31991cff
languageName: node
linkType: hard
"@docsearch/js@npm:3.8.2":
version: 3.8.2
resolution: "@docsearch/js@npm:3.8.2"
dependencies:
"@docsearch/react": "npm:3.8.2"
preact: "npm:^10.0.0"
checksum: 10c0/8e3f9c91287f7b7f258d41fbffc5c5c567e2554dcd8127566a771c05112efcf69b99bb6ad14e86ce4f8e506218e5ddb377f94d9a2d336e648b66a18a650c9df2
languageName: node
linkType: hard
"@docsearch/react@npm:3.8.2":
version: 3.8.2
resolution: "@docsearch/react@npm:3.8.2"
dependencies:
"@algolia/autocomplete-core": "npm:1.17.7"
"@algolia/autocomplete-preset-algolia": "npm:1.17.7"
"@docsearch/css": "npm:3.8.2"
algoliasearch: "npm:^5.14.2"
peerDependencies:
"@types/react": ">= 16.8.0 < 19.0.0"
react: ">= 16.8.0 < 19.0.0"
react-dom: ">= 16.8.0 < 19.0.0"
search-insights: ">= 1 < 3"
peerDependenciesMeta:
"@types/react":
optional: true
react:
optional: true
react-dom:
optional: true
search-insights:
optional: true
checksum: 10c0/f54916d478abb2e8b797ad19b4c549c162aa04a9cdc8eca5e92d31722404ddafa64669922008bd1e723ea9d2cd8f3eee7f8ed22c224118ae961640503bd90be1
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/aix-ppc64@npm:0.21.5"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm64@npm:0.21.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm@npm:0.21.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-x64@npm:0.21.5"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-arm64@npm:0.21.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-x64@npm:0.21.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-arm64@npm:0.21.5"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-x64@npm:0.21.5"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm64@npm:0.21.5"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm@npm:0.21.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ia32@npm:0.21.5"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-loong64@npm:0.21.5"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-mips64el@npm:0.21.5"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ppc64@npm:0.21.5"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-riscv64@npm:0.21.5"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-s390x@npm:0.21.5"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-x64@npm:0.21.5"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/netbsd-x64@npm:0.21.5"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/openbsd-x64@npm:0.21.5"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/sunos-x64@npm:0.21.5"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-arm64@npm:0.21.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-ia32@npm:0.21.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-x64@npm:0.21.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@iconify-json/simple-icons@npm:^1.2.21":
version: 1.2.47
resolution: "@iconify-json/simple-icons@npm:1.2.47"
dependencies:
"@iconify/types": "npm:*"
checksum: 10c0/bb7bb4e8f1cfd233bb1afd6da4c0e1795524f56ecba5f1ecedbe9ab6d22d4b8f111e5d7c1ca39662e191d9f62719081ca0b9ec60d8b6c9764b53a8eec82f3888
languageName: node
linkType: hard
"@iconify/types@npm:*":
version: 2.0.0
resolution: "@iconify/types@npm:2.0.0"
checksum: 10c0/65a3be43500c7ccacf360e136d00e1717f050b7b91da644e94370256ac66f582d59212bdb30d00788aab4fc078262e91c95b805d1808d654b72f6d2072a7e4b2
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
"@npmcli/agent@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/agent@npm:3.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271
languageName: node
linkType: hard
"@npmcli/fs@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/fs@npm:4.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@rollup/rollup-android-arm-eabi@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-android-arm-eabi@npm:4.46.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@rollup/rollup-android-arm64@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-android-arm64@npm:4.46.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-arm64@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-darwin-arm64@npm:4.46.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-x64@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-darwin-x64@npm:4.46.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@rollup/rollup-freebsd-arm64@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-freebsd-arm64@npm:4.46.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-freebsd-x64@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-freebsd-x64@npm:4.46.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@rollup/rollup-linux-arm-gnueabihf@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.46.2"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-arm-musleabihf@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.46.2"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-linux-arm64-gnu@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.46.2"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-arm64-musl@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.46.2"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-linux-loongarch64-gnu@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.46.2"
conditions: os=linux & cpu=loong64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-ppc64-gnu@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.46.2"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-riscv64-gnu@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.46.2"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-riscv64-musl@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.46.2"
conditions: os=linux & cpu=riscv64 & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-linux-s390x-gnu@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.46.2"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-x64-gnu@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.46.2"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-x64-musl@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-linux-x64-musl@npm:4.46.2"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-win32-arm64-msvc@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.46.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-win32-ia32-msvc@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.46.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@rollup/rollup-win32-x64-msvc@npm:4.46.2":
version: 4.46.2
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.46.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@shikijs/core@npm:2.5.0, @shikijs/core@npm:^2.1.0":
version: 2.5.0
resolution: "@shikijs/core@npm:2.5.0"
dependencies:
"@shikijs/engine-javascript": "npm:2.5.0"
"@shikijs/engine-oniguruma": "npm:2.5.0"
"@shikijs/types": "npm:2.5.0"
"@shikijs/vscode-textmate": "npm:^10.0.2"
"@types/hast": "npm:^3.0.4"
hast-util-to-html: "npm:^9.0.4"
checksum: 10c0/8851e1db14cf09ec4c6a9ad656d67b807a53e27d0face69a234ad810b3e8198e3fa19a32e9f062a49fd000487c88d8096675bb8fbfaecc64dc99125694f2d7e1
languageName: node
linkType: hard
"@shikijs/engine-javascript@npm:2.5.0":
version: 2.5.0
resolution: "@shikijs/engine-javascript@npm:2.5.0"
dependencies:
"@shikijs/types": "npm:2.5.0"
"@shikijs/vscode-textmate": "npm:^10.0.2"
oniguruma-to-es: "npm:^3.1.0"
checksum: 10c0/5cc43e7e0c25eb3c56e0ce48ea55e4c8f09e235e4148f5c852febcd0569f74b6e3c91887d2e5bb079821fb2f13412e551d20491b516e2ad7ae675b613a727093
languageName: node
linkType: hard
"@shikijs/engine-oniguruma@npm:2.5.0":
version: 2.5.0
resolution: "@shikijs/engine-oniguruma@npm:2.5.0"
dependencies:
"@shikijs/types": "npm:2.5.0"
"@shikijs/vscode-textmate": "npm:^10.0.2"
checksum: 10c0/7c1ae4cf0196b51b8a1da9496ca2ba5fbd9d1765629e312922804507b07d794208ff6562ece555518c641c99f190ec2c22202edddd5d78c7983a163677883dfe
languageName: node
linkType: hard
"@shikijs/langs@npm:2.5.0":
version: 2.5.0
resolution: "@shikijs/langs@npm:2.5.0"
dependencies:
"@shikijs/types": "npm:2.5.0"
checksum: 10c0/bf8007f33aa9e8d5009054e9ab00fa608605bd203090bd3a648316cb632a63b6b99009a674198f386bb0647e1ce8f0d91adac3324999a8697eb6eafc12a6f0ed
languageName: node
linkType: hard
"@shikijs/themes@npm:2.5.0":
version: 2.5.0
resolution: "@shikijs/themes@npm:2.5.0"
dependencies:
"@shikijs/types": "npm:2.5.0"
checksum: 10c0/73e38847138a2cb4a034af15279f30f4637a4f95217cb1d4212ea708f00cb68cb6c9ed0067a41c4d67b1b6a4cec1f71034aae22c2626a24629f2e13f7363428d
languageName: node
linkType: hard
"@shikijs/transformers@npm:^2.1.0":
version: 2.5.0
resolution: "@shikijs/transformers@npm:2.5.0"
dependencies:
"@shikijs/core": "npm:2.5.0"
"@shikijs/types": "npm:2.5.0"
checksum: 10c0/2a9c91215ed14182ef4cdc248ee490cef56bc220a0dd50e551be77a704c51360aea9104bdc4a25f6c54f999ebd4e1bc123075735e930daf3e2c82393373197a7
languageName: node
linkType: hard
"@shikijs/types@npm:2.5.0, @shikijs/types@npm:^2.1.0":
version: 2.5.0
resolution: "@shikijs/types@npm:2.5.0"
dependencies:
"@shikijs/vscode-textmate": "npm:^10.0.2"
"@types/hast": "npm:^3.0.4"
checksum: 10c0/71e75351ac550d079d220235d40d4aff7f81c2ac8cd7d846cf16cd10db4d59bee982e097d87b4709a8ef5993add96a6841a0f6a42caebc300cfbe83191028f5d
languageName: node
linkType: hard
"@shikijs/vscode-textmate@npm:^10.0.2":
version: 10.0.2
resolution: "@shikijs/vscode-textmate@npm:10.0.2"
checksum: 10c0/36b682d691088ec244de292dc8f91b808f95c89466af421cf84cbab92230f03c8348649c14b3251991b10ce632b0c715e416e992dd5f28ff3221dc2693fd9462
languageName: node
linkType: hard
"@types/estree@npm:1.0.8":
version: 1.0.8
resolution: "@types/estree@npm:1.0.8"
checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5
languageName: node
linkType: hard
"@types/hast@npm:^3.0.0, @types/hast@npm:^3.0.4":
version: 3.0.4
resolution: "@types/hast@npm:3.0.4"
dependencies:
"@types/unist": "npm:*"
checksum: 10c0/3249781a511b38f1d330fd1e3344eed3c4e7ea8eff82e835d35da78e637480d36fad37a78be5a7aed8465d237ad0446abc1150859d0fde395354ea634decf9f7
languageName: node
linkType: hard
"@types/linkify-it@npm:^5":
version: 5.0.0
resolution: "@types/linkify-it@npm:5.0.0"
checksum: 10c0/7bbbf45b9dde17bf3f184fee585aef0e7342f6954f0377a24e4ff42ab5a85d5b806aaa5c8d16e2faf2a6b87b2d94467a196b7d2b85c9c7de2f0eaac5487aaab8
languageName: node
linkType: hard
"@types/markdown-it@npm:^14.1.2":
version: 14.1.2
resolution: "@types/markdown-it@npm:14.1.2"
dependencies:
"@types/linkify-it": "npm:^5"
"@types/mdurl": "npm:^2"
checksum: 10c0/34f709f0476bd4e7b2ba7c3341072a6d532f1f4cb6f70aef371e403af8a08a7c372ba6907ac426bc618d356dab660c5b872791ff6c1ead80c483e0d639c6f127
languageName: node
linkType: hard
"@types/mdast@npm:^4.0.0":
version: 4.0.4
resolution: "@types/mdast@npm:4.0.4"
dependencies:
"@types/unist": "npm:*"
checksum: 10c0/84f403dbe582ee508fd9c7643ac781ad8597fcbfc9ccb8d4715a2c92e4545e5772cbd0dbdf18eda65789386d81b009967fdef01b24faf6640f817287f54d9c82
languageName: node
linkType: hard
"@types/mdurl@npm:^2":
version: 2.0.0
resolution: "@types/mdurl@npm:2.0.0"
checksum: 10c0/cde7bb571630ed1ceb3b92a28f7b59890bb38b8f34cd35326e2df43eebfc74985e6aa6fd4184e307393bad8a9e0783a519a3f9d13c8e03788c0f98e5ec869c5e
languageName: node
linkType: hard
"@types/unist@npm:*, @types/unist@npm:^3.0.0":
version: 3.0.3
resolution: "@types/unist@npm:3.0.3"
checksum: 10c0/2b1e4adcab78388e088fcc3c0ae8700f76619dbcb4741d7d201f87e2cb346bfc29a89003cfea2d76c996e1061452e14fcd737e8b25aacf949c1f2d6b2bc3dd60
languageName: node
linkType: hard
"@types/web-bluetooth@npm:^0.0.21":
version: 0.0.21
resolution: "@types/web-bluetooth@npm:0.0.21"
checksum: 10c0/5f47c5ec452ca31e6a9b44c8aaa54b66c4f57d4aca00166c45902a3883139580e14b254b774172ff982ba4458cc444b5aa59bb4573c2fd34562cfa599721f8e4
languageName: node
linkType: hard
"@ungap/structured-clone@npm:^1.0.0":
version: 1.3.0
resolution: "@ungap/structured-clone@npm:1.3.0"
checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a
languageName: node
linkType: hard
"@vitejs/plugin-vue@npm:^5.2.1":
version: 5.2.4
resolution: "@vitejs/plugin-vue@npm:5.2.4"
peerDependencies:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
checksum: 10c0/9559224f178daf35e3a665410d09089b0ce7c0402981f8757481c24c22f29df377f96cc6161d92f74d16c37c6e32ac19fea99086f75338ad6ceb9b5ee8375509
languageName: node
linkType: hard
"@vue/compiler-core@npm:3.5.18":
version: 3.5.18
resolution: "@vue/compiler-core@npm:3.5.18"
dependencies:
"@babel/parser": "npm:^7.28.0"
"@vue/shared": "npm:3.5.18"
entities: "npm:^4.5.0"
estree-walker: "npm:^2.0.2"
source-map-js: "npm:^1.2.1"
checksum: 10c0/943cd3736e981b451aa85ccc08d446844e1a2dbf193e630cef708995110f12c3b8c8e3b2c4581ee2e3ecf7ea2388574e2d5f68b4f11bcd01cc5bab6c9177b448
languageName: node
linkType: hard
"@vue/compiler-dom@npm:3.5.18":
version: 3.5.18
resolution: "@vue/compiler-dom@npm:3.5.18"
dependencies:
"@vue/compiler-core": "npm:3.5.18"
"@vue/shared": "npm:3.5.18"
checksum: 10c0/f7f3dec1fea33e8b46b34d71fa24a8608dba4bdab786d4114747ed0897816760450617951f7ea3f59380e5ecfaeb84d94dd1bfabed88792cc03476da91e6f7fd
languageName: node
linkType: hard
"@vue/compiler-sfc@npm:3.5.18":
version: 3.5.18
resolution: "@vue/compiler-sfc@npm:3.5.18"
dependencies:
"@babel/parser": "npm:^7.28.0"
"@vue/compiler-core": "npm:3.5.18"
"@vue/compiler-dom": "npm:3.5.18"
"@vue/compiler-ssr": "npm:3.5.18"
"@vue/shared": "npm:3.5.18"
estree-walker: "npm:^2.0.2"
magic-string: "npm:^0.30.17"
postcss: "npm:^8.5.6"
source-map-js: "npm:^1.2.1"
checksum: 10c0/24a6fd16156b7557c1737cf950c9718975d35c9e8f8f9b53a503558b76ff35b176f9e3ca606930f7535b334c8b790674c0dac94b39cbb86002542eca79aebaf8
languageName: node
linkType: hard
"@vue/compiler-ssr@npm:3.5.18":
version: 3.5.18
resolution: "@vue/compiler-ssr@npm:3.5.18"
dependencies:
"@vue/compiler-dom": "npm:3.5.18"
"@vue/shared": "npm:3.5.18"
checksum: 10c0/50fcddb83611545f58c9f9518e52484d0462b59177af9fa362fb5e9cf4bd6998e737b428bf46c3dd69ed2d097dccf2333b8bb0739084b2db2434e9ef1e03f488
languageName: node
linkType: hard
"@vue/devtools-api@npm:^7.7.0":
version: 7.7.7
resolution: "@vue/devtools-api@npm:7.7.7"
dependencies:
"@vue/devtools-kit": "npm:^7.7.7"
checksum: 10c0/9c7e754b706f54c5ace31520acb50bda398ff15eb4350b30e9dfb1c8c692094951e68ee1713c2833d79c393c53653987c65c11031a079ad391d84bf505b74264
languageName: node
linkType: hard
"@vue/devtools-kit@npm:^7.7.7":
version: 7.7.7
resolution: "@vue/devtools-kit@npm:7.7.7"
dependencies:
"@vue/devtools-shared": "npm:^7.7.7"
birpc: "npm:^2.3.0"
hookable: "npm:^5.5.3"
mitt: "npm:^3.0.1"
perfect-debounce: "npm:^1.0.0"
speakingurl: "npm:^14.0.1"
superjson: "npm:^2.2.2"
checksum: 10c0/78a6048af4b6b5f9c42ac2e415f3455792e20467ff9a96b3db02b6df108740e3f90c89bdf607f1bb44e13dd77ba007e6bc1f6ce44cb53b26286635a2706ecdcf
languageName: node
linkType: hard
"@vue/devtools-shared@npm:^7.7.7":
version: 7.7.7
resolution: "@vue/devtools-shared@npm:7.7.7"
dependencies:
rfdc: "npm:^1.4.1"
checksum: 10c0/f29df17a6f5e92f6c33477279e0a22cb986fc413504918b58cf7d9fb4d541ea9e3163a947cf63212dfc19dd30351abfe1de39a8907bfef446ed02f03c06a24c9
languageName: node
linkType: hard
"@vue/reactivity@npm:3.5.18":
version: 3.5.18
resolution: "@vue/reactivity@npm:3.5.18"
dependencies:
"@vue/shared": "npm:3.5.18"
checksum: 10c0/20500b1cf5865881ebd32a303b447bf7b4d841d7d42f891bc87bbee552087222032b87e7ee201921bf2683f06cb4b640ee912544bfd720bf4edc3aaa42581b85
languageName: node
linkType: hard
"@vue/runtime-core@npm:3.5.18":
version: 3.5.18
resolution: "@vue/runtime-core@npm:3.5.18"
dependencies:
"@vue/reactivity": "npm:3.5.18"
"@vue/shared": "npm:3.5.18"
checksum: 10c0/e8a3145231d912241d52a4617974bd965891816bc3614c33de3fa30bbd9aa5f163967e1cae62e51a6f1b6f2b32daf0e8875c0bbcccdafa16992a6ae8398c8253
languageName: node
linkType: hard
"@vue/runtime-dom@npm:3.5.18":
version: 3.5.18
resolution: "@vue/runtime-dom@npm:3.5.18"
dependencies:
"@vue/reactivity": "npm:3.5.18"
"@vue/runtime-core": "npm:3.5.18"
"@vue/shared": "npm:3.5.18"
csstype: "npm:^3.1.3"
checksum: 10c0/341ff810f72872e4d6d7c44f67da0d3a8f450f895d577b5f38fff165db2e724ca94280868cb75bef09af8508f2dfbd39f0fdbcbd254636b878f25dd0503489aa
languageName: node
linkType: hard
"@vue/server-renderer@npm:3.5.18":
version: 3.5.18
resolution: "@vue/server-renderer@npm:3.5.18"
dependencies:
"@vue/compiler-ssr": "npm:3.5.18"
"@vue/shared": "npm:3.5.18"
peerDependencies:
vue: 3.5.18
checksum: 10c0/d8fb82f9f8e8940053279b555d324c1cd119b9702552c4701a00b794b47cccb2c0fd6ae99869bc7f84ead1a207b7872101bf3810991dbddd6c3c5c8f5581d7f0
languageName: node
linkType: hard
"@vue/shared@npm:3.5.18, @vue/shared@npm:^3.5.13":
version: 3.5.18
resolution: "@vue/shared@npm:3.5.18"
checksum: 10c0/9764e31bfcd13a2f5369554d0abbfd06e391d72b0065b4cbd36be94ffdd4d845b2d38a37d56b35714c7a2100c512c9b74de2fa1a19ee2e920ecf098d9035518d
languageName: node
linkType: hard
"@vueuse/core@npm:12.8.2, @vueuse/core@npm:^12.4.0":
version: 12.8.2
resolution: "@vueuse/core@npm:12.8.2"
dependencies:
"@types/web-bluetooth": "npm:^0.0.21"
"@vueuse/metadata": "npm:12.8.2"
"@vueuse/shared": "npm:12.8.2"
vue: "npm:^3.5.13"
checksum: 10c0/79c74c7daa471bbf6d51bf83d3750105074d83f6628fcdf41828e9f87977de4a4744968f48ad2d13597e758baf1a0aa5fe4f348dbecf093c9437bd8fd9937b73
languageName: node
linkType: hard
"@vueuse/integrations@npm:^12.4.0":
version: 12.8.2
resolution: "@vueuse/integrations@npm:12.8.2"
dependencies:
"@vueuse/core": "npm:12.8.2"
"@vueuse/shared": "npm:12.8.2"
vue: "npm:^3.5.13"
peerDependencies:
async-validator: ^4
axios: ^1
change-case: ^5
drauu: ^0.4
focus-trap: ^7
fuse.js: ^7
idb-keyval: ^6
jwt-decode: ^4
nprogress: ^0.2
qrcode: ^1.5
sortablejs: ^1
universal-cookie: ^7
peerDependenciesMeta:
async-validator:
optional: true
axios:
optional: true
change-case:
optional: true
drauu:
optional: true
focus-trap:
optional: true
fuse.js:
optional: true
idb-keyval:
optional: true
jwt-decode:
optional: true