-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
7832 lines (7064 loc) · 270 KB
/
yarn.lock
File metadata and controls
7832 lines (7064 loc) · 270 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/autocomplete-core@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-core@npm:1.17.9"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.17.9"
"@algolia/autocomplete-shared": "npm:1.17.9"
checksum: 10c0/e1111769a8723b9dd45fc38cd7edc535c86c1f908b84b5fdc5de06ba6b8c7aca14e5f52ebce84fa5f7adf857332e396b93b7e7933b157b2c9aefc0a19d9574ab
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.17.9"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.9"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10c0/05c21502631643abdcd6e9f70b5814a60d34bad59bca501e26e030fd72e689be5cecfb6e8939a0a1bdcb2394591e55e26a42a82c7247528eafeff714db0819a4
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-preset-algolia@npm:1.17.9"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.9"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/99159c7e02a927d0d96717cb4cfd2f8dbc4da73267a8eae4f83af5bf74087089f6e7dbffd316512e713a4cc534e936b6a7ccb5c4a5ff84b4bf73f2d3cc050e79
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-shared@npm:1.17.9"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/b318281aecdaae09171b47ee4f7bc66b613852cad4506e9d6278fff35ba68a12dd9cce2d90b5f4c3ba0e3d7d780583cbe46b22275260e41bbf09fb01e4a18f49
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/client-abtesting@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/9c374efbb79d9ec322f92618d70183aad90f1e386e8df2f82c776af7011f2ddc0feafdb1639edfd40a4a12394e44f442016bca2e125a20d52e6227d7fbb23646
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/client-analytics@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/c3cc9b0eea8af6f22a4598decd1be9d3df3f4aabc7301abed38e7f3dec078827b69de38893e93c0cc2c1d0d07af03d536577c967270cb5328aeb9af2ee8eb807
languageName: node
linkType: hard
"@algolia/client-common@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/client-common@npm:5.20.0"
checksum: 10c0/c1288c7a3f3366c48b31a4810223d9ca17878a9da656f89dda5e8348e3ec5dc82d538bfd6ad8c203e1aa28d191ef93b10cdad90ad3a96dddd7772ffc4f26ad4e
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/client-insights@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/79a4353464ce1480b446a704c2bf95db33911fce1c6975dea26bfd2cf68ca50dfaf6e5643fc11dfda8b2d3f4a7e921a615372ce61b4b781fff8c961b96a0f992
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/client-personalization@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/c7fbea1e3f7023c8687f21da25421187478440a16816ffaf3c0191b922ebfba23122d145cc270860f5e5a2f90157db8f0579330c2652a41280e907cd1c50c016
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/client-query-suggestions@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/ffaadf1b1df25fe2006daafd4d5cef97897b17a944d4263df8ff892195f5ba9fb4cf51c33f6672c41d1fe593e2ed032fa28f586dc6a14abcec64c77ce3f38b63
languageName: node
linkType: hard
"@algolia/client-search@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/client-search@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/2d62718f3b054a3dbee6f4b07a51eef5102c41b336e7d7768afe26889dc1852b92c0f9c747d1b44a9b921eb8daef7dfe2b2087f44a3177d21fe7d7080c83f9fe
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.20.0":
version: 1.20.0
resolution: "@algolia/ingestion@npm:1.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/be77d56c378e9196c817b66afd922a4a812d4cb0fa0f8b7c09c8eca219f1262212e02f948d54e5ae460aea2a08dcc67f1968a1fcfdf18a1f0fd5267e8b1881d9
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.20.0":
version: 1.20.0
resolution: "@algolia/monitoring@npm:1.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/0b2f9d899e2662fe0e6eb0c45fb3cc46c546951603f1ea52f9adc8d2dd4296f7010e93b2b2e0b94c1f51a2e1edc887eeb054db76c6b6f417fa123d4f1c674bdd
languageName: node
linkType: hard
"@algolia/recommend@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/recommend@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
"@algolia/requester-browser-xhr": "npm:5.20.0"
"@algolia/requester-fetch": "npm:5.20.0"
"@algolia/requester-node-http": "npm:5.20.0"
checksum: 10c0/ce62228b630864ed0faf78c0f3b5fbca5ef38e9c07ec6e492d7d36b948418ec87b82869d78740c980f5d0bbfbff37f15f394bfffd0571fdfb8a0973915b200cb
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/requester-browser-xhr@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
checksum: 10c0/80ae38016d682404468c8c8f3765fef468dc9f83095366f8531f48982400c1e2d7c55f95b331c23d44563cbf38afcf71c29a59c65dee5ca503a6b2a8386b2eea
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/requester-fetch@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
checksum: 10c0/8d9118088a39be10ba362fd37963c41a62dfe480ef42dfa17a32438c1278041074be12d2c459de0c0a1575452f64edb64856e8f47a4bba9b732cf1fe60ad0f92
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.20.0":
version: 5.20.0
resolution: "@algolia/requester-node-http@npm:5.20.0"
dependencies:
"@algolia/client-common": "npm:5.20.0"
checksum: 10c0/f1e2277c675d866e143ddb4c5b2eae69cd8af62194489e802cae25152854afdad03d2ce59d354b6a57952857b460962a65909ed5dfd4164db833690dbedcf7c7
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^1.0.0":
version: 1.0.0
resolution: "@antfu/install-pkg@npm:1.0.0"
dependencies:
package-manager-detector: "npm:^0.2.8"
tinyexec: "npm:^0.3.2"
checksum: 10c0/2361383f9aef51f39e96d0276eb266f01d1cabd4881bba6db2e3dff392ac33b537fcb18a07c66ecd315b808b9a70dc48a95e53531d407b2e1956f49f3b6c5b5b
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^1.1.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: "npm:^1.3.0"
tinyexec: "npm:^1.0.1"
checksum: 10c0/140d5994c76fd3d0e824c88f1ce91b3370e8066a8bc2f5729ae133bf768caa239f7915e29c78f239b7ead253113ace51293e95127fafe2b786b88eb615b3be47
languageName: node
linkType: hard
"@antfu/utils@npm:^8.1.0":
version: 8.1.1
resolution: "@antfu/utils@npm:8.1.1"
checksum: 10c0/cd55d322496f0324323a7bd312bbdc305db02f5c74c53d59213a00a7ecfd66926b6755a41f27c6e664a687cd7a967d3a8b12d3ea57f264ae45dd1c5c181f5160
languageName: node
linkType: hard
"@antfu/utils@npm:^9.2.0":
version: 9.2.0
resolution: "@antfu/utils@npm:9.2.0"
checksum: 10c0/c622bd64985abee4324ddc80e11312b6e8154d648f7e80b2e0010276ca527b723ab25df4013cba344b2cd606960e42e05186013c6af79ef724ccb59acba9b893
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: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6
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.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
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.25.3":
version: 7.26.7
resolution: "@babel/parser@npm:7.26.7"
dependencies:
"@babel/types": "npm:^7.26.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/dcb08a4f2878ece33caffefe43b71488d753324bae7ca58d64bca3bc4af34dcfa1b58abdf9972516d76af760fceb25bb9294ca33461d56b31c5059ccfe32001f
languageName: node
linkType: hard
"@babel/parser@npm:^7.28.3":
version: 7.28.4
resolution: "@babel/parser@npm:7.28.4"
dependencies:
"@babel/types": "npm:^7.28.4"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/58b239a5b1477ac7ed7e29d86d675cc81075ca055424eba6485872626db2dc556ce63c45043e5a679cd925e999471dba8a3ed4864e7ab1dbf64306ab72c52707
languageName: node
linkType: hard
"@babel/types@npm:^7.26.7":
version: 7.26.7
resolution: "@babel/types@npm:7.26.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
checksum: 10c0/7810a2bca97b13c253f07a0863a628d33dbe76ee3c163367f24be93bfaf4c8c0a325f73208abaaa050a6b36059efc2950c2e4b71fb109c0f07fa62221d8473d4
languageName: node
linkType: hard
"@babel/types@npm:^7.28.4":
version: 7.28.4
resolution: "@babel/types@npm:7.28.4"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
checksum: 10c0/ac6f909d6191319e08c80efbfac7bd9a25f80cc83b43cd6d82e7233f7a6b9d6e7b90236f3af7400a3f83b576895bcab9188a22b584eb0f224e80e6d4e95f4517
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^7.0.1":
version: 7.1.1
resolution: "@braintree/sanitize-url@npm:7.1.1"
checksum: 10c0/fdfc1759c4244e287693ce1e9d42d649423e7c203fdccf27a571f8951ddfe34baa5273b7e6a8dd3007d7676859c7a0a9819be0ab42a3505f8505ad0eefecf7c1
languageName: node
linkType: hard
"@chevrotain/cst-dts-gen@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/cst-dts-gen@npm:11.0.3"
dependencies:
"@chevrotain/gast": "npm:11.0.3"
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10c0/9e945a0611386e4e08af34c2d0b3af36c1af08f726b58145f11310f2aeafcb2d65264c06ec65a32df6b6a65771e6a55be70580c853afe3ceb51487e506967104
languageName: node
linkType: hard
"@chevrotain/gast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/gast@npm:11.0.3"
dependencies:
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10c0/54fc44d7b4a7b0323f49d957dd88ad44504922d30cb226d93b430b0e09925efe44e0726068581d777f423fabfb878a2238ed2c87b690c0c0014ebd12b6968354
languageName: node
linkType: hard
"@chevrotain/regexp-to-ast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/regexp-to-ast@npm:11.0.3"
checksum: 10c0/6939c5c94fbfb8c559a4a37a283af5ded8e6147b184a7d7bcf5ad1404d9d663c78d81602bd8ea8458ec497358a9e1671541099c511835d0be2cad46f00c62b3f
languageName: node
linkType: hard
"@chevrotain/types@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/types@npm:11.0.3"
checksum: 10c0/72fe8f0010ebef848e47faea14a88c6fdc3cdbafaef6b13df4a18c7d33249b1b675e37b05cb90a421700c7016dae7cd4187ab6b549e176a81cea434f69cd2503
languageName: node
linkType: hard
"@chevrotain/utils@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/utils@npm:11.0.3"
checksum: 10c0/b31972d1b2d444eef1499cf9b7576fc1793e8544910de33a3c18e07c270cfad88067f175d0ee63e7bc604713ebed647f8190db45cc8311852cd2d4fe2ef14068
languageName: node
linkType: hard
"@docsearch/css@npm:3.9.0, @docsearch/css@npm:^3.9.0":
version: 3.9.0
resolution: "@docsearch/css@npm:3.9.0"
checksum: 10c0/6300551e1cab7a5487063ec3581ae78ddaee3d93ec799556b451054448559b3ba849751b825fbd8b678367ef944bd82b3f11bc1d9e74e08e3cc48db40487b396
languageName: node
linkType: hard
"@docsearch/js@npm:^3.9.0":
version: 3.9.0
resolution: "@docsearch/js@npm:3.9.0"
dependencies:
"@docsearch/react": "npm:3.9.0"
preact: "npm:^10.0.0"
checksum: 10c0/f96b9d452c87ada7ff368138442da96b8daa33f4edd956ed14209d284e267eb546ad20a85fa6f70352fc4bf530293635978329ca12a40aacf4e2d0595e91d61e
languageName: node
linkType: hard
"@docsearch/react@npm:3.9.0, @docsearch/react@npm:^3.9.0":
version: 3.9.0
resolution: "@docsearch/react@npm:3.9.0"
dependencies:
"@algolia/autocomplete-core": "npm:1.17.9"
"@algolia/autocomplete-preset-algolia": "npm:1.17.9"
"@docsearch/css": "npm:3.9.0"
algoliasearch: "npm:^5.14.2"
peerDependencies:
"@types/react": ">= 16.8.0 < 20.0.0"
react: ">= 16.8.0 < 20.0.0"
react-dom: ">= 16.8.0 < 20.0.0"
search-insights: ">= 1 < 3"
peerDependenciesMeta:
"@types/react":
optional: true
react:
optional: true
react-dom:
optional: true
search-insights:
optional: true
checksum: 10c0/5e737a5d9ef1daae1cd93e89870214c1ab0c36a3a2193e898db044bcc5d9de59f85228b2360ec0e8f10cdac7fd2fe3c6ec8a05d943ee7e17d6c1cef2e6e9ff2d
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/aix-ppc64@npm:0.25.9"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/android-arm64@npm:0.25.9"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/android-arm@npm:0.25.9"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/android-x64@npm:0.25.9"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/darwin-arm64@npm:0.25.9"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/darwin-x64@npm:0.25.9"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/freebsd-arm64@npm:0.25.9"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/freebsd-x64@npm:0.25.9"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-arm64@npm:0.25.9"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-arm@npm:0.25.9"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-ia32@npm:0.25.9"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-loong64@npm:0.25.9"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-mips64el@npm:0.25.9"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-ppc64@npm:0.25.9"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-riscv64@npm:0.25.9"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-s390x@npm:0.25.9"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-x64@npm:0.25.9"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/netbsd-arm64@npm:0.25.9"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/netbsd-x64@npm:0.25.9"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/openbsd-arm64@npm:0.25.9"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/openbsd-x64@npm:0.25.9"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/openharmony-arm64@npm:0.25.9"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/sunos-x64@npm:0.25.9"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/win32-arm64@npm:0.25.9"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/win32-ia32@npm:0.25.9"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/win32-x64@npm:0.25.9"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@floating-ui/core@npm:^1.1.0":
version: 1.7.3
resolution: "@floating-ui/core@npm:1.7.3"
dependencies:
"@floating-ui/utils": "npm:^0.2.10"
checksum: 10c0/edfc23800122d81df0df0fb780b7328ae6c5f00efbb55bd48ea340f4af8c5b3b121ceb4bb81220966ab0f87b443204d37105abdd93d94846468be3243984144c
languageName: node
linkType: hard
"@floating-ui/dom@npm:~1.1.1":
version: 1.1.1
resolution: "@floating-ui/dom@npm:1.1.1"
dependencies:
"@floating-ui/core": "npm:^1.1.0"
checksum: 10c0/2e508c834fed7567fc496ee946d092056487958330fd5260768536282eb19e990087ddbfe60a39cfe7ed87f8ec0741cc11fa33505c478238d78515a27dd69b6d
languageName: node
linkType: hard
"@floating-ui/utils@npm:^0.2.10":
version: 0.2.10
resolution: "@floating-ui/utils@npm:0.2.10"
checksum: 10c0/e9bc2a1730ede1ee25843937e911ab6e846a733a4488623cd353f94721b05ec2c9ec6437613a2ac9379a94c2fd40c797a2ba6fa1df2716f5ce4aa6ddb1cf9ea4
languageName: node
linkType: hard
"@iconify/types@npm:^2.0.0":
version: 2.0.0
resolution: "@iconify/types@npm:2.0.0"
checksum: 10c0/65a3be43500c7ccacf360e136d00e1717f050b7b91da644e94370256ac66f582d59212bdb30d00788aab4fc078262e91c95b805d1808d654b72f6d2072a7e4b2
languageName: node
linkType: hard
"@iconify/utils@npm:^2.1.32":
version: 2.3.0
resolution: "@iconify/utils@npm:2.3.0"
dependencies:
"@antfu/install-pkg": "npm:^1.0.0"
"@antfu/utils": "npm:^8.1.0"
"@iconify/types": "npm:^2.0.0"
debug: "npm:^4.4.0"
globals: "npm:^15.14.0"
kolorist: "npm:^1.8.0"
local-pkg: "npm:^1.0.0"
mlly: "npm:^1.7.4"
checksum: 10c0/926013852cd9d09b8501ee0f3f7d40386dc5ed1cb904869d6502f5ee1a64aee5664e9c00da49d700528d26c4a51ea0cac4f046c4eb281d0f8d54fc5df2f3fd0d
languageName: node
linkType: hard
"@iconify/utils@npm:^3.0.1":
version: 3.0.1
resolution: "@iconify/utils@npm:3.0.1"
dependencies:
"@antfu/install-pkg": "npm:^1.1.0"
"@antfu/utils": "npm:^9.2.0"
"@iconify/types": "npm:^2.0.0"
debug: "npm:^4.4.1"
globals: "npm:^15.15.0"
kolorist: "npm:^1.8.0"
local-pkg: "npm:^1.1.1"
mlly: "npm:^1.7.4"
checksum: 10c0/50a6fa3d242d99dc43e83cf7c731875e13e87ba358cca0b6c71b5e865aa1dbeb3e0a3212bdafa75048b1bf2ec464c7a2d3ca8abe203adf1c1f574472d9173f53
languageName: node
linkType: hard
"@iconify/vue@npm:^5.0.0":
version: 5.0.0
resolution: "@iconify/vue@npm:5.0.0"
dependencies:
"@iconify/types": "npm:^2.0.0"
peerDependencies:
vue: ">=3"
checksum: 10c0/363133a77bf697c4cebda2af776ca6fce312d15742a5ed6a2114d79d032814b15f04bcc1cec51cee31256f1a62dc64b0dbbcfe4e341692cb2dca64f0561fa1c0
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/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/9a7d65fb13bd9aec1fbab74cda08496839b7e2ceb31f5ab922b323e94d7c481ce0fc4fd7e12e2610915ed8af51178bdc61e168e92a8c8b8303b030b03489b13b
languageName: node
linkType: hard
"@jridgewell/remapping@npm:^2.3.5":
version: 2.3.5
resolution: "@jridgewell/remapping@npm:2.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/3de494219ffeb2c5c38711d0d7bb128097edf91893090a2dbc8ee0b55d092bb7347b1fd0f478486c5eab010e855c73927b1666f2107516d472d24a73017d1194
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.5":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9
languageName: node
linkType: hard
"@lit-labs/ssr-dom-shim@npm:^1.2.0":
version: 1.3.0
resolution: "@lit-labs/ssr-dom-shim@npm:1.3.0"
checksum: 10c0/743a9b295ef2f186712f08883da553c9990be291409615309c99aa4946cfe440a184e4213c790c24505c80beb86b9cfecf10b5fb30ce17c83698f8424f48678d
languageName: node
linkType: hard
"@lit/reactive-element@npm:^2.0.4":
version: 2.0.4
resolution: "@lit/reactive-element@npm:2.0.4"
dependencies:
"@lit-labs/ssr-dom-shim": "npm:^1.2.0"
checksum: 10c0/359cc19ea9ee8b65e1417eb9c12f40dddba8f0a5ab32f0e5facaecee6060629e44eb4ca27d9af945fe6eda8c033aa636abaa5f0c4e6a529b224d78674acf47ba
languageName: node
linkType: hard
"@mdit-vue/plugin-component@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-component@npm:2.1.4"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/0d3f7bfe989bbe7e0ac61dc4e2441bd4b1912add6ca1d18bcadab129b8abed67f8213ff84d6e2ba3ace2ce5e2e65575a1ef4d70e1e1fa4b38bc84cd5b345a5f7
languageName: node
linkType: hard
"@mdit-vue/plugin-frontmatter@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-frontmatter@npm:2.1.4"
dependencies:
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
gray-matter: "npm:^4.0.3"
markdown-it: "npm:^14.1.0"
checksum: 10c0/e60f05f8fb33769fcc7d9f66f5a6f189c6e1fd875ebfbe126a79d8525e6a9639d5e37f9df146003b66e7a5c8a6825c542536412762c61e37225b4754e0b16add
languageName: node
linkType: hard
"@mdit-vue/plugin-headers@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-headers@npm:2.1.4"
dependencies:
"@mdit-vue/shared": "npm:2.1.4"
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/de0b934ae2b2b9d245ccd63c65e34065255ea6f39e8c43a9d90186dad6b621df629b9df434ab0718820d88e3f20f0cb2f541f1d2674b63f33d7bd00116f2271d
languageName: node
linkType: hard
"@mdit-vue/plugin-sfc@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-sfc@npm:2.1.4"
dependencies:
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/35fb5f268c2c3cc1448d407d58b8b527db843d962b235480dd889cbdf196831bd1bdabe43def4b335a3971414eb2151ef5f2912f44472f0da819733a25f21725
languageName: node
linkType: hard
"@mdit-vue/plugin-title@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-title@npm:2.1.4"
dependencies:
"@mdit-vue/shared": "npm:2.1.4"
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/374d721ea9e696feb1e3ef63ef4eee33ae36207632d2d9c403c5ef7480d1a7db7e990c621cb936302367e355c03a011e30024006c5c6ae98b9d2b7cba0257fb3
languageName: node
linkType: hard
"@mdit-vue/plugin-toc@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-toc@npm:2.1.4"
dependencies:
"@mdit-vue/shared": "npm:2.1.4"
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/79ea488967b50c253bd1998e03367841707216916f77272d4c21c10bf043272a4d8d529a5df32eb51c104f72370e0b07bc48fc808a9801e5420aa7851fcfd0b0
languageName: node
linkType: hard
"@mdit-vue/shared@npm:2.1.4, @mdit-vue/shared@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/shared@npm:2.1.4"
dependencies:
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/999fd4eb5f71d0249eaeb8b377bac77b51faf57d990631e54991111be1b73dfe61cd0c427ab2bc2b332a60a4e70da8f918b974759197b8a848635433403143f6
languageName: node
linkType: hard
"@mdit-vue/types@npm:2.1.4, @mdit-vue/types@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/types@npm:2.1.4"
checksum: 10c0/e3b4a43b6893e7963589a7f922d731a34ca74018c59b9d6f6acef32bc5def485f449e1e5c6b6909eb5f7b73a8d04dfc440d0f8f26e12508ad7d74240d87ef29c
languageName: node
linkType: hard
"@mdit/helper@npm:0.22.1":
version: 0.22.1
resolution: "@mdit/helper@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/2f3b4171651342d4090439e4e17b92187d23df76198b0109aef7f49f42d95a5d7fda598a088026a382b2af3d1370772082ea5648fa083ae52254401d3b145ba2
languageName: node
linkType: hard
"@mdit/plugin-alert@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-alert@npm:0.22.2"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/90360d714eaffd5f25680655d0895cb446df911abe562e2e6743093cc375f0ee106d2383cd8af2f58131bcac3f33fa7986f9bbf0419a57dccd7cef5df5b829ef
languageName: node
linkType: hard
"@mdit/plugin-attrs@npm:^0.23.1":
version: 0.23.1
resolution: "@mdit/plugin-attrs@npm:0.23.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/dfe2a40e487ab17e52a73c2434222a919ada92d612a8cbdd58c6ba24f832b076fb24f8d10208b9b3292888f0c88f7c74d683dfba45bd1bba367d47250273305d
languageName: node
linkType: hard
"@mdit/plugin-container@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-container@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/4c8f64a74d19e6dd59328a992a6dc3237c6b8d03c677fa2dccaf6f0cc6908a63e286ddfc81b9265a38a94860a83e30f26567a7f87a2ea0c5cfdb109ce2cf7e67
languageName: node
linkType: hard
"@mdit/plugin-figure@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-figure@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/17e55c2ba8f3fe6baacd13c28a124b0e9d4f4cdecb0f9529c589196283ea466b55f5108a5a043fa8ce44eda57c290243597cd7e3565d70b373fca7dc2b411b7e
languageName: node
linkType: hard
"@mdit/plugin-footnote@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-footnote@npm:0.22.2"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
checksum: 10c0/5ee30cd8cd96b70b4f8ba1686d29946da8ff9eee54bc3a6ecf92792b8a6537490da81a28cc5549d1fdba00b7476c45262478f42608624021544d040474b96b02
languageName: node
linkType: hard
"@mdit/plugin-img-lazyload@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-img-lazyload@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/78e1053f1368e7f110a7268000c2ed2bdc1c79f157f63457f2a3d2d12dac0653d8b5b0e1e5bf5ded003d22b729248212eeb595ca1ca34c23f9e67a5b6eedce90
languageName: node
linkType: hard
"@mdit/plugin-img-mark@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-img-mark@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/3970ca3c2bd4c25af2a901d8f4ea31d9d88e049d67364a6f9ef385c95c96c587453da90db813f57d57f2a862d722159f3ca067b6575376d96b0527160e6620b7
languageName: node
linkType: hard
"@mdit/plugin-img-size@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-img-size@npm:0.22.2"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/2f0866b5206d5f7f12e8a36d0fcc90113b0295f90c7ea687e7fe178ba23ef78e66dc475ce04cc0cd24e4b2872ee412cf00bea8bf17ef078f348da39e9dffaafe
languageName: node
linkType: hard
"@mdit/plugin-include@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-include@npm:0.22.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
upath: "npm:^2.0.1"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/a4c55751dbf6dac776181db153e69d2b4b1a23666401d558e797e4acb6419deb81e70197e6f28b3125c19bd3b4db22815a72fcc3d29205436ec7044fe6f5bf2a
languageName: node
linkType: hard
"@mdit/plugin-katex-slim@npm:^0.23.1":
version: 0.23.1
resolution: "@mdit/plugin-katex-slim@npm:0.23.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@mdit/plugin-tex": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
katex: ^0.16.9
markdown-it: ^14.1.0
peerDependenciesMeta:
katex:
optional: true
markdown-it:
optional: true
checksum: 10c0/8b4423bd818da13cb76e065ecd38002922be52130b0c3b3117f81544c1727f41109879fc5b629eaa63638300efb172cec26aa3512976df81ffbd0587aa95aabd
languageName: node
linkType: hard
"@mdit/plugin-mark@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-mark@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/bb63772e70a432a1320419ef681f3cde8377833045cd3740984f187c93f1d458df13add9ad1436b196e74a830b66ad6bdd6909b29fa4c5b037de872a74cf6cf3
languageName: node
linkType: hard
"@mdit/plugin-mathjax-slim@npm:^0.23.1":
version: 0.23.1
resolution: "@mdit/plugin-mathjax-slim@npm:0.23.1"
dependencies:
"@mdit/plugin-tex": "npm:0.22.1"