-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.lock
1626 lines (1626 loc) · 107 KB
/
deno.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "3",
"packages": {
"specifiers": {
"npm:@iarna/toml": "npm:@iarna/toml@2.2.5",
"npm:@lumeland/sass@1.57.1": "npm:@lumeland/sass@1.57.1",
"npm:@mdx-js/mdx@2.2.1": "npm:@mdx-js/mdx@2.2.1",
"npm:@sindresorhus/slugify@2.2.0": "npm:@sindresorhus/slugify@2.2.0",
"npm:date-fns@2.29.3": "npm:date-fns@2.29.3",
"npm:js-yaml@4": "npm:js-yaml@4.1.0",
"npm:markdown-it-attrs@4.1.6": "npm:markdown-it-attrs@4.1.6_markdown-it@13.0.1",
"npm:markdown-it-deflist@2.1.0": "npm:markdown-it-deflist@2.1.0",
"npm:markdown-it@13.0.1": "npm:markdown-it@13.0.1",
"npm:prismjs@1.29.0": "npm:prismjs@1.29.0",
"npm:react-dom@18.2.0": "npm:react-dom@18.2.0_react@18.2.0",
"npm:react@18.2.0": "npm:react@18.2.0",
"npm:rehype-raw@6.1.1": "npm:rehype-raw@6.1.1",
"npm:rehype-sanitize@5.0.1": "npm:rehype-sanitize@5.0.1",
"npm:rehype-stringify@9.0.3": "npm:rehype-stringify@9.0.3",
"npm:remark-gfm@3.0.1": "npm:remark-gfm@3.0.1",
"npm:remark-parse@10.0.1": "npm:remark-parse@10.0.1",
"npm:remark-rehype@10.1.0": "npm:remark-rehype@10.1.0",
"npm:unified@10.1.2": "npm:unified@10.1.2"
},
"npm": {
"@iarna/toml@2.2.5": {
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==",
"dependencies": {}
},
"@lumeland/sass@1.57.1": {
"integrity": "sha512-YvJ/PILiotwa59IMEBxLtrLW6pEEotByvJIX9uyWu3yK04C+PevsOzROcFYwgjAsjDD2YzDgtiTJE7HfKDmFmQ==",
"dependencies": {
"immutable": "immutable@4.3.7",
"source-map-js": "source-map-js@1.2.1"
}
},
"@mdx-js/mdx@2.2.1": {
"integrity": "sha512-hZ3ex7exYLJn6FfReq8yTvA6TE53uW9UHJQM9IlSauOuS55J9y8RtA7W+dzp6Yrzr00/U1sd7q+Wf61q6SfiTQ==",
"dependencies": {
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"@types/mdx": "@types/mdx@2.0.13",
"estree-util-build-jsx": "estree-util-build-jsx@2.2.2",
"estree-util-is-identifier-name": "estree-util-is-identifier-name@2.1.0",
"estree-util-to-js": "estree-util-to-js@1.2.0",
"estree-walker": "estree-walker@3.0.3",
"hast-util-to-estree": "hast-util-to-estree@2.3.3",
"markdown-extensions": "markdown-extensions@1.1.1",
"periscopic": "periscopic@3.1.0",
"remark-mdx": "remark-mdx@2.3.0",
"remark-parse": "remark-parse@10.0.2",
"remark-rehype": "remark-rehype@10.1.0",
"unified": "unified@10.1.2",
"unist-util-position-from-estree": "unist-util-position-from-estree@1.1.2",
"unist-util-stringify-position": "unist-util-stringify-position@3.0.3",
"unist-util-visit": "unist-util-visit@4.1.2",
"vfile": "vfile@5.3.7"
}
},
"@sindresorhus/slugify@2.2.0": {
"integrity": "sha512-9Vybc/qX8Kj6pxJaapjkFbiUJPk7MAkCh/GFCxIBnnsuYCFPIXKvnLidG8xlepht3i24L5XemUmGtrJ3UWrl6w==",
"dependencies": {
"@sindresorhus/transliterate": "@sindresorhus/transliterate@1.6.0",
"escape-string-regexp": "escape-string-regexp@5.0.0"
}
},
"@sindresorhus/transliterate@1.6.0": {
"integrity": "sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==",
"dependencies": {
"escape-string-regexp": "escape-string-regexp@5.0.0"
}
},
"@types/acorn@4.0.6": {
"integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6"
}
},
"@types/debug@4.1.12": {
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
"dependencies": {
"@types/ms": "@types/ms@0.7.34"
}
},
"@types/estree-jsx@1.0.5": {
"integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6"
}
},
"@types/estree@1.0.6": {
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
"dependencies": {}
},
"@types/hast@2.3.10": {
"integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==",
"dependencies": {
"@types/unist": "@types/unist@2.0.11"
}
},
"@types/mdast@3.0.15": {
"integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==",
"dependencies": {
"@types/unist": "@types/unist@2.0.11"
}
},
"@types/mdx@2.0.13": {
"integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==",
"dependencies": {}
},
"@types/ms@0.7.34": {
"integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==",
"dependencies": {}
},
"@types/parse5@6.0.3": {
"integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==",
"dependencies": {}
},
"@types/unist@2.0.11": {
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
"dependencies": {}
},
"acorn-jsx@5.3.2_acorn@8.12.1": {
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dependencies": {
"acorn": "acorn@8.12.1"
}
},
"acorn@8.12.1": {
"integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==",
"dependencies": {}
},
"argparse@2.0.1": {
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
"dependencies": {}
},
"astring@1.9.0": {
"integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==",
"dependencies": {}
},
"bail@2.0.2": {
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
"dependencies": {}
},
"ccount@2.0.1": {
"integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
"dependencies": {}
},
"character-entities-html4@2.1.0": {
"integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
"dependencies": {}
},
"character-entities-legacy@3.0.0": {
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
"dependencies": {}
},
"character-entities@2.0.2": {
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
"dependencies": {}
},
"character-reference-invalid@2.0.1": {
"integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
"dependencies": {}
},
"comma-separated-tokens@2.0.3": {
"integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
"dependencies": {}
},
"date-fns@2.29.3": {
"integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==",
"dependencies": {}
},
"debug@4.3.7": {
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
"dependencies": {
"ms": "ms@2.1.3"
}
},
"decode-named-character-reference@1.0.2": {
"integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
"dependencies": {
"character-entities": "character-entities@2.0.2"
}
},
"dequal@2.0.3": {
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
"dependencies": {}
},
"diff@5.2.0": {
"integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==",
"dependencies": {}
},
"entities@3.0.1": {
"integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==",
"dependencies": {}
},
"escape-string-regexp@5.0.0": {
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
"dependencies": {}
},
"estree-util-attach-comments@2.1.1": {
"integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6"
}
},
"estree-util-build-jsx@2.2.2": {
"integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==",
"dependencies": {
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"estree-util-is-identifier-name": "estree-util-is-identifier-name@2.1.0",
"estree-walker": "estree-walker@3.0.3"
}
},
"estree-util-is-identifier-name@2.1.0": {
"integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==",
"dependencies": {}
},
"estree-util-to-js@1.2.0": {
"integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==",
"dependencies": {
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"astring": "astring@1.9.0",
"source-map": "source-map@0.7.4"
}
},
"estree-util-visit@1.2.1": {
"integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==",
"dependencies": {
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"@types/unist": "@types/unist@2.0.11"
}
},
"estree-walker@3.0.3": {
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6"
}
},
"extend@3.0.2": {
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"dependencies": {}
},
"hast-util-from-parse5@7.1.2": {
"integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10",
"@types/unist": "@types/unist@2.0.11",
"hastscript": "hastscript@7.2.0",
"property-information": "property-information@6.5.0",
"vfile": "vfile@5.3.7",
"vfile-location": "vfile-location@4.1.0",
"web-namespaces": "web-namespaces@2.0.1"
}
},
"hast-util-parse-selector@3.1.1": {
"integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10"
}
},
"hast-util-raw@7.2.3": {
"integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10",
"@types/parse5": "@types/parse5@6.0.3",
"hast-util-from-parse5": "hast-util-from-parse5@7.1.2",
"hast-util-to-parse5": "hast-util-to-parse5@7.1.0",
"html-void-elements": "html-void-elements@2.0.1",
"parse5": "parse5@6.0.1",
"unist-util-position": "unist-util-position@4.0.4",
"unist-util-visit": "unist-util-visit@4.1.2",
"vfile": "vfile@5.3.7",
"web-namespaces": "web-namespaces@2.0.1",
"zwitch": "zwitch@2.0.4"
}
},
"hast-util-sanitize@4.1.0": {
"integrity": "sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10"
}
},
"hast-util-to-estree@2.3.3": {
"integrity": "sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6",
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"@types/hast": "@types/hast@2.3.10",
"@types/unist": "@types/unist@2.0.11",
"comma-separated-tokens": "comma-separated-tokens@2.0.3",
"estree-util-attach-comments": "estree-util-attach-comments@2.1.1",
"estree-util-is-identifier-name": "estree-util-is-identifier-name@2.1.0",
"hast-util-whitespace": "hast-util-whitespace@2.0.1",
"mdast-util-mdx-expression": "mdast-util-mdx-expression@1.3.2",
"mdast-util-mdxjs-esm": "mdast-util-mdxjs-esm@1.3.1",
"property-information": "property-information@6.5.0",
"space-separated-tokens": "space-separated-tokens@2.0.2",
"style-to-object": "style-to-object@0.4.4",
"unist-util-position": "unist-util-position@4.0.4",
"zwitch": "zwitch@2.0.4"
}
},
"hast-util-to-html@8.0.4": {
"integrity": "sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10",
"@types/unist": "@types/unist@2.0.11",
"ccount": "ccount@2.0.1",
"comma-separated-tokens": "comma-separated-tokens@2.0.3",
"hast-util-raw": "hast-util-raw@7.2.3",
"hast-util-whitespace": "hast-util-whitespace@2.0.1",
"html-void-elements": "html-void-elements@2.0.1",
"property-information": "property-information@6.5.0",
"space-separated-tokens": "space-separated-tokens@2.0.2",
"stringify-entities": "stringify-entities@4.0.4",
"zwitch": "zwitch@2.0.4"
}
},
"hast-util-to-parse5@7.1.0": {
"integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10",
"comma-separated-tokens": "comma-separated-tokens@2.0.3",
"property-information": "property-information@6.5.0",
"space-separated-tokens": "space-separated-tokens@2.0.2",
"web-namespaces": "web-namespaces@2.0.1",
"zwitch": "zwitch@2.0.4"
}
},
"hast-util-whitespace@2.0.1": {
"integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==",
"dependencies": {}
},
"hastscript@7.2.0": {
"integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10",
"comma-separated-tokens": "comma-separated-tokens@2.0.3",
"hast-util-parse-selector": "hast-util-parse-selector@3.1.1",
"property-information": "property-information@6.5.0",
"space-separated-tokens": "space-separated-tokens@2.0.2"
}
},
"html-void-elements@2.0.1": {
"integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==",
"dependencies": {}
},
"immutable@4.3.7": {
"integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==",
"dependencies": {}
},
"inline-style-parser@0.1.1": {
"integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==",
"dependencies": {}
},
"is-alphabetical@2.0.1": {
"integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
"dependencies": {}
},
"is-alphanumerical@2.0.1": {
"integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
"dependencies": {
"is-alphabetical": "is-alphabetical@2.0.1",
"is-decimal": "is-decimal@2.0.1"
}
},
"is-buffer@2.0.5": {
"integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
"dependencies": {}
},
"is-decimal@2.0.1": {
"integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
"dependencies": {}
},
"is-hexadecimal@2.0.1": {
"integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
"dependencies": {}
},
"is-plain-obj@4.1.0": {
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
"dependencies": {}
},
"is-reference@3.0.2": {
"integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6"
}
},
"js-tokens@4.0.0": {
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
"dependencies": {}
},
"js-yaml@4.1.0": {
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dependencies": {
"argparse": "argparse@2.0.1"
}
},
"kleur@4.1.5": {
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
"dependencies": {}
},
"linkify-it@4.0.1": {
"integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==",
"dependencies": {
"uc.micro": "uc.micro@1.0.6"
}
},
"longest-streak@3.1.0": {
"integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
"dependencies": {}
},
"loose-envify@1.4.0": {
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
"dependencies": {
"js-tokens": "js-tokens@4.0.0"
}
},
"markdown-extensions@1.1.1": {
"integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==",
"dependencies": {}
},
"markdown-it-attrs@4.1.6_markdown-it@13.0.1": {
"integrity": "sha512-O7PDKZlN8RFMyDX13JnctQompwrrILuz2y43pW2GagcwpIIElkAdfeek+erHfxUOlXWPsjFeWmZ8ch1xtRLWpA==",
"dependencies": {
"markdown-it": "markdown-it@13.0.1"
}
},
"markdown-it-deflist@2.1.0": {
"integrity": "sha512-3OuqoRUlSxJiuQYu0cWTLHNhhq2xtoSFqsZK8plANg91+RJQU1ziQ6lA2LzmFAEes18uPBsHZpcX6We5l76Nzg==",
"dependencies": {}
},
"markdown-it@13.0.1": {
"integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==",
"dependencies": {
"argparse": "argparse@2.0.1",
"entities": "entities@3.0.1",
"linkify-it": "linkify-it@4.0.1",
"mdurl": "mdurl@1.0.1",
"uc.micro": "uc.micro@1.0.6"
}
},
"markdown-table@3.0.3": {
"integrity": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==",
"dependencies": {}
},
"mdast-util-definitions@5.1.2": {
"integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"@types/unist": "@types/unist@2.0.11",
"unist-util-visit": "unist-util-visit@4.1.2"
}
},
"mdast-util-find-and-replace@2.2.2": {
"integrity": "sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"escape-string-regexp": "escape-string-regexp@5.0.0",
"unist-util-is": "unist-util-is@5.2.1",
"unist-util-visit-parents": "unist-util-visit-parents@5.1.3"
}
},
"mdast-util-from-markdown@1.3.1": {
"integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"@types/unist": "@types/unist@2.0.11",
"decode-named-character-reference": "decode-named-character-reference@1.0.2",
"mdast-util-to-string": "mdast-util-to-string@3.2.0",
"micromark": "micromark@3.2.0",
"micromark-util-decode-numeric-character-reference": "micromark-util-decode-numeric-character-reference@1.1.0",
"micromark-util-decode-string": "micromark-util-decode-string@1.1.0",
"micromark-util-normalize-identifier": "micromark-util-normalize-identifier@1.1.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"unist-util-stringify-position": "unist-util-stringify-position@3.0.3",
"uvu": "uvu@0.5.6"
}
},
"mdast-util-gfm-autolink-literal@1.0.3": {
"integrity": "sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"ccount": "ccount@2.0.1",
"mdast-util-find-and-replace": "mdast-util-find-and-replace@2.2.2",
"micromark-util-character": "micromark-util-character@1.2.0"
}
},
"mdast-util-gfm-footnote@1.0.2": {
"integrity": "sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0",
"micromark-util-normalize-identifier": "micromark-util-normalize-identifier@1.1.0"
}
},
"mdast-util-gfm-strikethrough@1.0.3": {
"integrity": "sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0"
}
},
"mdast-util-gfm-table@1.0.7": {
"integrity": "sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"markdown-table": "markdown-table@3.0.3",
"mdast-util-from-markdown": "mdast-util-from-markdown@1.3.1",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0"
}
},
"mdast-util-gfm-task-list-item@1.0.2": {
"integrity": "sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0"
}
},
"mdast-util-gfm@2.0.2": {
"integrity": "sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==",
"dependencies": {
"mdast-util-from-markdown": "mdast-util-from-markdown@1.3.1",
"mdast-util-gfm-autolink-literal": "mdast-util-gfm-autolink-literal@1.0.3",
"mdast-util-gfm-footnote": "mdast-util-gfm-footnote@1.0.2",
"mdast-util-gfm-strikethrough": "mdast-util-gfm-strikethrough@1.0.3",
"mdast-util-gfm-table": "mdast-util-gfm-table@1.0.7",
"mdast-util-gfm-task-list-item": "mdast-util-gfm-task-list-item@1.0.2",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0"
}
},
"mdast-util-mdx-expression@1.3.2": {
"integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==",
"dependencies": {
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"@types/hast": "@types/hast@2.3.10",
"@types/mdast": "@types/mdast@3.0.15",
"mdast-util-from-markdown": "mdast-util-from-markdown@1.3.1",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0"
}
},
"mdast-util-mdx-jsx@2.1.4": {
"integrity": "sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==",
"dependencies": {
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"@types/hast": "@types/hast@2.3.10",
"@types/mdast": "@types/mdast@3.0.15",
"@types/unist": "@types/unist@2.0.11",
"ccount": "ccount@2.0.1",
"mdast-util-from-markdown": "mdast-util-from-markdown@1.3.1",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0",
"parse-entities": "parse-entities@4.0.1",
"stringify-entities": "stringify-entities@4.0.4",
"unist-util-remove-position": "unist-util-remove-position@4.0.2",
"unist-util-stringify-position": "unist-util-stringify-position@3.0.3",
"vfile-message": "vfile-message@3.1.4"
}
},
"mdast-util-mdx@2.0.1": {
"integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==",
"dependencies": {
"mdast-util-from-markdown": "mdast-util-from-markdown@1.3.1",
"mdast-util-mdx-expression": "mdast-util-mdx-expression@1.3.2",
"mdast-util-mdx-jsx": "mdast-util-mdx-jsx@2.1.4",
"mdast-util-mdxjs-esm": "mdast-util-mdxjs-esm@1.3.1",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0"
}
},
"mdast-util-mdxjs-esm@1.3.1": {
"integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==",
"dependencies": {
"@types/estree-jsx": "@types/estree-jsx@1.0.5",
"@types/hast": "@types/hast@2.3.10",
"@types/mdast": "@types/mdast@3.0.15",
"mdast-util-from-markdown": "mdast-util-from-markdown@1.3.1",
"mdast-util-to-markdown": "mdast-util-to-markdown@1.5.0"
}
},
"mdast-util-phrasing@3.0.1": {
"integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"unist-util-is": "unist-util-is@5.2.1"
}
},
"mdast-util-to-hast@12.3.0": {
"integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==",
"dependencies": {
"@types/hast": "@types/hast@2.3.10",
"@types/mdast": "@types/mdast@3.0.15",
"mdast-util-definitions": "mdast-util-definitions@5.1.2",
"micromark-util-sanitize-uri": "micromark-util-sanitize-uri@1.2.0",
"trim-lines": "trim-lines@3.0.1",
"unist-util-generated": "unist-util-generated@2.0.1",
"unist-util-position": "unist-util-position@4.0.4",
"unist-util-visit": "unist-util-visit@4.1.2"
}
},
"mdast-util-to-markdown@1.5.0": {
"integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15",
"@types/unist": "@types/unist@2.0.11",
"longest-streak": "longest-streak@3.1.0",
"mdast-util-phrasing": "mdast-util-phrasing@3.0.1",
"mdast-util-to-string": "mdast-util-to-string@3.2.0",
"micromark-util-decode-string": "micromark-util-decode-string@1.1.0",
"unist-util-visit": "unist-util-visit@4.1.2",
"zwitch": "zwitch@2.0.4"
}
},
"mdast-util-to-string@3.2.0": {
"integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==",
"dependencies": {
"@types/mdast": "@types/mdast@3.0.15"
}
},
"mdurl@1.0.1": {
"integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==",
"dependencies": {}
},
"micromark-core-commonmark@1.1.0": {
"integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==",
"dependencies": {
"decode-named-character-reference": "decode-named-character-reference@1.0.2",
"micromark-factory-destination": "micromark-factory-destination@1.1.0",
"micromark-factory-label": "micromark-factory-label@1.1.0",
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-factory-title": "micromark-factory-title@1.1.0",
"micromark-factory-whitespace": "micromark-factory-whitespace@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-chunked": "micromark-util-chunked@1.1.0",
"micromark-util-classify-character": "micromark-util-classify-character@1.1.0",
"micromark-util-html-tag-name": "micromark-util-html-tag-name@1.2.0",
"micromark-util-normalize-identifier": "micromark-util-normalize-identifier@1.1.0",
"micromark-util-resolve-all": "micromark-util-resolve-all@1.1.0",
"micromark-util-subtokenize": "micromark-util-subtokenize@1.1.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-extension-gfm-autolink-literal@1.0.5": {
"integrity": "sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==",
"dependencies": {
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-sanitize-uri": "micromark-util-sanitize-uri@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-extension-gfm-footnote@1.1.2": {
"integrity": "sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==",
"dependencies": {
"micromark-core-commonmark": "micromark-core-commonmark@1.1.0",
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-normalize-identifier": "micromark-util-normalize-identifier@1.1.0",
"micromark-util-sanitize-uri": "micromark-util-sanitize-uri@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-extension-gfm-strikethrough@1.0.7": {
"integrity": "sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==",
"dependencies": {
"micromark-util-chunked": "micromark-util-chunked@1.1.0",
"micromark-util-classify-character": "micromark-util-classify-character@1.1.0",
"micromark-util-resolve-all": "micromark-util-resolve-all@1.1.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-extension-gfm-table@1.0.7": {
"integrity": "sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==",
"dependencies": {
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-extension-gfm-tagfilter@1.0.2": {
"integrity": "sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==",
"dependencies": {
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-extension-gfm-task-list-item@1.0.5": {
"integrity": "sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==",
"dependencies": {
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-extension-gfm@2.0.3": {
"integrity": "sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==",
"dependencies": {
"micromark-extension-gfm-autolink-literal": "micromark-extension-gfm-autolink-literal@1.0.5",
"micromark-extension-gfm-footnote": "micromark-extension-gfm-footnote@1.1.2",
"micromark-extension-gfm-strikethrough": "micromark-extension-gfm-strikethrough@1.0.7",
"micromark-extension-gfm-table": "micromark-extension-gfm-table@1.0.7",
"micromark-extension-gfm-tagfilter": "micromark-extension-gfm-tagfilter@1.0.2",
"micromark-extension-gfm-task-list-item": "micromark-extension-gfm-task-list-item@1.0.5",
"micromark-util-combine-extensions": "micromark-util-combine-extensions@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-extension-mdx-expression@1.0.8": {
"integrity": "sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6",
"micromark-factory-mdx-expression": "micromark-factory-mdx-expression@1.0.9",
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-events-to-acorn": "micromark-util-events-to-acorn@1.2.3",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-extension-mdx-jsx@1.0.5": {
"integrity": "sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==",
"dependencies": {
"@types/acorn": "@types/acorn@4.0.6",
"@types/estree": "@types/estree@1.0.6",
"estree-util-is-identifier-name": "estree-util-is-identifier-name@2.1.0",
"micromark-factory-mdx-expression": "micromark-factory-mdx-expression@1.0.9",
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6",
"vfile-message": "vfile-message@3.1.4"
}
},
"micromark-extension-mdx-md@1.0.1": {
"integrity": "sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==",
"dependencies": {
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-extension-mdxjs-esm@1.0.5": {
"integrity": "sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6",
"micromark-core-commonmark": "micromark-core-commonmark@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-events-to-acorn": "micromark-util-events-to-acorn@1.2.3",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"unist-util-position-from-estree": "unist-util-position-from-estree@1.1.2",
"uvu": "uvu@0.5.6",
"vfile-message": "vfile-message@3.1.4"
}
},
"micromark-extension-mdxjs@1.0.1_acorn@8.12.1": {
"integrity": "sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==",
"dependencies": {
"acorn": "acorn@8.12.1",
"acorn-jsx": "acorn-jsx@5.3.2_acorn@8.12.1",
"micromark-extension-mdx-expression": "micromark-extension-mdx-expression@1.0.8",
"micromark-extension-mdx-jsx": "micromark-extension-mdx-jsx@1.0.5",
"micromark-extension-mdx-md": "micromark-extension-mdx-md@1.0.1",
"micromark-extension-mdxjs-esm": "micromark-extension-mdxjs-esm@1.0.5",
"micromark-util-combine-extensions": "micromark-util-combine-extensions@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-factory-destination@1.1.0": {
"integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==",
"dependencies": {
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-factory-label@1.1.0": {
"integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==",
"dependencies": {
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-factory-mdx-expression@1.0.9": {
"integrity": "sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-events-to-acorn": "micromark-util-events-to-acorn@1.2.3",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"unist-util-position-from-estree": "unist-util-position-from-estree@1.1.2",
"uvu": "uvu@0.5.6",
"vfile-message": "vfile-message@3.1.4"
}
},
"micromark-factory-space@1.1.0": {
"integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==",
"dependencies": {
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-factory-title@1.1.0": {
"integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==",
"dependencies": {
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-factory-whitespace@1.1.0": {
"integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==",
"dependencies": {
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-util-character@1.2.0": {
"integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==",
"dependencies": {
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-util-chunked@1.1.0": {
"integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==",
"dependencies": {
"micromark-util-symbol": "micromark-util-symbol@1.1.0"
}
},
"micromark-util-classify-character@1.1.0": {
"integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==",
"dependencies": {
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-util-combine-extensions@1.1.0": {
"integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==",
"dependencies": {
"micromark-util-chunked": "micromark-util-chunked@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-util-decode-numeric-character-reference@1.1.0": {
"integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==",
"dependencies": {
"micromark-util-symbol": "micromark-util-symbol@1.1.0"
}
},
"micromark-util-decode-string@1.1.0": {
"integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==",
"dependencies": {
"decode-named-character-reference": "decode-named-character-reference@1.0.2",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-decode-numeric-character-reference": "micromark-util-decode-numeric-character-reference@1.1.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0"
}
},
"micromark-util-encode@1.1.0": {
"integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==",
"dependencies": {}
},
"micromark-util-events-to-acorn@1.2.3": {
"integrity": "sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==",
"dependencies": {
"@types/acorn": "@types/acorn@4.0.6",
"@types/estree": "@types/estree@1.0.6",
"@types/unist": "@types/unist@2.0.11",
"estree-util-visit": "estree-util-visit@1.2.1",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6",
"vfile-message": "vfile-message@3.1.4"
}
},
"micromark-util-html-tag-name@1.2.0": {
"integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==",
"dependencies": {}
},
"micromark-util-normalize-identifier@1.1.0": {
"integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==",
"dependencies": {
"micromark-util-symbol": "micromark-util-symbol@1.1.0"
}
},
"micromark-util-resolve-all@1.1.0": {
"integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==",
"dependencies": {
"micromark-util-types": "micromark-util-types@1.1.0"
}
},
"micromark-util-sanitize-uri@1.2.0": {
"integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==",
"dependencies": {
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-encode": "micromark-util-encode@1.1.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0"
}
},
"micromark-util-subtokenize@1.1.0": {
"integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==",
"dependencies": {
"micromark-util-chunked": "micromark-util-chunked@1.1.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"micromark-util-symbol@1.1.0": {
"integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==",
"dependencies": {}
},
"micromark-util-types@1.1.0": {
"integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==",
"dependencies": {}
},
"micromark@3.2.0": {
"integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==",
"dependencies": {
"@types/debug": "@types/debug@4.1.12",
"debug": "debug@4.3.7",
"decode-named-character-reference": "decode-named-character-reference@1.0.2",
"micromark-core-commonmark": "micromark-core-commonmark@1.1.0",
"micromark-factory-space": "micromark-factory-space@1.1.0",
"micromark-util-character": "micromark-util-character@1.2.0",
"micromark-util-chunked": "micromark-util-chunked@1.1.0",
"micromark-util-combine-extensions": "micromark-util-combine-extensions@1.1.0",
"micromark-util-decode-numeric-character-reference": "micromark-util-decode-numeric-character-reference@1.1.0",
"micromark-util-encode": "micromark-util-encode@1.1.0",
"micromark-util-normalize-identifier": "micromark-util-normalize-identifier@1.1.0",
"micromark-util-resolve-all": "micromark-util-resolve-all@1.1.0",
"micromark-util-sanitize-uri": "micromark-util-sanitize-uri@1.2.0",
"micromark-util-subtokenize": "micromark-util-subtokenize@1.1.0",
"micromark-util-symbol": "micromark-util-symbol@1.1.0",
"micromark-util-types": "micromark-util-types@1.1.0",
"uvu": "uvu@0.5.6"
}
},
"mri@1.2.0": {
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
"dependencies": {}
},
"ms@2.1.3": {
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
"dependencies": {}
},
"parse-entities@4.0.1": {
"integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==",
"dependencies": {
"@types/unist": "@types/unist@2.0.11",
"character-entities": "character-entities@2.0.2",
"character-entities-legacy": "character-entities-legacy@3.0.0",
"character-reference-invalid": "character-reference-invalid@2.0.1",
"decode-named-character-reference": "decode-named-character-reference@1.0.2",
"is-alphanumerical": "is-alphanumerical@2.0.1",
"is-decimal": "is-decimal@2.0.1",
"is-hexadecimal": "is-hexadecimal@2.0.1"
}
},
"parse5@6.0.1": {
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
"dependencies": {}
},
"periscopic@3.1.0": {
"integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==",
"dependencies": {
"@types/estree": "@types/estree@1.0.6",
"estree-walker": "estree-walker@3.0.3",
"is-reference": "is-reference@3.0.2"
}
},
"prismjs@1.29.0": {
"integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==",
"dependencies": {}
},
"property-information@6.5.0": {
"integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==",
"dependencies": {}
},
"react-dom@18.2.0_react@18.2.0": {
"integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
"dependencies": {
"loose-envify": "loose-envify@1.4.0",
"react": "react@18.2.0",