eslint-plugin-primer-react 7.0.0-rc.f77256c → 7.0.0-rc.ffaa602
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/docs/rules/a11y-no-title-usage.md +40 -0
- package/package-lock.json +1325 -124
- package/package.json +3 -3
- package/src/configs/recommended.js +1 -0
- package/src/index.js +1 -0
- package/src/rules/__tests__/a11y-no-title-usage.test.js +27 -0
- package/src/rules/__tests__/a11y-tooltip-interactive-trigger.test.js +16 -0
- package/src/rules/a11y-no-title-usage.js +37 -0
- package/src/rules/a11y-tooltip-interactive-trigger.js +9 -3
package/package-lock.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@styled-system/props": "^5.1.5",
|
|
13
|
-
"@typescript-eslint/utils": "
|
|
13
|
+
"@typescript-eslint/utils": "8.24.0",
|
|
14
14
|
"eslint-plugin-github": "^5.0.1",
|
|
15
15
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
16
16
|
"eslint-traverse": "^1.0.0",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"eslint": "^8.42.0",
|
|
29
29
|
"eslint-plugin-prettier": "^5.2.1",
|
|
30
30
|
"jest": "^29.7.0",
|
|
31
|
-
"markdownlint-cli2": "^0.
|
|
31
|
+
"markdownlint-cli2": "^0.17.1",
|
|
32
32
|
"markdownlint-cli2-formatter-pretty": "^0.0.7"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -1813,6 +1813,15 @@
|
|
|
1813
1813
|
"@babel/types": "^7.20.7"
|
|
1814
1814
|
}
|
|
1815
1815
|
},
|
|
1816
|
+
"node_modules/@types/debug": {
|
|
1817
|
+
"version": "4.1.12",
|
|
1818
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
1819
|
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
|
|
1820
|
+
"dev": true,
|
|
1821
|
+
"dependencies": {
|
|
1822
|
+
"@types/ms": "*"
|
|
1823
|
+
}
|
|
1824
|
+
},
|
|
1816
1825
|
"node_modules/@types/graceful-fs": {
|
|
1817
1826
|
"version": "4.1.8",
|
|
1818
1827
|
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.8.tgz",
|
|
@@ -1867,6 +1876,18 @@
|
|
|
1867
1876
|
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
|
|
1868
1877
|
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
|
|
1869
1878
|
},
|
|
1879
|
+
"node_modules/@types/katex": {
|
|
1880
|
+
"version": "0.16.7",
|
|
1881
|
+
"resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.7.tgz",
|
|
1882
|
+
"integrity": "sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==",
|
|
1883
|
+
"dev": true
|
|
1884
|
+
},
|
|
1885
|
+
"node_modules/@types/ms": {
|
|
1886
|
+
"version": "0.7.34",
|
|
1887
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz",
|
|
1888
|
+
"integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==",
|
|
1889
|
+
"dev": true
|
|
1890
|
+
},
|
|
1870
1891
|
"node_modules/@types/node": {
|
|
1871
1892
|
"version": "20.8.7",
|
|
1872
1893
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.7.tgz",
|
|
@@ -1887,6 +1908,12 @@
|
|
|
1887
1908
|
"integrity": "sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==",
|
|
1888
1909
|
"dev": true
|
|
1889
1910
|
},
|
|
1911
|
+
"node_modules/@types/unist": {
|
|
1912
|
+
"version": "2.0.11",
|
|
1913
|
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
|
|
1914
|
+
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
|
|
1915
|
+
"dev": true
|
|
1916
|
+
},
|
|
1890
1917
|
"node_modules/@types/yargs": {
|
|
1891
1918
|
"version": "17.0.29",
|
|
1892
1919
|
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.29.tgz",
|
|
@@ -2028,6 +2055,23 @@
|
|
|
2028
2055
|
"eslint": "^8.56.0"
|
|
2029
2056
|
}
|
|
2030
2057
|
},
|
|
2058
|
+
"node_modules/@typescript-eslint/rule-tester/node_modules/@typescript-eslint/scope-manager": {
|
|
2059
|
+
"version": "7.16.0",
|
|
2060
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.0.tgz",
|
|
2061
|
+
"integrity": "sha512-8gVv3kW6n01Q6TrI1cmTZ9YMFi3ucDT7i7aI5lEikk2ebk1AEjrwX8MDTdaX5D7fPXMBLvnsaa0IFTAu+jcfOw==",
|
|
2062
|
+
"dev": true,
|
|
2063
|
+
"dependencies": {
|
|
2064
|
+
"@typescript-eslint/types": "7.16.0",
|
|
2065
|
+
"@typescript-eslint/visitor-keys": "7.16.0"
|
|
2066
|
+
},
|
|
2067
|
+
"engines": {
|
|
2068
|
+
"node": "^18.18.0 || >=20.0.0"
|
|
2069
|
+
},
|
|
2070
|
+
"funding": {
|
|
2071
|
+
"type": "opencollective",
|
|
2072
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2031
2075
|
"node_modules/@typescript-eslint/rule-tester/node_modules/@typescript-eslint/types": {
|
|
2032
2076
|
"version": "7.16.0",
|
|
2033
2077
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.0.tgz",
|
|
@@ -2071,6 +2115,28 @@
|
|
|
2071
2115
|
}
|
|
2072
2116
|
}
|
|
2073
2117
|
},
|
|
2118
|
+
"node_modules/@typescript-eslint/rule-tester/node_modules/@typescript-eslint/utils": {
|
|
2119
|
+
"version": "7.16.0",
|
|
2120
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.0.tgz",
|
|
2121
|
+
"integrity": "sha512-PqP4kP3hb4r7Jav+NiRCntlVzhxBNWq6ZQ+zQwII1y/G/1gdIPeYDCKr2+dH6049yJQsWZiHU6RlwvIFBXXGNA==",
|
|
2122
|
+
"dev": true,
|
|
2123
|
+
"dependencies": {
|
|
2124
|
+
"@eslint-community/eslint-utils": "^4.4.0",
|
|
2125
|
+
"@typescript-eslint/scope-manager": "7.16.0",
|
|
2126
|
+
"@typescript-eslint/types": "7.16.0",
|
|
2127
|
+
"@typescript-eslint/typescript-estree": "7.16.0"
|
|
2128
|
+
},
|
|
2129
|
+
"engines": {
|
|
2130
|
+
"node": "^18.18.0 || >=20.0.0"
|
|
2131
|
+
},
|
|
2132
|
+
"funding": {
|
|
2133
|
+
"type": "opencollective",
|
|
2134
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
2135
|
+
},
|
|
2136
|
+
"peerDependencies": {
|
|
2137
|
+
"eslint": "^8.56.0"
|
|
2138
|
+
}
|
|
2139
|
+
},
|
|
2074
2140
|
"node_modules/@typescript-eslint/rule-tester/node_modules/@typescript-eslint/visitor-keys": {
|
|
2075
2141
|
"version": "7.16.0",
|
|
2076
2142
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.0.tgz",
|
|
@@ -2283,38 +2349,39 @@
|
|
|
2283
2349
|
}
|
|
2284
2350
|
},
|
|
2285
2351
|
"node_modules/@typescript-eslint/utils": {
|
|
2286
|
-
"version": "
|
|
2287
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-
|
|
2288
|
-
"integrity": "sha512-
|
|
2352
|
+
"version": "8.24.0",
|
|
2353
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.24.0.tgz",
|
|
2354
|
+
"integrity": "sha512-07rLuUBElvvEb1ICnafYWr4hk8/U7X9RDCOqd9JcAMtjh/9oRmcfN4yGzbPVirgMR0+HLVHehmu19CWeh7fsmQ==",
|
|
2289
2355
|
"license": "MIT",
|
|
2290
2356
|
"dependencies": {
|
|
2291
2357
|
"@eslint-community/eslint-utils": "^4.4.0",
|
|
2292
|
-
"@typescript-eslint/scope-manager": "
|
|
2293
|
-
"@typescript-eslint/types": "
|
|
2294
|
-
"@typescript-eslint/typescript-estree": "
|
|
2358
|
+
"@typescript-eslint/scope-manager": "8.24.0",
|
|
2359
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2360
|
+
"@typescript-eslint/typescript-estree": "8.24.0"
|
|
2295
2361
|
},
|
|
2296
2362
|
"engines": {
|
|
2297
|
-
"node": "^18.18.0 ||
|
|
2363
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2298
2364
|
},
|
|
2299
2365
|
"funding": {
|
|
2300
2366
|
"type": "opencollective",
|
|
2301
2367
|
"url": "https://opencollective.com/typescript-eslint"
|
|
2302
2368
|
},
|
|
2303
2369
|
"peerDependencies": {
|
|
2304
|
-
"eslint": "^8.
|
|
2370
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
2371
|
+
"typescript": ">=4.8.4 <5.8.0"
|
|
2305
2372
|
}
|
|
2306
2373
|
},
|
|
2307
2374
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": {
|
|
2308
|
-
"version": "
|
|
2309
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-
|
|
2310
|
-
"integrity": "sha512-
|
|
2375
|
+
"version": "8.24.0",
|
|
2376
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.24.0.tgz",
|
|
2377
|
+
"integrity": "sha512-HZIX0UByphEtdVBKaQBgTDdn9z16l4aTUz8e8zPQnyxwHBtf5vtl1L+OhH+m1FGV9DrRmoDuYKqzVrvWDcDozw==",
|
|
2311
2378
|
"license": "MIT",
|
|
2312
2379
|
"dependencies": {
|
|
2313
|
-
"@typescript-eslint/types": "
|
|
2314
|
-
"@typescript-eslint/visitor-keys": "
|
|
2380
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2381
|
+
"@typescript-eslint/visitor-keys": "8.24.0"
|
|
2315
2382
|
},
|
|
2316
2383
|
"engines": {
|
|
2317
|
-
"node": "^18.18.0 ||
|
|
2384
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2318
2385
|
},
|
|
2319
2386
|
"funding": {
|
|
2320
2387
|
"type": "opencollective",
|
|
@@ -2322,12 +2389,12 @@
|
|
|
2322
2389
|
}
|
|
2323
2390
|
},
|
|
2324
2391
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": {
|
|
2325
|
-
"version": "
|
|
2326
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-
|
|
2327
|
-
"integrity": "sha512-
|
|
2392
|
+
"version": "8.24.0",
|
|
2393
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.24.0.tgz",
|
|
2394
|
+
"integrity": "sha512-VacJCBTyje7HGAw7xp11q439A+zeGG0p0/p2zsZwpnMzjPB5WteaWqt4g2iysgGFafrqvyLWqq6ZPZAOCoefCw==",
|
|
2328
2395
|
"license": "MIT",
|
|
2329
2396
|
"engines": {
|
|
2330
|
-
"node": "^18.18.0 ||
|
|
2397
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2331
2398
|
},
|
|
2332
2399
|
"funding": {
|
|
2333
2400
|
"type": "opencollective",
|
|
@@ -2335,44 +2402,42 @@
|
|
|
2335
2402
|
}
|
|
2336
2403
|
},
|
|
2337
2404
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": {
|
|
2338
|
-
"version": "
|
|
2339
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-
|
|
2340
|
-
"integrity": "sha512-
|
|
2341
|
-
"license": "
|
|
2405
|
+
"version": "8.24.0",
|
|
2406
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.24.0.tgz",
|
|
2407
|
+
"integrity": "sha512-ITjYcP0+8kbsvT9bysygfIfb+hBj6koDsu37JZG7xrCiy3fPJyNmfVtaGsgTUSEuTzcvME5YI5uyL5LD1EV5ZQ==",
|
|
2408
|
+
"license": "MIT",
|
|
2342
2409
|
"dependencies": {
|
|
2343
|
-
"@typescript-eslint/types": "
|
|
2344
|
-
"@typescript-eslint/visitor-keys": "
|
|
2410
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2411
|
+
"@typescript-eslint/visitor-keys": "8.24.0",
|
|
2345
2412
|
"debug": "^4.3.4",
|
|
2346
|
-
"
|
|
2413
|
+
"fast-glob": "^3.3.2",
|
|
2347
2414
|
"is-glob": "^4.0.3",
|
|
2348
2415
|
"minimatch": "^9.0.4",
|
|
2349
2416
|
"semver": "^7.6.0",
|
|
2350
|
-
"ts-api-utils": "^
|
|
2417
|
+
"ts-api-utils": "^2.0.1"
|
|
2351
2418
|
},
|
|
2352
2419
|
"engines": {
|
|
2353
|
-
"node": "^18.18.0 ||
|
|
2420
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2354
2421
|
},
|
|
2355
2422
|
"funding": {
|
|
2356
2423
|
"type": "opencollective",
|
|
2357
2424
|
"url": "https://opencollective.com/typescript-eslint"
|
|
2358
2425
|
},
|
|
2359
|
-
"
|
|
2360
|
-
"typescript":
|
|
2361
|
-
"optional": true
|
|
2362
|
-
}
|
|
2426
|
+
"peerDependencies": {
|
|
2427
|
+
"typescript": ">=4.8.4 <5.8.0"
|
|
2363
2428
|
}
|
|
2364
2429
|
},
|
|
2365
2430
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": {
|
|
2366
|
-
"version": "
|
|
2367
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-
|
|
2368
|
-
"integrity": "sha512-
|
|
2431
|
+
"version": "8.24.0",
|
|
2432
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.24.0.tgz",
|
|
2433
|
+
"integrity": "sha512-kArLq83QxGLbuHrTMoOEWO+l2MwsNS2TGISEdx8xgqpkbytB07XmlQyQdNDrCc1ecSqx0cnmhGvpX+VBwqqSkg==",
|
|
2369
2434
|
"license": "MIT",
|
|
2370
2435
|
"dependencies": {
|
|
2371
|
-
"@typescript-eslint/types": "
|
|
2372
|
-
"eslint-visitor-keys": "^
|
|
2436
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2437
|
+
"eslint-visitor-keys": "^4.2.0"
|
|
2373
2438
|
},
|
|
2374
2439
|
"engines": {
|
|
2375
|
-
"node": "^18.18.0 ||
|
|
2440
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2376
2441
|
},
|
|
2377
2442
|
"funding": {
|
|
2378
2443
|
"type": "opencollective",
|
|
@@ -2388,6 +2453,18 @@
|
|
|
2388
2453
|
"balanced-match": "^1.0.0"
|
|
2389
2454
|
}
|
|
2390
2455
|
},
|
|
2456
|
+
"node_modules/@typescript-eslint/utils/node_modules/eslint-visitor-keys": {
|
|
2457
|
+
"version": "4.2.0",
|
|
2458
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
|
2459
|
+
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
|
|
2460
|
+
"license": "Apache-2.0",
|
|
2461
|
+
"engines": {
|
|
2462
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2463
|
+
},
|
|
2464
|
+
"funding": {
|
|
2465
|
+
"url": "https://opencollective.com/eslint"
|
|
2466
|
+
}
|
|
2467
|
+
},
|
|
2391
2468
|
"node_modules/@typescript-eslint/utils/node_modules/minimatch": {
|
|
2392
2469
|
"version": "9.0.5",
|
|
2393
2470
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
@@ -2404,9 +2481,9 @@
|
|
|
2404
2481
|
}
|
|
2405
2482
|
},
|
|
2406
2483
|
"node_modules/@typescript-eslint/utils/node_modules/semver": {
|
|
2407
|
-
"version": "7.
|
|
2408
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
2409
|
-
"integrity": "sha512-
|
|
2484
|
+
"version": "7.7.1",
|
|
2485
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
|
2486
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
|
2410
2487
|
"license": "ISC",
|
|
2411
2488
|
"bin": {
|
|
2412
2489
|
"semver": "bin/semver.js"
|
|
@@ -2415,6 +2492,18 @@
|
|
|
2415
2492
|
"node": ">=10"
|
|
2416
2493
|
}
|
|
2417
2494
|
},
|
|
2495
|
+
"node_modules/@typescript-eslint/utils/node_modules/ts-api-utils": {
|
|
2496
|
+
"version": "2.0.1",
|
|
2497
|
+
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.1.tgz",
|
|
2498
|
+
"integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==",
|
|
2499
|
+
"license": "MIT",
|
|
2500
|
+
"engines": {
|
|
2501
|
+
"node": ">=18.12"
|
|
2502
|
+
},
|
|
2503
|
+
"peerDependencies": {
|
|
2504
|
+
"typescript": ">=4.8.4"
|
|
2505
|
+
}
|
|
2506
|
+
},
|
|
2418
2507
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
2419
2508
|
"version": "7.1.1",
|
|
2420
2509
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.1.1.tgz",
|
|
@@ -2946,6 +3035,36 @@
|
|
|
2946
3035
|
"node": ">=10"
|
|
2947
3036
|
}
|
|
2948
3037
|
},
|
|
3038
|
+
"node_modules/character-entities": {
|
|
3039
|
+
"version": "2.0.2",
|
|
3040
|
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
3041
|
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
|
|
3042
|
+
"dev": true,
|
|
3043
|
+
"funding": {
|
|
3044
|
+
"type": "github",
|
|
3045
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
"node_modules/character-entities-legacy": {
|
|
3049
|
+
"version": "3.0.0",
|
|
3050
|
+
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
|
|
3051
|
+
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
|
|
3052
|
+
"dev": true,
|
|
3053
|
+
"funding": {
|
|
3054
|
+
"type": "github",
|
|
3055
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
3056
|
+
}
|
|
3057
|
+
},
|
|
3058
|
+
"node_modules/character-reference-invalid": {
|
|
3059
|
+
"version": "2.0.1",
|
|
3060
|
+
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
|
|
3061
|
+
"integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
|
|
3062
|
+
"dev": true,
|
|
3063
|
+
"funding": {
|
|
3064
|
+
"type": "github",
|
|
3065
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
3066
|
+
}
|
|
3067
|
+
},
|
|
2949
3068
|
"node_modules/chardet": {
|
|
2950
3069
|
"version": "0.7.0",
|
|
2951
3070
|
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
|
|
@@ -3019,6 +3138,15 @@
|
|
|
3019
3138
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
3020
3139
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
3021
3140
|
},
|
|
3141
|
+
"node_modules/commander": {
|
|
3142
|
+
"version": "8.3.0",
|
|
3143
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
|
|
3144
|
+
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
|
|
3145
|
+
"dev": true,
|
|
3146
|
+
"engines": {
|
|
3147
|
+
"node": ">= 12"
|
|
3148
|
+
}
|
|
3149
|
+
},
|
|
3022
3150
|
"node_modules/concat-map": {
|
|
3023
3151
|
"version": "0.0.1",
|
|
3024
3152
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
@@ -3139,6 +3267,19 @@
|
|
|
3139
3267
|
}
|
|
3140
3268
|
}
|
|
3141
3269
|
},
|
|
3270
|
+
"node_modules/decode-named-character-reference": {
|
|
3271
|
+
"version": "1.0.2",
|
|
3272
|
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
|
|
3273
|
+
"integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
|
|
3274
|
+
"dev": true,
|
|
3275
|
+
"dependencies": {
|
|
3276
|
+
"character-entities": "^2.0.0"
|
|
3277
|
+
},
|
|
3278
|
+
"funding": {
|
|
3279
|
+
"type": "github",
|
|
3280
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3142
3283
|
"node_modules/dedent": {
|
|
3143
3284
|
"version": "1.5.1",
|
|
3144
3285
|
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz",
|
|
@@ -3199,6 +3340,15 @@
|
|
|
3199
3340
|
"url": "https://github.com/sponsors/ljharb"
|
|
3200
3341
|
}
|
|
3201
3342
|
},
|
|
3343
|
+
"node_modules/dequal": {
|
|
3344
|
+
"version": "2.0.3",
|
|
3345
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
3346
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
3347
|
+
"dev": true,
|
|
3348
|
+
"engines": {
|
|
3349
|
+
"node": ">=6"
|
|
3350
|
+
}
|
|
3351
|
+
},
|
|
3202
3352
|
"node_modules/detect-indent": {
|
|
3203
3353
|
"version": "6.1.0",
|
|
3204
3354
|
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
|
|
@@ -3217,6 +3367,19 @@
|
|
|
3217
3367
|
"node": ">=8"
|
|
3218
3368
|
}
|
|
3219
3369
|
},
|
|
3370
|
+
"node_modules/devlop": {
|
|
3371
|
+
"version": "1.1.0",
|
|
3372
|
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
|
|
3373
|
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
|
|
3374
|
+
"dev": true,
|
|
3375
|
+
"dependencies": {
|
|
3376
|
+
"dequal": "^2.0.0"
|
|
3377
|
+
},
|
|
3378
|
+
"funding": {
|
|
3379
|
+
"type": "github",
|
|
3380
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
3381
|
+
}
|
|
3382
|
+
},
|
|
3220
3383
|
"node_modules/diff-sequences": {
|
|
3221
3384
|
"version": "29.6.3",
|
|
3222
3385
|
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
|
|
@@ -3791,9 +3954,10 @@
|
|
|
3791
3954
|
}
|
|
3792
3955
|
},
|
|
3793
3956
|
"node_modules/eslint-plugin-prettier": {
|
|
3794
|
-
"version": "5.2.
|
|
3795
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.
|
|
3796
|
-
"integrity": "sha512-
|
|
3957
|
+
"version": "5.2.3",
|
|
3958
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz",
|
|
3959
|
+
"integrity": "sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==",
|
|
3960
|
+
"license": "MIT",
|
|
3797
3961
|
"dependencies": {
|
|
3798
3962
|
"prettier-linter-helpers": "^1.0.0",
|
|
3799
3963
|
"synckit": "^0.9.1"
|
|
@@ -4708,6 +4872,30 @@
|
|
|
4708
4872
|
"node": ">= 0.4"
|
|
4709
4873
|
}
|
|
4710
4874
|
},
|
|
4875
|
+
"node_modules/is-alphabetical": {
|
|
4876
|
+
"version": "2.0.1",
|
|
4877
|
+
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
|
|
4878
|
+
"integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
|
|
4879
|
+
"dev": true,
|
|
4880
|
+
"funding": {
|
|
4881
|
+
"type": "github",
|
|
4882
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
4883
|
+
}
|
|
4884
|
+
},
|
|
4885
|
+
"node_modules/is-alphanumerical": {
|
|
4886
|
+
"version": "2.0.1",
|
|
4887
|
+
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
|
|
4888
|
+
"integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
|
|
4889
|
+
"dev": true,
|
|
4890
|
+
"dependencies": {
|
|
4891
|
+
"is-alphabetical": "^2.0.0",
|
|
4892
|
+
"is-decimal": "^2.0.0"
|
|
4893
|
+
},
|
|
4894
|
+
"funding": {
|
|
4895
|
+
"type": "github",
|
|
4896
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
4897
|
+
}
|
|
4898
|
+
},
|
|
4711
4899
|
"node_modules/is-array-buffer": {
|
|
4712
4900
|
"version": "3.0.4",
|
|
4713
4901
|
"resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
|
|
@@ -4805,6 +4993,16 @@
|
|
|
4805
4993
|
"url": "https://github.com/sponsors/ljharb"
|
|
4806
4994
|
}
|
|
4807
4995
|
},
|
|
4996
|
+
"node_modules/is-decimal": {
|
|
4997
|
+
"version": "2.0.1",
|
|
4998
|
+
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
|
|
4999
|
+
"integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
|
|
5000
|
+
"dev": true,
|
|
5001
|
+
"funding": {
|
|
5002
|
+
"type": "github",
|
|
5003
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
5004
|
+
}
|
|
5005
|
+
},
|
|
4808
5006
|
"node_modules/is-extglob": {
|
|
4809
5007
|
"version": "2.1.1",
|
|
4810
5008
|
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
@@ -4842,6 +5040,16 @@
|
|
|
4842
5040
|
"node": ">=0.10.0"
|
|
4843
5041
|
}
|
|
4844
5042
|
},
|
|
5043
|
+
"node_modules/is-hexadecimal": {
|
|
5044
|
+
"version": "2.0.1",
|
|
5045
|
+
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
|
|
5046
|
+
"integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
|
|
5047
|
+
"dev": true,
|
|
5048
|
+
"funding": {
|
|
5049
|
+
"type": "github",
|
|
5050
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
5051
|
+
}
|
|
5052
|
+
},
|
|
4845
5053
|
"node_modules/is-negative-zero": {
|
|
4846
5054
|
"version": "2.0.3",
|
|
4847
5055
|
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
|
|
@@ -5792,6 +6000,22 @@
|
|
|
5792
6000
|
"node": ">=4.0"
|
|
5793
6001
|
}
|
|
5794
6002
|
},
|
|
6003
|
+
"node_modules/katex": {
|
|
6004
|
+
"version": "0.16.19",
|
|
6005
|
+
"resolved": "https://registry.npmjs.org/katex/-/katex-0.16.19.tgz",
|
|
6006
|
+
"integrity": "sha512-3IA6DYVhxhBabjSLTNO9S4+OliA3Qvb8pBQXMfC4WxXJgLwZgnfDl0BmB4z6nBMdznBsZ+CGM8DrGZ5hcguDZg==",
|
|
6007
|
+
"dev": true,
|
|
6008
|
+
"funding": [
|
|
6009
|
+
"https://opencollective.com/katex",
|
|
6010
|
+
"https://github.com/sponsors/katex"
|
|
6011
|
+
],
|
|
6012
|
+
"dependencies": {
|
|
6013
|
+
"commander": "^8.3.0"
|
|
6014
|
+
},
|
|
6015
|
+
"bin": {
|
|
6016
|
+
"katex": "cli.js"
|
|
6017
|
+
}
|
|
6018
|
+
},
|
|
5795
6019
|
"node_modules/kleur": {
|
|
5796
6020
|
"version": "3.0.3",
|
|
5797
6021
|
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
|
|
@@ -5963,13 +6187,20 @@
|
|
|
5963
6187
|
"dev": true
|
|
5964
6188
|
},
|
|
5965
6189
|
"node_modules/markdownlint": {
|
|
5966
|
-
"version": "0.
|
|
5967
|
-
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.
|
|
5968
|
-
"integrity": "sha512-
|
|
6190
|
+
"version": "0.37.3",
|
|
6191
|
+
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.37.3.tgz",
|
|
6192
|
+
"integrity": "sha512-eoQqH0291YCCjd+Pe1PUQ9AmWthlVmS0XWgcionkZ8q34ceZyRI+pYvsWksXJJL8OBkWCPwp1h/pnXxrPFC4oA==",
|
|
5969
6193
|
"dev": true,
|
|
5970
6194
|
"dependencies": {
|
|
5971
6195
|
"markdown-it": "14.1.0",
|
|
5972
|
-
"
|
|
6196
|
+
"micromark": "4.0.1",
|
|
6197
|
+
"micromark-core-commonmark": "2.0.2",
|
|
6198
|
+
"micromark-extension-directive": "3.0.2",
|
|
6199
|
+
"micromark-extension-gfm-autolink-literal": "2.1.0",
|
|
6200
|
+
"micromark-extension-gfm-footnote": "2.1.0",
|
|
6201
|
+
"micromark-extension-gfm-table": "2.1.0",
|
|
6202
|
+
"micromark-extension-math": "3.1.0",
|
|
6203
|
+
"micromark-util-types": "2.0.1"
|
|
5973
6204
|
},
|
|
5974
6205
|
"engines": {
|
|
5975
6206
|
"node": ">=18"
|
|
@@ -5979,20 +6210,20 @@
|
|
|
5979
6210
|
}
|
|
5980
6211
|
},
|
|
5981
6212
|
"node_modules/markdownlint-cli2": {
|
|
5982
|
-
"version": "0.
|
|
5983
|
-
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.
|
|
5984
|
-
"integrity": "sha512-
|
|
6213
|
+
"version": "0.17.1",
|
|
6214
|
+
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.17.1.tgz",
|
|
6215
|
+
"integrity": "sha512-n1Im9lhKJJE12/u2N0GWBwPqeb0HGdylN8XpSFg9hbj35+QalY9Vi6mxwUQdG6wlSrrIq9ZDQ0Q85AQG9V2WOg==",
|
|
5985
6216
|
"dev": true,
|
|
5986
6217
|
"dependencies": {
|
|
5987
6218
|
"globby": "14.0.2",
|
|
5988
6219
|
"js-yaml": "4.1.0",
|
|
5989
6220
|
"jsonc-parser": "3.3.1",
|
|
5990
|
-
"markdownlint": "0.
|
|
6221
|
+
"markdownlint": "0.37.3",
|
|
5991
6222
|
"markdownlint-cli2-formatter-default": "0.0.5",
|
|
5992
6223
|
"micromatch": "4.0.8"
|
|
5993
6224
|
},
|
|
5994
6225
|
"bin": {
|
|
5995
|
-
"markdownlint-cli2": "markdownlint-cli2.
|
|
6226
|
+
"markdownlint-cli2": "markdownlint-cli2-bin.mjs"
|
|
5996
6227
|
},
|
|
5997
6228
|
"engines": {
|
|
5998
6229
|
"node": ">=18"
|
|
@@ -6149,37 +6380,536 @@
|
|
|
6149
6380
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
6150
6381
|
}
|
|
6151
6382
|
},
|
|
6152
|
-
"node_modules/markdownlint-micromark": {
|
|
6153
|
-
"version": "0.1.10",
|
|
6154
|
-
"resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.10.tgz",
|
|
6155
|
-
"integrity": "sha512-no5ZfdqAdWGxftCLlySHSgddEjyW4kui4z7amQcGsSKfYC5v/ou+8mIQVyg9KQMeEZLNtz9OPDTj7nnTnoR4FQ==",
|
|
6156
|
-
"dev": true,
|
|
6157
|
-
"engines": {
|
|
6158
|
-
"node": ">=18"
|
|
6159
|
-
},
|
|
6160
|
-
"funding": {
|
|
6161
|
-
"url": "https://github.com/sponsors/DavidAnson"
|
|
6162
|
-
}
|
|
6163
|
-
},
|
|
6164
6383
|
"node_modules/mdurl": {
|
|
6165
6384
|
"version": "2.0.0",
|
|
6166
6385
|
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
|
|
6167
6386
|
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
|
|
6168
6387
|
"dev": true
|
|
6169
6388
|
},
|
|
6170
|
-
"node_modules/merge-stream": {
|
|
6171
|
-
"version": "2.0.0",
|
|
6172
|
-
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
|
6173
|
-
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
|
|
6174
|
-
"dev": true
|
|
6389
|
+
"node_modules/merge-stream": {
|
|
6390
|
+
"version": "2.0.0",
|
|
6391
|
+
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
|
6392
|
+
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
|
|
6393
|
+
"dev": true
|
|
6394
|
+
},
|
|
6395
|
+
"node_modules/merge2": {
|
|
6396
|
+
"version": "1.4.1",
|
|
6397
|
+
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
|
6398
|
+
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
|
|
6399
|
+
"engines": {
|
|
6400
|
+
"node": ">= 8"
|
|
6401
|
+
}
|
|
6402
|
+
},
|
|
6403
|
+
"node_modules/micromark": {
|
|
6404
|
+
"version": "4.0.1",
|
|
6405
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz",
|
|
6406
|
+
"integrity": "sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==",
|
|
6407
|
+
"dev": true,
|
|
6408
|
+
"funding": [
|
|
6409
|
+
{
|
|
6410
|
+
"type": "GitHub Sponsors",
|
|
6411
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6412
|
+
},
|
|
6413
|
+
{
|
|
6414
|
+
"type": "OpenCollective",
|
|
6415
|
+
"url": "https://opencollective.com/unified"
|
|
6416
|
+
}
|
|
6417
|
+
],
|
|
6418
|
+
"dependencies": {
|
|
6419
|
+
"@types/debug": "^4.0.0",
|
|
6420
|
+
"debug": "^4.0.0",
|
|
6421
|
+
"decode-named-character-reference": "^1.0.0",
|
|
6422
|
+
"devlop": "^1.0.0",
|
|
6423
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
6424
|
+
"micromark-factory-space": "^2.0.0",
|
|
6425
|
+
"micromark-util-character": "^2.0.0",
|
|
6426
|
+
"micromark-util-chunked": "^2.0.0",
|
|
6427
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
6428
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
6429
|
+
"micromark-util-encode": "^2.0.0",
|
|
6430
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
6431
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
6432
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
6433
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
6434
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6435
|
+
"micromark-util-types": "^2.0.0"
|
|
6436
|
+
}
|
|
6437
|
+
},
|
|
6438
|
+
"node_modules/micromark-core-commonmark": {
|
|
6439
|
+
"version": "2.0.2",
|
|
6440
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz",
|
|
6441
|
+
"integrity": "sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==",
|
|
6442
|
+
"dev": true,
|
|
6443
|
+
"funding": [
|
|
6444
|
+
{
|
|
6445
|
+
"type": "GitHub Sponsors",
|
|
6446
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6447
|
+
},
|
|
6448
|
+
{
|
|
6449
|
+
"type": "OpenCollective",
|
|
6450
|
+
"url": "https://opencollective.com/unified"
|
|
6451
|
+
}
|
|
6452
|
+
],
|
|
6453
|
+
"dependencies": {
|
|
6454
|
+
"decode-named-character-reference": "^1.0.0",
|
|
6455
|
+
"devlop": "^1.0.0",
|
|
6456
|
+
"micromark-factory-destination": "^2.0.0",
|
|
6457
|
+
"micromark-factory-label": "^2.0.0",
|
|
6458
|
+
"micromark-factory-space": "^2.0.0",
|
|
6459
|
+
"micromark-factory-title": "^2.0.0",
|
|
6460
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
6461
|
+
"micromark-util-character": "^2.0.0",
|
|
6462
|
+
"micromark-util-chunked": "^2.0.0",
|
|
6463
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
6464
|
+
"micromark-util-html-tag-name": "^2.0.0",
|
|
6465
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
6466
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
6467
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
6468
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6469
|
+
"micromark-util-types": "^2.0.0"
|
|
6470
|
+
}
|
|
6471
|
+
},
|
|
6472
|
+
"node_modules/micromark-extension-directive": {
|
|
6473
|
+
"version": "3.0.2",
|
|
6474
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz",
|
|
6475
|
+
"integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==",
|
|
6476
|
+
"dev": true,
|
|
6477
|
+
"dependencies": {
|
|
6478
|
+
"devlop": "^1.0.0",
|
|
6479
|
+
"micromark-factory-space": "^2.0.0",
|
|
6480
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
6481
|
+
"micromark-util-character": "^2.0.0",
|
|
6482
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6483
|
+
"micromark-util-types": "^2.0.0",
|
|
6484
|
+
"parse-entities": "^4.0.0"
|
|
6485
|
+
},
|
|
6486
|
+
"funding": {
|
|
6487
|
+
"type": "opencollective",
|
|
6488
|
+
"url": "https://opencollective.com/unified"
|
|
6489
|
+
}
|
|
6490
|
+
},
|
|
6491
|
+
"node_modules/micromark-extension-gfm-autolink-literal": {
|
|
6492
|
+
"version": "2.1.0",
|
|
6493
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
|
|
6494
|
+
"integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
|
|
6495
|
+
"dev": true,
|
|
6496
|
+
"dependencies": {
|
|
6497
|
+
"micromark-util-character": "^2.0.0",
|
|
6498
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
6499
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6500
|
+
"micromark-util-types": "^2.0.0"
|
|
6501
|
+
},
|
|
6502
|
+
"funding": {
|
|
6503
|
+
"type": "opencollective",
|
|
6504
|
+
"url": "https://opencollective.com/unified"
|
|
6505
|
+
}
|
|
6506
|
+
},
|
|
6507
|
+
"node_modules/micromark-extension-gfm-footnote": {
|
|
6508
|
+
"version": "2.1.0",
|
|
6509
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
|
|
6510
|
+
"integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
|
|
6511
|
+
"dev": true,
|
|
6512
|
+
"dependencies": {
|
|
6513
|
+
"devlop": "^1.0.0",
|
|
6514
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
6515
|
+
"micromark-factory-space": "^2.0.0",
|
|
6516
|
+
"micromark-util-character": "^2.0.0",
|
|
6517
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
6518
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
6519
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6520
|
+
"micromark-util-types": "^2.0.0"
|
|
6521
|
+
},
|
|
6522
|
+
"funding": {
|
|
6523
|
+
"type": "opencollective",
|
|
6524
|
+
"url": "https://opencollective.com/unified"
|
|
6525
|
+
}
|
|
6526
|
+
},
|
|
6527
|
+
"node_modules/micromark-extension-gfm-table": {
|
|
6528
|
+
"version": "2.1.0",
|
|
6529
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.0.tgz",
|
|
6530
|
+
"integrity": "sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==",
|
|
6531
|
+
"dev": true,
|
|
6532
|
+
"dependencies": {
|
|
6533
|
+
"devlop": "^1.0.0",
|
|
6534
|
+
"micromark-factory-space": "^2.0.0",
|
|
6535
|
+
"micromark-util-character": "^2.0.0",
|
|
6536
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6537
|
+
"micromark-util-types": "^2.0.0"
|
|
6538
|
+
},
|
|
6539
|
+
"funding": {
|
|
6540
|
+
"type": "opencollective",
|
|
6541
|
+
"url": "https://opencollective.com/unified"
|
|
6542
|
+
}
|
|
6543
|
+
},
|
|
6544
|
+
"node_modules/micromark-extension-math": {
|
|
6545
|
+
"version": "3.1.0",
|
|
6546
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz",
|
|
6547
|
+
"integrity": "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==",
|
|
6548
|
+
"dev": true,
|
|
6549
|
+
"dependencies": {
|
|
6550
|
+
"@types/katex": "^0.16.0",
|
|
6551
|
+
"devlop": "^1.0.0",
|
|
6552
|
+
"katex": "^0.16.0",
|
|
6553
|
+
"micromark-factory-space": "^2.0.0",
|
|
6554
|
+
"micromark-util-character": "^2.0.0",
|
|
6555
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6556
|
+
"micromark-util-types": "^2.0.0"
|
|
6557
|
+
},
|
|
6558
|
+
"funding": {
|
|
6559
|
+
"type": "opencollective",
|
|
6560
|
+
"url": "https://opencollective.com/unified"
|
|
6561
|
+
}
|
|
6562
|
+
},
|
|
6563
|
+
"node_modules/micromark-factory-destination": {
|
|
6564
|
+
"version": "2.0.1",
|
|
6565
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
|
|
6566
|
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
|
|
6567
|
+
"dev": true,
|
|
6568
|
+
"funding": [
|
|
6569
|
+
{
|
|
6570
|
+
"type": "GitHub Sponsors",
|
|
6571
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6572
|
+
},
|
|
6573
|
+
{
|
|
6574
|
+
"type": "OpenCollective",
|
|
6575
|
+
"url": "https://opencollective.com/unified"
|
|
6576
|
+
}
|
|
6577
|
+
],
|
|
6578
|
+
"dependencies": {
|
|
6579
|
+
"micromark-util-character": "^2.0.0",
|
|
6580
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6581
|
+
"micromark-util-types": "^2.0.0"
|
|
6582
|
+
}
|
|
6583
|
+
},
|
|
6584
|
+
"node_modules/micromark-factory-label": {
|
|
6585
|
+
"version": "2.0.1",
|
|
6586
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
|
|
6587
|
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
|
|
6588
|
+
"dev": true,
|
|
6589
|
+
"funding": [
|
|
6590
|
+
{
|
|
6591
|
+
"type": "GitHub Sponsors",
|
|
6592
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6593
|
+
},
|
|
6594
|
+
{
|
|
6595
|
+
"type": "OpenCollective",
|
|
6596
|
+
"url": "https://opencollective.com/unified"
|
|
6597
|
+
}
|
|
6598
|
+
],
|
|
6599
|
+
"dependencies": {
|
|
6600
|
+
"devlop": "^1.0.0",
|
|
6601
|
+
"micromark-util-character": "^2.0.0",
|
|
6602
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6603
|
+
"micromark-util-types": "^2.0.0"
|
|
6604
|
+
}
|
|
6605
|
+
},
|
|
6606
|
+
"node_modules/micromark-factory-space": {
|
|
6607
|
+
"version": "2.0.1",
|
|
6608
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
|
|
6609
|
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
|
|
6610
|
+
"dev": true,
|
|
6611
|
+
"funding": [
|
|
6612
|
+
{
|
|
6613
|
+
"type": "GitHub Sponsors",
|
|
6614
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6615
|
+
},
|
|
6616
|
+
{
|
|
6617
|
+
"type": "OpenCollective",
|
|
6618
|
+
"url": "https://opencollective.com/unified"
|
|
6619
|
+
}
|
|
6620
|
+
],
|
|
6621
|
+
"dependencies": {
|
|
6622
|
+
"micromark-util-character": "^2.0.0",
|
|
6623
|
+
"micromark-util-types": "^2.0.0"
|
|
6624
|
+
}
|
|
6625
|
+
},
|
|
6626
|
+
"node_modules/micromark-factory-title": {
|
|
6627
|
+
"version": "2.0.1",
|
|
6628
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
|
|
6629
|
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
|
|
6630
|
+
"dev": true,
|
|
6631
|
+
"funding": [
|
|
6632
|
+
{
|
|
6633
|
+
"type": "GitHub Sponsors",
|
|
6634
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6635
|
+
},
|
|
6636
|
+
{
|
|
6637
|
+
"type": "OpenCollective",
|
|
6638
|
+
"url": "https://opencollective.com/unified"
|
|
6639
|
+
}
|
|
6640
|
+
],
|
|
6641
|
+
"dependencies": {
|
|
6642
|
+
"micromark-factory-space": "^2.0.0",
|
|
6643
|
+
"micromark-util-character": "^2.0.0",
|
|
6644
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6645
|
+
"micromark-util-types": "^2.0.0"
|
|
6646
|
+
}
|
|
6647
|
+
},
|
|
6648
|
+
"node_modules/micromark-factory-whitespace": {
|
|
6649
|
+
"version": "2.0.1",
|
|
6650
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
|
|
6651
|
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
|
|
6652
|
+
"dev": true,
|
|
6653
|
+
"funding": [
|
|
6654
|
+
{
|
|
6655
|
+
"type": "GitHub Sponsors",
|
|
6656
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6657
|
+
},
|
|
6658
|
+
{
|
|
6659
|
+
"type": "OpenCollective",
|
|
6660
|
+
"url": "https://opencollective.com/unified"
|
|
6661
|
+
}
|
|
6662
|
+
],
|
|
6663
|
+
"dependencies": {
|
|
6664
|
+
"micromark-factory-space": "^2.0.0",
|
|
6665
|
+
"micromark-util-character": "^2.0.0",
|
|
6666
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6667
|
+
"micromark-util-types": "^2.0.0"
|
|
6668
|
+
}
|
|
6669
|
+
},
|
|
6670
|
+
"node_modules/micromark-util-character": {
|
|
6671
|
+
"version": "2.1.1",
|
|
6672
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
|
|
6673
|
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
|
|
6674
|
+
"dev": true,
|
|
6675
|
+
"funding": [
|
|
6676
|
+
{
|
|
6677
|
+
"type": "GitHub Sponsors",
|
|
6678
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6679
|
+
},
|
|
6680
|
+
{
|
|
6681
|
+
"type": "OpenCollective",
|
|
6682
|
+
"url": "https://opencollective.com/unified"
|
|
6683
|
+
}
|
|
6684
|
+
],
|
|
6685
|
+
"dependencies": {
|
|
6686
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6687
|
+
"micromark-util-types": "^2.0.0"
|
|
6688
|
+
}
|
|
6689
|
+
},
|
|
6690
|
+
"node_modules/micromark-util-chunked": {
|
|
6691
|
+
"version": "2.0.1",
|
|
6692
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
|
|
6693
|
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
|
|
6694
|
+
"dev": true,
|
|
6695
|
+
"funding": [
|
|
6696
|
+
{
|
|
6697
|
+
"type": "GitHub Sponsors",
|
|
6698
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6699
|
+
},
|
|
6700
|
+
{
|
|
6701
|
+
"type": "OpenCollective",
|
|
6702
|
+
"url": "https://opencollective.com/unified"
|
|
6703
|
+
}
|
|
6704
|
+
],
|
|
6705
|
+
"dependencies": {
|
|
6706
|
+
"micromark-util-symbol": "^2.0.0"
|
|
6707
|
+
}
|
|
6708
|
+
},
|
|
6709
|
+
"node_modules/micromark-util-classify-character": {
|
|
6710
|
+
"version": "2.0.1",
|
|
6711
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
|
|
6712
|
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
|
|
6713
|
+
"dev": true,
|
|
6714
|
+
"funding": [
|
|
6715
|
+
{
|
|
6716
|
+
"type": "GitHub Sponsors",
|
|
6717
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6718
|
+
},
|
|
6719
|
+
{
|
|
6720
|
+
"type": "OpenCollective",
|
|
6721
|
+
"url": "https://opencollective.com/unified"
|
|
6722
|
+
}
|
|
6723
|
+
],
|
|
6724
|
+
"dependencies": {
|
|
6725
|
+
"micromark-util-character": "^2.0.0",
|
|
6726
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6727
|
+
"micromark-util-types": "^2.0.0"
|
|
6728
|
+
}
|
|
6729
|
+
},
|
|
6730
|
+
"node_modules/micromark-util-combine-extensions": {
|
|
6731
|
+
"version": "2.0.1",
|
|
6732
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
|
|
6733
|
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
|
|
6734
|
+
"dev": true,
|
|
6735
|
+
"funding": [
|
|
6736
|
+
{
|
|
6737
|
+
"type": "GitHub Sponsors",
|
|
6738
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6739
|
+
},
|
|
6740
|
+
{
|
|
6741
|
+
"type": "OpenCollective",
|
|
6742
|
+
"url": "https://opencollective.com/unified"
|
|
6743
|
+
}
|
|
6744
|
+
],
|
|
6745
|
+
"dependencies": {
|
|
6746
|
+
"micromark-util-chunked": "^2.0.0",
|
|
6747
|
+
"micromark-util-types": "^2.0.0"
|
|
6748
|
+
}
|
|
6749
|
+
},
|
|
6750
|
+
"node_modules/micromark-util-decode-numeric-character-reference": {
|
|
6751
|
+
"version": "2.0.2",
|
|
6752
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
|
|
6753
|
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
|
|
6754
|
+
"dev": true,
|
|
6755
|
+
"funding": [
|
|
6756
|
+
{
|
|
6757
|
+
"type": "GitHub Sponsors",
|
|
6758
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6759
|
+
},
|
|
6760
|
+
{
|
|
6761
|
+
"type": "OpenCollective",
|
|
6762
|
+
"url": "https://opencollective.com/unified"
|
|
6763
|
+
}
|
|
6764
|
+
],
|
|
6765
|
+
"dependencies": {
|
|
6766
|
+
"micromark-util-symbol": "^2.0.0"
|
|
6767
|
+
}
|
|
6768
|
+
},
|
|
6769
|
+
"node_modules/micromark-util-encode": {
|
|
6770
|
+
"version": "2.0.1",
|
|
6771
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
|
|
6772
|
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
|
|
6773
|
+
"dev": true,
|
|
6774
|
+
"funding": [
|
|
6775
|
+
{
|
|
6776
|
+
"type": "GitHub Sponsors",
|
|
6777
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6778
|
+
},
|
|
6779
|
+
{
|
|
6780
|
+
"type": "OpenCollective",
|
|
6781
|
+
"url": "https://opencollective.com/unified"
|
|
6782
|
+
}
|
|
6783
|
+
]
|
|
6784
|
+
},
|
|
6785
|
+
"node_modules/micromark-util-html-tag-name": {
|
|
6786
|
+
"version": "2.0.1",
|
|
6787
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
|
|
6788
|
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
|
|
6789
|
+
"dev": true,
|
|
6790
|
+
"funding": [
|
|
6791
|
+
{
|
|
6792
|
+
"type": "GitHub Sponsors",
|
|
6793
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6794
|
+
},
|
|
6795
|
+
{
|
|
6796
|
+
"type": "OpenCollective",
|
|
6797
|
+
"url": "https://opencollective.com/unified"
|
|
6798
|
+
}
|
|
6799
|
+
]
|
|
6800
|
+
},
|
|
6801
|
+
"node_modules/micromark-util-normalize-identifier": {
|
|
6802
|
+
"version": "2.0.1",
|
|
6803
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
|
|
6804
|
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
|
|
6805
|
+
"dev": true,
|
|
6806
|
+
"funding": [
|
|
6807
|
+
{
|
|
6808
|
+
"type": "GitHub Sponsors",
|
|
6809
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6810
|
+
},
|
|
6811
|
+
{
|
|
6812
|
+
"type": "OpenCollective",
|
|
6813
|
+
"url": "https://opencollective.com/unified"
|
|
6814
|
+
}
|
|
6815
|
+
],
|
|
6816
|
+
"dependencies": {
|
|
6817
|
+
"micromark-util-symbol": "^2.0.0"
|
|
6818
|
+
}
|
|
6819
|
+
},
|
|
6820
|
+
"node_modules/micromark-util-resolve-all": {
|
|
6821
|
+
"version": "2.0.1",
|
|
6822
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
|
|
6823
|
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
|
|
6824
|
+
"dev": true,
|
|
6825
|
+
"funding": [
|
|
6826
|
+
{
|
|
6827
|
+
"type": "GitHub Sponsors",
|
|
6828
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6829
|
+
},
|
|
6830
|
+
{
|
|
6831
|
+
"type": "OpenCollective",
|
|
6832
|
+
"url": "https://opencollective.com/unified"
|
|
6833
|
+
}
|
|
6834
|
+
],
|
|
6835
|
+
"dependencies": {
|
|
6836
|
+
"micromark-util-types": "^2.0.0"
|
|
6837
|
+
}
|
|
6838
|
+
},
|
|
6839
|
+
"node_modules/micromark-util-sanitize-uri": {
|
|
6840
|
+
"version": "2.0.1",
|
|
6841
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
|
|
6842
|
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
|
|
6843
|
+
"dev": true,
|
|
6844
|
+
"funding": [
|
|
6845
|
+
{
|
|
6846
|
+
"type": "GitHub Sponsors",
|
|
6847
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6848
|
+
},
|
|
6849
|
+
{
|
|
6850
|
+
"type": "OpenCollective",
|
|
6851
|
+
"url": "https://opencollective.com/unified"
|
|
6852
|
+
}
|
|
6853
|
+
],
|
|
6854
|
+
"dependencies": {
|
|
6855
|
+
"micromark-util-character": "^2.0.0",
|
|
6856
|
+
"micromark-util-encode": "^2.0.0",
|
|
6857
|
+
"micromark-util-symbol": "^2.0.0"
|
|
6858
|
+
}
|
|
6859
|
+
},
|
|
6860
|
+
"node_modules/micromark-util-subtokenize": {
|
|
6861
|
+
"version": "2.0.3",
|
|
6862
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.3.tgz",
|
|
6863
|
+
"integrity": "sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==",
|
|
6864
|
+
"dev": true,
|
|
6865
|
+
"funding": [
|
|
6866
|
+
{
|
|
6867
|
+
"type": "GitHub Sponsors",
|
|
6868
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6869
|
+
},
|
|
6870
|
+
{
|
|
6871
|
+
"type": "OpenCollective",
|
|
6872
|
+
"url": "https://opencollective.com/unified"
|
|
6873
|
+
}
|
|
6874
|
+
],
|
|
6875
|
+
"dependencies": {
|
|
6876
|
+
"devlop": "^1.0.0",
|
|
6877
|
+
"micromark-util-chunked": "^2.0.0",
|
|
6878
|
+
"micromark-util-symbol": "^2.0.0",
|
|
6879
|
+
"micromark-util-types": "^2.0.0"
|
|
6880
|
+
}
|
|
6881
|
+
},
|
|
6882
|
+
"node_modules/micromark-util-symbol": {
|
|
6883
|
+
"version": "2.0.1",
|
|
6884
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
|
|
6885
|
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
|
|
6886
|
+
"dev": true,
|
|
6887
|
+
"funding": [
|
|
6888
|
+
{
|
|
6889
|
+
"type": "GitHub Sponsors",
|
|
6890
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6891
|
+
},
|
|
6892
|
+
{
|
|
6893
|
+
"type": "OpenCollective",
|
|
6894
|
+
"url": "https://opencollective.com/unified"
|
|
6895
|
+
}
|
|
6896
|
+
]
|
|
6175
6897
|
},
|
|
6176
|
-
"node_modules/
|
|
6177
|
-
"version": "
|
|
6178
|
-
"resolved": "https://registry.npmjs.org/
|
|
6179
|
-
"integrity": "sha512-
|
|
6180
|
-
"
|
|
6181
|
-
|
|
6182
|
-
|
|
6898
|
+
"node_modules/micromark-util-types": {
|
|
6899
|
+
"version": "2.0.1",
|
|
6900
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz",
|
|
6901
|
+
"integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==",
|
|
6902
|
+
"dev": true,
|
|
6903
|
+
"funding": [
|
|
6904
|
+
{
|
|
6905
|
+
"type": "GitHub Sponsors",
|
|
6906
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
6907
|
+
},
|
|
6908
|
+
{
|
|
6909
|
+
"type": "OpenCollective",
|
|
6910
|
+
"url": "https://opencollective.com/unified"
|
|
6911
|
+
}
|
|
6912
|
+
]
|
|
6183
6913
|
},
|
|
6184
6914
|
"node_modules/micromatch": {
|
|
6185
6915
|
"version": "4.0.8",
|
|
@@ -6478,6 +7208,25 @@
|
|
|
6478
7208
|
"node": ">=6"
|
|
6479
7209
|
}
|
|
6480
7210
|
},
|
|
7211
|
+
"node_modules/parse-entities": {
|
|
7212
|
+
"version": "4.0.2",
|
|
7213
|
+
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
|
|
7214
|
+
"integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
|
|
7215
|
+
"dev": true,
|
|
7216
|
+
"dependencies": {
|
|
7217
|
+
"@types/unist": "^2.0.0",
|
|
7218
|
+
"character-entities-legacy": "^3.0.0",
|
|
7219
|
+
"character-reference-invalid": "^2.0.0",
|
|
7220
|
+
"decode-named-character-reference": "^1.0.0",
|
|
7221
|
+
"is-alphanumerical": "^2.0.0",
|
|
7222
|
+
"is-decimal": "^2.0.0",
|
|
7223
|
+
"is-hexadecimal": "^2.0.0"
|
|
7224
|
+
},
|
|
7225
|
+
"funding": {
|
|
7226
|
+
"type": "github",
|
|
7227
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
7228
|
+
}
|
|
7229
|
+
},
|
|
6481
7230
|
"node_modules/parse-json": {
|
|
6482
7231
|
"version": "5.2.0",
|
|
6483
7232
|
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|
|
@@ -9200,6 +9949,15 @@
|
|
|
9200
9949
|
"@babel/types": "^7.20.7"
|
|
9201
9950
|
}
|
|
9202
9951
|
},
|
|
9952
|
+
"@types/debug": {
|
|
9953
|
+
"version": "4.1.12",
|
|
9954
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
9955
|
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
|
|
9956
|
+
"dev": true,
|
|
9957
|
+
"requires": {
|
|
9958
|
+
"@types/ms": "*"
|
|
9959
|
+
}
|
|
9960
|
+
},
|
|
9203
9961
|
"@types/graceful-fs": {
|
|
9204
9962
|
"version": "4.1.8",
|
|
9205
9963
|
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.8.tgz",
|
|
@@ -9253,6 +10011,18 @@
|
|
|
9253
10011
|
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
|
|
9254
10012
|
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
|
|
9255
10013
|
},
|
|
10014
|
+
"@types/katex": {
|
|
10015
|
+
"version": "0.16.7",
|
|
10016
|
+
"resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.7.tgz",
|
|
10017
|
+
"integrity": "sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==",
|
|
10018
|
+
"dev": true
|
|
10019
|
+
},
|
|
10020
|
+
"@types/ms": {
|
|
10021
|
+
"version": "0.7.34",
|
|
10022
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz",
|
|
10023
|
+
"integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==",
|
|
10024
|
+
"dev": true
|
|
10025
|
+
},
|
|
9256
10026
|
"@types/node": {
|
|
9257
10027
|
"version": "20.8.7",
|
|
9258
10028
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.7.tgz",
|
|
@@ -9273,6 +10043,12 @@
|
|
|
9273
10043
|
"integrity": "sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==",
|
|
9274
10044
|
"dev": true
|
|
9275
10045
|
},
|
|
10046
|
+
"@types/unist": {
|
|
10047
|
+
"version": "2.0.11",
|
|
10048
|
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
|
|
10049
|
+
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
|
|
10050
|
+
"dev": true
|
|
10051
|
+
},
|
|
9276
10052
|
"@types/yargs": {
|
|
9277
10053
|
"version": "17.0.29",
|
|
9278
10054
|
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.29.tgz",
|
|
@@ -9356,6 +10132,16 @@
|
|
|
9356
10132
|
"semver": "^7.6.0"
|
|
9357
10133
|
},
|
|
9358
10134
|
"dependencies": {
|
|
10135
|
+
"@typescript-eslint/scope-manager": {
|
|
10136
|
+
"version": "7.16.0",
|
|
10137
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.0.tgz",
|
|
10138
|
+
"integrity": "sha512-8gVv3kW6n01Q6TrI1cmTZ9YMFi3ucDT7i7aI5lEikk2ebk1AEjrwX8MDTdaX5D7fPXMBLvnsaa0IFTAu+jcfOw==",
|
|
10139
|
+
"dev": true,
|
|
10140
|
+
"requires": {
|
|
10141
|
+
"@typescript-eslint/types": "7.16.0",
|
|
10142
|
+
"@typescript-eslint/visitor-keys": "7.16.0"
|
|
10143
|
+
}
|
|
10144
|
+
},
|
|
9359
10145
|
"@typescript-eslint/types": {
|
|
9360
10146
|
"version": "7.16.0",
|
|
9361
10147
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.0.tgz",
|
|
@@ -9378,6 +10164,18 @@
|
|
|
9378
10164
|
"ts-api-utils": "^1.3.0"
|
|
9379
10165
|
}
|
|
9380
10166
|
},
|
|
10167
|
+
"@typescript-eslint/utils": {
|
|
10168
|
+
"version": "7.16.0",
|
|
10169
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.0.tgz",
|
|
10170
|
+
"integrity": "sha512-PqP4kP3hb4r7Jav+NiRCntlVzhxBNWq6ZQ+zQwII1y/G/1gdIPeYDCKr2+dH6049yJQsWZiHU6RlwvIFBXXGNA==",
|
|
10171
|
+
"dev": true,
|
|
10172
|
+
"requires": {
|
|
10173
|
+
"@eslint-community/eslint-utils": "^4.4.0",
|
|
10174
|
+
"@typescript-eslint/scope-manager": "7.16.0",
|
|
10175
|
+
"@typescript-eslint/types": "7.16.0",
|
|
10176
|
+
"@typescript-eslint/typescript-estree": "7.16.0"
|
|
10177
|
+
}
|
|
10178
|
+
},
|
|
9381
10179
|
"@typescript-eslint/visitor-keys": {
|
|
9382
10180
|
"version": "7.16.0",
|
|
9383
10181
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.0.tgz",
|
|
@@ -9502,52 +10300,52 @@
|
|
|
9502
10300
|
}
|
|
9503
10301
|
},
|
|
9504
10302
|
"@typescript-eslint/utils": {
|
|
9505
|
-
"version": "
|
|
9506
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-
|
|
9507
|
-
"integrity": "sha512-
|
|
10303
|
+
"version": "8.24.0",
|
|
10304
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.24.0.tgz",
|
|
10305
|
+
"integrity": "sha512-07rLuUBElvvEb1ICnafYWr4hk8/U7X9RDCOqd9JcAMtjh/9oRmcfN4yGzbPVirgMR0+HLVHehmu19CWeh7fsmQ==",
|
|
9508
10306
|
"requires": {
|
|
9509
10307
|
"@eslint-community/eslint-utils": "^4.4.0",
|
|
9510
|
-
"@typescript-eslint/scope-manager": "
|
|
9511
|
-
"@typescript-eslint/types": "
|
|
9512
|
-
"@typescript-eslint/typescript-estree": "
|
|
10308
|
+
"@typescript-eslint/scope-manager": "8.24.0",
|
|
10309
|
+
"@typescript-eslint/types": "8.24.0",
|
|
10310
|
+
"@typescript-eslint/typescript-estree": "8.24.0"
|
|
9513
10311
|
},
|
|
9514
10312
|
"dependencies": {
|
|
9515
10313
|
"@typescript-eslint/scope-manager": {
|
|
9516
|
-
"version": "
|
|
9517
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-
|
|
9518
|
-
"integrity": "sha512-
|
|
10314
|
+
"version": "8.24.0",
|
|
10315
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.24.0.tgz",
|
|
10316
|
+
"integrity": "sha512-HZIX0UByphEtdVBKaQBgTDdn9z16l4aTUz8e8zPQnyxwHBtf5vtl1L+OhH+m1FGV9DrRmoDuYKqzVrvWDcDozw==",
|
|
9519
10317
|
"requires": {
|
|
9520
|
-
"@typescript-eslint/types": "
|
|
9521
|
-
"@typescript-eslint/visitor-keys": "
|
|
10318
|
+
"@typescript-eslint/types": "8.24.0",
|
|
10319
|
+
"@typescript-eslint/visitor-keys": "8.24.0"
|
|
9522
10320
|
}
|
|
9523
10321
|
},
|
|
9524
10322
|
"@typescript-eslint/types": {
|
|
9525
|
-
"version": "
|
|
9526
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-
|
|
9527
|
-
"integrity": "sha512-
|
|
10323
|
+
"version": "8.24.0",
|
|
10324
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.24.0.tgz",
|
|
10325
|
+
"integrity": "sha512-VacJCBTyje7HGAw7xp11q439A+zeGG0p0/p2zsZwpnMzjPB5WteaWqt4g2iysgGFafrqvyLWqq6ZPZAOCoefCw=="
|
|
9528
10326
|
},
|
|
9529
10327
|
"@typescript-eslint/typescript-estree": {
|
|
9530
|
-
"version": "
|
|
9531
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-
|
|
9532
|
-
"integrity": "sha512-
|
|
10328
|
+
"version": "8.24.0",
|
|
10329
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.24.0.tgz",
|
|
10330
|
+
"integrity": "sha512-ITjYcP0+8kbsvT9bysygfIfb+hBj6koDsu37JZG7xrCiy3fPJyNmfVtaGsgTUSEuTzcvME5YI5uyL5LD1EV5ZQ==",
|
|
9533
10331
|
"requires": {
|
|
9534
|
-
"@typescript-eslint/types": "
|
|
9535
|
-
"@typescript-eslint/visitor-keys": "
|
|
10332
|
+
"@typescript-eslint/types": "8.24.0",
|
|
10333
|
+
"@typescript-eslint/visitor-keys": "8.24.0",
|
|
9536
10334
|
"debug": "^4.3.4",
|
|
9537
|
-
"
|
|
10335
|
+
"fast-glob": "^3.3.2",
|
|
9538
10336
|
"is-glob": "^4.0.3",
|
|
9539
10337
|
"minimatch": "^9.0.4",
|
|
9540
10338
|
"semver": "^7.6.0",
|
|
9541
|
-
"ts-api-utils": "^
|
|
10339
|
+
"ts-api-utils": "^2.0.1"
|
|
9542
10340
|
}
|
|
9543
10341
|
},
|
|
9544
10342
|
"@typescript-eslint/visitor-keys": {
|
|
9545
|
-
"version": "
|
|
9546
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-
|
|
9547
|
-
"integrity": "sha512-
|
|
10343
|
+
"version": "8.24.0",
|
|
10344
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.24.0.tgz",
|
|
10345
|
+
"integrity": "sha512-kArLq83QxGLbuHrTMoOEWO+l2MwsNS2TGISEdx8xgqpkbytB07XmlQyQdNDrCc1ecSqx0cnmhGvpX+VBwqqSkg==",
|
|
9548
10346
|
"requires": {
|
|
9549
|
-
"@typescript-eslint/types": "
|
|
9550
|
-
"eslint-visitor-keys": "^
|
|
10347
|
+
"@typescript-eslint/types": "8.24.0",
|
|
10348
|
+
"eslint-visitor-keys": "^4.2.0"
|
|
9551
10349
|
}
|
|
9552
10350
|
},
|
|
9553
10351
|
"brace-expansion": {
|
|
@@ -9558,6 +10356,11 @@
|
|
|
9558
10356
|
"balanced-match": "^1.0.0"
|
|
9559
10357
|
}
|
|
9560
10358
|
},
|
|
10359
|
+
"eslint-visitor-keys": {
|
|
10360
|
+
"version": "4.2.0",
|
|
10361
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
|
10362
|
+
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw=="
|
|
10363
|
+
},
|
|
9561
10364
|
"minimatch": {
|
|
9562
10365
|
"version": "9.0.5",
|
|
9563
10366
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
@@ -9567,9 +10370,15 @@
|
|
|
9567
10370
|
}
|
|
9568
10371
|
},
|
|
9569
10372
|
"semver": {
|
|
9570
|
-
"version": "7.
|
|
9571
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
9572
|
-
"integrity": "sha512-
|
|
10373
|
+
"version": "7.7.1",
|
|
10374
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
|
10375
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="
|
|
10376
|
+
},
|
|
10377
|
+
"ts-api-utils": {
|
|
10378
|
+
"version": "2.0.1",
|
|
10379
|
+
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.1.tgz",
|
|
10380
|
+
"integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==",
|
|
10381
|
+
"requires": {}
|
|
9573
10382
|
}
|
|
9574
10383
|
}
|
|
9575
10384
|
},
|
|
@@ -9933,6 +10742,24 @@
|
|
|
9933
10742
|
"integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
|
|
9934
10743
|
"dev": true
|
|
9935
10744
|
},
|
|
10745
|
+
"character-entities": {
|
|
10746
|
+
"version": "2.0.2",
|
|
10747
|
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
10748
|
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
|
|
10749
|
+
"dev": true
|
|
10750
|
+
},
|
|
10751
|
+
"character-entities-legacy": {
|
|
10752
|
+
"version": "3.0.0",
|
|
10753
|
+
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
|
|
10754
|
+
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
|
|
10755
|
+
"dev": true
|
|
10756
|
+
},
|
|
10757
|
+
"character-reference-invalid": {
|
|
10758
|
+
"version": "2.0.1",
|
|
10759
|
+
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
|
|
10760
|
+
"integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
|
|
10761
|
+
"dev": true
|
|
10762
|
+
},
|
|
9936
10763
|
"chardet": {
|
|
9937
10764
|
"version": "0.7.0",
|
|
9938
10765
|
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
|
|
@@ -9987,6 +10814,12 @@
|
|
|
9987
10814
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
9988
10815
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
9989
10816
|
},
|
|
10817
|
+
"commander": {
|
|
10818
|
+
"version": "8.3.0",
|
|
10819
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
|
|
10820
|
+
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
|
|
10821
|
+
"dev": true
|
|
10822
|
+
},
|
|
9990
10823
|
"concat-map": {
|
|
9991
10824
|
"version": "0.0.1",
|
|
9992
10825
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
@@ -10072,6 +10905,15 @@
|
|
|
10072
10905
|
"ms": "2.1.2"
|
|
10073
10906
|
}
|
|
10074
10907
|
},
|
|
10908
|
+
"decode-named-character-reference": {
|
|
10909
|
+
"version": "1.0.2",
|
|
10910
|
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
|
|
10911
|
+
"integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
|
|
10912
|
+
"dev": true,
|
|
10913
|
+
"requires": {
|
|
10914
|
+
"character-entities": "^2.0.0"
|
|
10915
|
+
}
|
|
10916
|
+
},
|
|
10075
10917
|
"dedent": {
|
|
10076
10918
|
"version": "1.5.1",
|
|
10077
10919
|
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz",
|
|
@@ -10110,6 +10952,12 @@
|
|
|
10110
10952
|
"object-keys": "^1.1.1"
|
|
10111
10953
|
}
|
|
10112
10954
|
},
|
|
10955
|
+
"dequal": {
|
|
10956
|
+
"version": "2.0.3",
|
|
10957
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
10958
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
10959
|
+
"dev": true
|
|
10960
|
+
},
|
|
10113
10961
|
"detect-indent": {
|
|
10114
10962
|
"version": "6.1.0",
|
|
10115
10963
|
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
|
|
@@ -10122,6 +10970,15 @@
|
|
|
10122
10970
|
"integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
|
|
10123
10971
|
"dev": true
|
|
10124
10972
|
},
|
|
10973
|
+
"devlop": {
|
|
10974
|
+
"version": "1.1.0",
|
|
10975
|
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
|
|
10976
|
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
|
|
10977
|
+
"dev": true,
|
|
10978
|
+
"requires": {
|
|
10979
|
+
"dequal": "^2.0.0"
|
|
10980
|
+
}
|
|
10981
|
+
},
|
|
10125
10982
|
"diff-sequences": {
|
|
10126
10983
|
"version": "29.6.3",
|
|
10127
10984
|
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
|
|
@@ -10680,9 +11537,9 @@
|
|
|
10680
11537
|
"integrity": "sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw=="
|
|
10681
11538
|
},
|
|
10682
11539
|
"eslint-plugin-prettier": {
|
|
10683
|
-
"version": "5.2.
|
|
10684
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.
|
|
10685
|
-
"integrity": "sha512-
|
|
11540
|
+
"version": "5.2.3",
|
|
11541
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz",
|
|
11542
|
+
"integrity": "sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==",
|
|
10686
11543
|
"requires": {
|
|
10687
11544
|
"prettier-linter-helpers": "^1.0.0",
|
|
10688
11545
|
"synckit": "^0.9.1"
|
|
@@ -11200,6 +12057,22 @@
|
|
|
11200
12057
|
"side-channel": "^1.0.4"
|
|
11201
12058
|
}
|
|
11202
12059
|
},
|
|
12060
|
+
"is-alphabetical": {
|
|
12061
|
+
"version": "2.0.1",
|
|
12062
|
+
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
|
|
12063
|
+
"integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
|
|
12064
|
+
"dev": true
|
|
12065
|
+
},
|
|
12066
|
+
"is-alphanumerical": {
|
|
12067
|
+
"version": "2.0.1",
|
|
12068
|
+
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
|
|
12069
|
+
"integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
|
|
12070
|
+
"dev": true,
|
|
12071
|
+
"requires": {
|
|
12072
|
+
"is-alphabetical": "^2.0.0",
|
|
12073
|
+
"is-decimal": "^2.0.0"
|
|
12074
|
+
}
|
|
12075
|
+
},
|
|
11203
12076
|
"is-array-buffer": {
|
|
11204
12077
|
"version": "3.0.4",
|
|
11205
12078
|
"resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
|
|
@@ -11261,6 +12134,12 @@
|
|
|
11261
12134
|
"has-tostringtag": "^1.0.0"
|
|
11262
12135
|
}
|
|
11263
12136
|
},
|
|
12137
|
+
"is-decimal": {
|
|
12138
|
+
"version": "2.0.1",
|
|
12139
|
+
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
|
|
12140
|
+
"integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
|
|
12141
|
+
"dev": true
|
|
12142
|
+
},
|
|
11264
12143
|
"is-extglob": {
|
|
11265
12144
|
"version": "2.1.1",
|
|
11266
12145
|
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
@@ -11286,6 +12165,12 @@
|
|
|
11286
12165
|
"is-extglob": "^2.1.1"
|
|
11287
12166
|
}
|
|
11288
12167
|
},
|
|
12168
|
+
"is-hexadecimal": {
|
|
12169
|
+
"version": "2.0.1",
|
|
12170
|
+
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
|
|
12171
|
+
"integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
|
|
12172
|
+
"dev": true
|
|
12173
|
+
},
|
|
11289
12174
|
"is-negative-zero": {
|
|
11290
12175
|
"version": "2.0.3",
|
|
11291
12176
|
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
|
|
@@ -11991,6 +12876,15 @@
|
|
|
11991
12876
|
"object.values": "^1.1.6"
|
|
11992
12877
|
}
|
|
11993
12878
|
},
|
|
12879
|
+
"katex": {
|
|
12880
|
+
"version": "0.16.19",
|
|
12881
|
+
"resolved": "https://registry.npmjs.org/katex/-/katex-0.16.19.tgz",
|
|
12882
|
+
"integrity": "sha512-3IA6DYVhxhBabjSLTNO9S4+OliA3Qvb8pBQXMfC4WxXJgLwZgnfDl0BmB4z6nBMdznBsZ+CGM8DrGZ5hcguDZg==",
|
|
12883
|
+
"dev": true,
|
|
12884
|
+
"requires": {
|
|
12885
|
+
"commander": "^8.3.0"
|
|
12886
|
+
}
|
|
12887
|
+
},
|
|
11994
12888
|
"kleur": {
|
|
11995
12889
|
"version": "3.0.3",
|
|
11996
12890
|
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
|
|
@@ -12136,25 +13030,32 @@
|
|
|
12136
13030
|
}
|
|
12137
13031
|
},
|
|
12138
13032
|
"markdownlint": {
|
|
12139
|
-
"version": "0.
|
|
12140
|
-
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.
|
|
12141
|
-
"integrity": "sha512-
|
|
13033
|
+
"version": "0.37.3",
|
|
13034
|
+
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.37.3.tgz",
|
|
13035
|
+
"integrity": "sha512-eoQqH0291YCCjd+Pe1PUQ9AmWthlVmS0XWgcionkZ8q34ceZyRI+pYvsWksXJJL8OBkWCPwp1h/pnXxrPFC4oA==",
|
|
12142
13036
|
"dev": true,
|
|
12143
13037
|
"requires": {
|
|
12144
13038
|
"markdown-it": "14.1.0",
|
|
12145
|
-
"
|
|
13039
|
+
"micromark": "4.0.1",
|
|
13040
|
+
"micromark-core-commonmark": "2.0.2",
|
|
13041
|
+
"micromark-extension-directive": "3.0.2",
|
|
13042
|
+
"micromark-extension-gfm-autolink-literal": "2.1.0",
|
|
13043
|
+
"micromark-extension-gfm-footnote": "2.1.0",
|
|
13044
|
+
"micromark-extension-gfm-table": "2.1.0",
|
|
13045
|
+
"micromark-extension-math": "3.1.0",
|
|
13046
|
+
"micromark-util-types": "2.0.1"
|
|
12146
13047
|
}
|
|
12147
13048
|
},
|
|
12148
13049
|
"markdownlint-cli2": {
|
|
12149
|
-
"version": "0.
|
|
12150
|
-
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.
|
|
12151
|
-
"integrity": "sha512-
|
|
13050
|
+
"version": "0.17.1",
|
|
13051
|
+
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.17.1.tgz",
|
|
13052
|
+
"integrity": "sha512-n1Im9lhKJJE12/u2N0GWBwPqeb0HGdylN8XpSFg9hbj35+QalY9Vi6mxwUQdG6wlSrrIq9ZDQ0Q85AQG9V2WOg==",
|
|
12152
13053
|
"dev": true,
|
|
12153
13054
|
"requires": {
|
|
12154
13055
|
"globby": "14.0.2",
|
|
12155
13056
|
"js-yaml": "4.1.0",
|
|
12156
13057
|
"jsonc-parser": "3.3.1",
|
|
12157
|
-
"markdownlint": "0.
|
|
13058
|
+
"markdownlint": "0.37.3",
|
|
12158
13059
|
"markdownlint-cli2-formatter-default": "0.0.5",
|
|
12159
13060
|
"micromatch": "4.0.8"
|
|
12160
13061
|
},
|
|
@@ -12252,12 +13153,6 @@
|
|
|
12252
13153
|
}
|
|
12253
13154
|
}
|
|
12254
13155
|
},
|
|
12255
|
-
"markdownlint-micromark": {
|
|
12256
|
-
"version": "0.1.10",
|
|
12257
|
-
"resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.10.tgz",
|
|
12258
|
-
"integrity": "sha512-no5ZfdqAdWGxftCLlySHSgddEjyW4kui4z7amQcGsSKfYC5v/ou+8mIQVyg9KQMeEZLNtz9OPDTj7nnTnoR4FQ==",
|
|
12259
|
-
"dev": true
|
|
12260
|
-
},
|
|
12261
13156
|
"mdurl": {
|
|
12262
13157
|
"version": "2.0.0",
|
|
12263
13158
|
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
|
|
@@ -12275,6 +13170,297 @@
|
|
|
12275
13170
|
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
|
12276
13171
|
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
|
|
12277
13172
|
},
|
|
13173
|
+
"micromark": {
|
|
13174
|
+
"version": "4.0.1",
|
|
13175
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz",
|
|
13176
|
+
"integrity": "sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==",
|
|
13177
|
+
"dev": true,
|
|
13178
|
+
"requires": {
|
|
13179
|
+
"@types/debug": "^4.0.0",
|
|
13180
|
+
"debug": "^4.0.0",
|
|
13181
|
+
"decode-named-character-reference": "^1.0.0",
|
|
13182
|
+
"devlop": "^1.0.0",
|
|
13183
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
13184
|
+
"micromark-factory-space": "^2.0.0",
|
|
13185
|
+
"micromark-util-character": "^2.0.0",
|
|
13186
|
+
"micromark-util-chunked": "^2.0.0",
|
|
13187
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
13188
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
13189
|
+
"micromark-util-encode": "^2.0.0",
|
|
13190
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
13191
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
13192
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
13193
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
13194
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13195
|
+
"micromark-util-types": "^2.0.0"
|
|
13196
|
+
}
|
|
13197
|
+
},
|
|
13198
|
+
"micromark-core-commonmark": {
|
|
13199
|
+
"version": "2.0.2",
|
|
13200
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz",
|
|
13201
|
+
"integrity": "sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==",
|
|
13202
|
+
"dev": true,
|
|
13203
|
+
"requires": {
|
|
13204
|
+
"decode-named-character-reference": "^1.0.0",
|
|
13205
|
+
"devlop": "^1.0.0",
|
|
13206
|
+
"micromark-factory-destination": "^2.0.0",
|
|
13207
|
+
"micromark-factory-label": "^2.0.0",
|
|
13208
|
+
"micromark-factory-space": "^2.0.0",
|
|
13209
|
+
"micromark-factory-title": "^2.0.0",
|
|
13210
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
13211
|
+
"micromark-util-character": "^2.0.0",
|
|
13212
|
+
"micromark-util-chunked": "^2.0.0",
|
|
13213
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
13214
|
+
"micromark-util-html-tag-name": "^2.0.0",
|
|
13215
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
13216
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
13217
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
13218
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13219
|
+
"micromark-util-types": "^2.0.0"
|
|
13220
|
+
}
|
|
13221
|
+
},
|
|
13222
|
+
"micromark-extension-directive": {
|
|
13223
|
+
"version": "3.0.2",
|
|
13224
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz",
|
|
13225
|
+
"integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==",
|
|
13226
|
+
"dev": true,
|
|
13227
|
+
"requires": {
|
|
13228
|
+
"devlop": "^1.0.0",
|
|
13229
|
+
"micromark-factory-space": "^2.0.0",
|
|
13230
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
13231
|
+
"micromark-util-character": "^2.0.0",
|
|
13232
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13233
|
+
"micromark-util-types": "^2.0.0",
|
|
13234
|
+
"parse-entities": "^4.0.0"
|
|
13235
|
+
}
|
|
13236
|
+
},
|
|
13237
|
+
"micromark-extension-gfm-autolink-literal": {
|
|
13238
|
+
"version": "2.1.0",
|
|
13239
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
|
|
13240
|
+
"integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
|
|
13241
|
+
"dev": true,
|
|
13242
|
+
"requires": {
|
|
13243
|
+
"micromark-util-character": "^2.0.0",
|
|
13244
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
13245
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13246
|
+
"micromark-util-types": "^2.0.0"
|
|
13247
|
+
}
|
|
13248
|
+
},
|
|
13249
|
+
"micromark-extension-gfm-footnote": {
|
|
13250
|
+
"version": "2.1.0",
|
|
13251
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
|
|
13252
|
+
"integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
|
|
13253
|
+
"dev": true,
|
|
13254
|
+
"requires": {
|
|
13255
|
+
"devlop": "^1.0.0",
|
|
13256
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
13257
|
+
"micromark-factory-space": "^2.0.0",
|
|
13258
|
+
"micromark-util-character": "^2.0.0",
|
|
13259
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
13260
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
13261
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13262
|
+
"micromark-util-types": "^2.0.0"
|
|
13263
|
+
}
|
|
13264
|
+
},
|
|
13265
|
+
"micromark-extension-gfm-table": {
|
|
13266
|
+
"version": "2.1.0",
|
|
13267
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.0.tgz",
|
|
13268
|
+
"integrity": "sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==",
|
|
13269
|
+
"dev": true,
|
|
13270
|
+
"requires": {
|
|
13271
|
+
"devlop": "^1.0.0",
|
|
13272
|
+
"micromark-factory-space": "^2.0.0",
|
|
13273
|
+
"micromark-util-character": "^2.0.0",
|
|
13274
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13275
|
+
"micromark-util-types": "^2.0.0"
|
|
13276
|
+
}
|
|
13277
|
+
},
|
|
13278
|
+
"micromark-extension-math": {
|
|
13279
|
+
"version": "3.1.0",
|
|
13280
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz",
|
|
13281
|
+
"integrity": "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==",
|
|
13282
|
+
"dev": true,
|
|
13283
|
+
"requires": {
|
|
13284
|
+
"@types/katex": "^0.16.0",
|
|
13285
|
+
"devlop": "^1.0.0",
|
|
13286
|
+
"katex": "^0.16.0",
|
|
13287
|
+
"micromark-factory-space": "^2.0.0",
|
|
13288
|
+
"micromark-util-character": "^2.0.0",
|
|
13289
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13290
|
+
"micromark-util-types": "^2.0.0"
|
|
13291
|
+
}
|
|
13292
|
+
},
|
|
13293
|
+
"micromark-factory-destination": {
|
|
13294
|
+
"version": "2.0.1",
|
|
13295
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
|
|
13296
|
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
|
|
13297
|
+
"dev": true,
|
|
13298
|
+
"requires": {
|
|
13299
|
+
"micromark-util-character": "^2.0.0",
|
|
13300
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13301
|
+
"micromark-util-types": "^2.0.0"
|
|
13302
|
+
}
|
|
13303
|
+
},
|
|
13304
|
+
"micromark-factory-label": {
|
|
13305
|
+
"version": "2.0.1",
|
|
13306
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
|
|
13307
|
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
|
|
13308
|
+
"dev": true,
|
|
13309
|
+
"requires": {
|
|
13310
|
+
"devlop": "^1.0.0",
|
|
13311
|
+
"micromark-util-character": "^2.0.0",
|
|
13312
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13313
|
+
"micromark-util-types": "^2.0.0"
|
|
13314
|
+
}
|
|
13315
|
+
},
|
|
13316
|
+
"micromark-factory-space": {
|
|
13317
|
+
"version": "2.0.1",
|
|
13318
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
|
|
13319
|
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
|
|
13320
|
+
"dev": true,
|
|
13321
|
+
"requires": {
|
|
13322
|
+
"micromark-util-character": "^2.0.0",
|
|
13323
|
+
"micromark-util-types": "^2.0.0"
|
|
13324
|
+
}
|
|
13325
|
+
},
|
|
13326
|
+
"micromark-factory-title": {
|
|
13327
|
+
"version": "2.0.1",
|
|
13328
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
|
|
13329
|
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
|
|
13330
|
+
"dev": true,
|
|
13331
|
+
"requires": {
|
|
13332
|
+
"micromark-factory-space": "^2.0.0",
|
|
13333
|
+
"micromark-util-character": "^2.0.0",
|
|
13334
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13335
|
+
"micromark-util-types": "^2.0.0"
|
|
13336
|
+
}
|
|
13337
|
+
},
|
|
13338
|
+
"micromark-factory-whitespace": {
|
|
13339
|
+
"version": "2.0.1",
|
|
13340
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
|
|
13341
|
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
|
|
13342
|
+
"dev": true,
|
|
13343
|
+
"requires": {
|
|
13344
|
+
"micromark-factory-space": "^2.0.0",
|
|
13345
|
+
"micromark-util-character": "^2.0.0",
|
|
13346
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13347
|
+
"micromark-util-types": "^2.0.0"
|
|
13348
|
+
}
|
|
13349
|
+
},
|
|
13350
|
+
"micromark-util-character": {
|
|
13351
|
+
"version": "2.1.1",
|
|
13352
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
|
|
13353
|
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
|
|
13354
|
+
"dev": true,
|
|
13355
|
+
"requires": {
|
|
13356
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13357
|
+
"micromark-util-types": "^2.0.0"
|
|
13358
|
+
}
|
|
13359
|
+
},
|
|
13360
|
+
"micromark-util-chunked": {
|
|
13361
|
+
"version": "2.0.1",
|
|
13362
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
|
|
13363
|
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
|
|
13364
|
+
"dev": true,
|
|
13365
|
+
"requires": {
|
|
13366
|
+
"micromark-util-symbol": "^2.0.0"
|
|
13367
|
+
}
|
|
13368
|
+
},
|
|
13369
|
+
"micromark-util-classify-character": {
|
|
13370
|
+
"version": "2.0.1",
|
|
13371
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
|
|
13372
|
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
|
|
13373
|
+
"dev": true,
|
|
13374
|
+
"requires": {
|
|
13375
|
+
"micromark-util-character": "^2.0.0",
|
|
13376
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13377
|
+
"micromark-util-types": "^2.0.0"
|
|
13378
|
+
}
|
|
13379
|
+
},
|
|
13380
|
+
"micromark-util-combine-extensions": {
|
|
13381
|
+
"version": "2.0.1",
|
|
13382
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
|
|
13383
|
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
|
|
13384
|
+
"dev": true,
|
|
13385
|
+
"requires": {
|
|
13386
|
+
"micromark-util-chunked": "^2.0.0",
|
|
13387
|
+
"micromark-util-types": "^2.0.0"
|
|
13388
|
+
}
|
|
13389
|
+
},
|
|
13390
|
+
"micromark-util-decode-numeric-character-reference": {
|
|
13391
|
+
"version": "2.0.2",
|
|
13392
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
|
|
13393
|
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
|
|
13394
|
+
"dev": true,
|
|
13395
|
+
"requires": {
|
|
13396
|
+
"micromark-util-symbol": "^2.0.0"
|
|
13397
|
+
}
|
|
13398
|
+
},
|
|
13399
|
+
"micromark-util-encode": {
|
|
13400
|
+
"version": "2.0.1",
|
|
13401
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
|
|
13402
|
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
|
|
13403
|
+
"dev": true
|
|
13404
|
+
},
|
|
13405
|
+
"micromark-util-html-tag-name": {
|
|
13406
|
+
"version": "2.0.1",
|
|
13407
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
|
|
13408
|
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
|
|
13409
|
+
"dev": true
|
|
13410
|
+
},
|
|
13411
|
+
"micromark-util-normalize-identifier": {
|
|
13412
|
+
"version": "2.0.1",
|
|
13413
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
|
|
13414
|
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
|
|
13415
|
+
"dev": true,
|
|
13416
|
+
"requires": {
|
|
13417
|
+
"micromark-util-symbol": "^2.0.0"
|
|
13418
|
+
}
|
|
13419
|
+
},
|
|
13420
|
+
"micromark-util-resolve-all": {
|
|
13421
|
+
"version": "2.0.1",
|
|
13422
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
|
|
13423
|
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
|
|
13424
|
+
"dev": true,
|
|
13425
|
+
"requires": {
|
|
13426
|
+
"micromark-util-types": "^2.0.0"
|
|
13427
|
+
}
|
|
13428
|
+
},
|
|
13429
|
+
"micromark-util-sanitize-uri": {
|
|
13430
|
+
"version": "2.0.1",
|
|
13431
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
|
|
13432
|
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
|
|
13433
|
+
"dev": true,
|
|
13434
|
+
"requires": {
|
|
13435
|
+
"micromark-util-character": "^2.0.0",
|
|
13436
|
+
"micromark-util-encode": "^2.0.0",
|
|
13437
|
+
"micromark-util-symbol": "^2.0.0"
|
|
13438
|
+
}
|
|
13439
|
+
},
|
|
13440
|
+
"micromark-util-subtokenize": {
|
|
13441
|
+
"version": "2.0.3",
|
|
13442
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.3.tgz",
|
|
13443
|
+
"integrity": "sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==",
|
|
13444
|
+
"dev": true,
|
|
13445
|
+
"requires": {
|
|
13446
|
+
"devlop": "^1.0.0",
|
|
13447
|
+
"micromark-util-chunked": "^2.0.0",
|
|
13448
|
+
"micromark-util-symbol": "^2.0.0",
|
|
13449
|
+
"micromark-util-types": "^2.0.0"
|
|
13450
|
+
}
|
|
13451
|
+
},
|
|
13452
|
+
"micromark-util-symbol": {
|
|
13453
|
+
"version": "2.0.1",
|
|
13454
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
|
|
13455
|
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
|
|
13456
|
+
"dev": true
|
|
13457
|
+
},
|
|
13458
|
+
"micromark-util-types": {
|
|
13459
|
+
"version": "2.0.1",
|
|
13460
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz",
|
|
13461
|
+
"integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==",
|
|
13462
|
+
"dev": true
|
|
13463
|
+
},
|
|
12278
13464
|
"micromatch": {
|
|
12279
13465
|
"version": "4.0.8",
|
|
12280
13466
|
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
@@ -12483,6 +13669,21 @@
|
|
|
12483
13669
|
"callsites": "^3.0.0"
|
|
12484
13670
|
}
|
|
12485
13671
|
},
|
|
13672
|
+
"parse-entities": {
|
|
13673
|
+
"version": "4.0.2",
|
|
13674
|
+
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
|
|
13675
|
+
"integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
|
|
13676
|
+
"dev": true,
|
|
13677
|
+
"requires": {
|
|
13678
|
+
"@types/unist": "^2.0.0",
|
|
13679
|
+
"character-entities-legacy": "^3.0.0",
|
|
13680
|
+
"character-reference-invalid": "^2.0.0",
|
|
13681
|
+
"decode-named-character-reference": "^1.0.0",
|
|
13682
|
+
"is-alphanumerical": "^2.0.0",
|
|
13683
|
+
"is-decimal": "^2.0.0",
|
|
13684
|
+
"is-hexadecimal": "^2.0.0"
|
|
13685
|
+
}
|
|
13686
|
+
},
|
|
12486
13687
|
"parse-json": {
|
|
12487
13688
|
"version": "5.2.0",
|
|
12488
13689
|
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|