eslint-plugin-primer-react 7.0.0-rc.903d3f3 → 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 +1254 -121
- 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": "8.
|
|
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",
|
|
@@ -2322,14 +2349,15 @@
|
|
|
2322
2349
|
}
|
|
2323
2350
|
},
|
|
2324
2351
|
"node_modules/@typescript-eslint/utils": {
|
|
2325
|
-
"version": "8.
|
|
2326
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
2327
|
-
"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==",
|
|
2355
|
+
"license": "MIT",
|
|
2328
2356
|
"dependencies": {
|
|
2329
2357
|
"@eslint-community/eslint-utils": "^4.4.0",
|
|
2330
|
-
"@typescript-eslint/scope-manager": "8.
|
|
2331
|
-
"@typescript-eslint/types": "8.
|
|
2332
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
2358
|
+
"@typescript-eslint/scope-manager": "8.24.0",
|
|
2359
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2360
|
+
"@typescript-eslint/typescript-estree": "8.24.0"
|
|
2333
2361
|
},
|
|
2334
2362
|
"engines": {
|
|
2335
2363
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2344,12 +2372,13 @@
|
|
|
2344
2372
|
}
|
|
2345
2373
|
},
|
|
2346
2374
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": {
|
|
2347
|
-
"version": "8.
|
|
2348
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
2349
|
-
"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==",
|
|
2378
|
+
"license": "MIT",
|
|
2350
2379
|
"dependencies": {
|
|
2351
|
-
"@typescript-eslint/types": "8.
|
|
2352
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
2380
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2381
|
+
"@typescript-eslint/visitor-keys": "8.24.0"
|
|
2353
2382
|
},
|
|
2354
2383
|
"engines": {
|
|
2355
2384
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2360,9 +2389,10 @@
|
|
|
2360
2389
|
}
|
|
2361
2390
|
},
|
|
2362
2391
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": {
|
|
2363
|
-
"version": "8.
|
|
2364
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
2365
|
-
"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==",
|
|
2395
|
+
"license": "MIT",
|
|
2366
2396
|
"engines": {
|
|
2367
2397
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2368
2398
|
},
|
|
@@ -2372,18 +2402,19 @@
|
|
|
2372
2402
|
}
|
|
2373
2403
|
},
|
|
2374
2404
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": {
|
|
2375
|
-
"version": "8.
|
|
2376
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
2377
|
-
"integrity": "sha512-
|
|
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",
|
|
2378
2409
|
"dependencies": {
|
|
2379
|
-
"@typescript-eslint/types": "8.
|
|
2380
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
2410
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2411
|
+
"@typescript-eslint/visitor-keys": "8.24.0",
|
|
2381
2412
|
"debug": "^4.3.4",
|
|
2382
2413
|
"fast-glob": "^3.3.2",
|
|
2383
2414
|
"is-glob": "^4.0.3",
|
|
2384
2415
|
"minimatch": "^9.0.4",
|
|
2385
2416
|
"semver": "^7.6.0",
|
|
2386
|
-
"ts-api-utils": "^
|
|
2417
|
+
"ts-api-utils": "^2.0.1"
|
|
2387
2418
|
},
|
|
2388
2419
|
"engines": {
|
|
2389
2420
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2397,11 +2428,12 @@
|
|
|
2397
2428
|
}
|
|
2398
2429
|
},
|
|
2399
2430
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": {
|
|
2400
|
-
"version": "8.
|
|
2401
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
2402
|
-
"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==",
|
|
2434
|
+
"license": "MIT",
|
|
2403
2435
|
"dependencies": {
|
|
2404
|
-
"@typescript-eslint/types": "8.
|
|
2436
|
+
"@typescript-eslint/types": "8.24.0",
|
|
2405
2437
|
"eslint-visitor-keys": "^4.2.0"
|
|
2406
2438
|
},
|
|
2407
2439
|
"engines": {
|
|
@@ -2416,6 +2448,7 @@
|
|
|
2416
2448
|
"version": "2.0.1",
|
|
2417
2449
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
|
2418
2450
|
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
|
2451
|
+
"license": "MIT",
|
|
2419
2452
|
"dependencies": {
|
|
2420
2453
|
"balanced-match": "^1.0.0"
|
|
2421
2454
|
}
|
|
@@ -2424,6 +2457,7 @@
|
|
|
2424
2457
|
"version": "4.2.0",
|
|
2425
2458
|
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
|
2426
2459
|
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
|
|
2460
|
+
"license": "Apache-2.0",
|
|
2427
2461
|
"engines": {
|
|
2428
2462
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2429
2463
|
},
|
|
@@ -2435,6 +2469,7 @@
|
|
|
2435
2469
|
"version": "9.0.5",
|
|
2436
2470
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
2437
2471
|
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
|
|
2472
|
+
"license": "ISC",
|
|
2438
2473
|
"dependencies": {
|
|
2439
2474
|
"brace-expansion": "^2.0.1"
|
|
2440
2475
|
},
|
|
@@ -2446,9 +2481,10 @@
|
|
|
2446
2481
|
}
|
|
2447
2482
|
},
|
|
2448
2483
|
"node_modules/@typescript-eslint/utils/node_modules/semver": {
|
|
2449
|
-
"version": "7.
|
|
2450
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
2451
|
-
"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==",
|
|
2487
|
+
"license": "ISC",
|
|
2452
2488
|
"bin": {
|
|
2453
2489
|
"semver": "bin/semver.js"
|
|
2454
2490
|
},
|
|
@@ -2456,6 +2492,18 @@
|
|
|
2456
2492
|
"node": ">=10"
|
|
2457
2493
|
}
|
|
2458
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
|
+
},
|
|
2459
2507
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
2460
2508
|
"version": "7.1.1",
|
|
2461
2509
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.1.1.tgz",
|
|
@@ -2987,6 +3035,36 @@
|
|
|
2987
3035
|
"node": ">=10"
|
|
2988
3036
|
}
|
|
2989
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
|
+
},
|
|
2990
3068
|
"node_modules/chardet": {
|
|
2991
3069
|
"version": "0.7.0",
|
|
2992
3070
|
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
|
|
@@ -3060,6 +3138,15 @@
|
|
|
3060
3138
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
3061
3139
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
3062
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
|
+
},
|
|
3063
3150
|
"node_modules/concat-map": {
|
|
3064
3151
|
"version": "0.0.1",
|
|
3065
3152
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
@@ -3180,6 +3267,19 @@
|
|
|
3180
3267
|
}
|
|
3181
3268
|
}
|
|
3182
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
|
+
},
|
|
3183
3283
|
"node_modules/dedent": {
|
|
3184
3284
|
"version": "1.5.1",
|
|
3185
3285
|
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz",
|
|
@@ -3240,6 +3340,15 @@
|
|
|
3240
3340
|
"url": "https://github.com/sponsors/ljharb"
|
|
3241
3341
|
}
|
|
3242
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
|
+
},
|
|
3243
3352
|
"node_modules/detect-indent": {
|
|
3244
3353
|
"version": "6.1.0",
|
|
3245
3354
|
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
|
|
@@ -3258,6 +3367,19 @@
|
|
|
3258
3367
|
"node": ">=8"
|
|
3259
3368
|
}
|
|
3260
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
|
+
},
|
|
3261
3383
|
"node_modules/diff-sequences": {
|
|
3262
3384
|
"version": "29.6.3",
|
|
3263
3385
|
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
|
|
@@ -3832,9 +3954,10 @@
|
|
|
3832
3954
|
}
|
|
3833
3955
|
},
|
|
3834
3956
|
"node_modules/eslint-plugin-prettier": {
|
|
3835
|
-
"version": "5.2.
|
|
3836
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.
|
|
3837
|
-
"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",
|
|
3838
3961
|
"dependencies": {
|
|
3839
3962
|
"prettier-linter-helpers": "^1.0.0",
|
|
3840
3963
|
"synckit": "^0.9.1"
|
|
@@ -4749,6 +4872,30 @@
|
|
|
4749
4872
|
"node": ">= 0.4"
|
|
4750
4873
|
}
|
|
4751
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
|
+
},
|
|
4752
4899
|
"node_modules/is-array-buffer": {
|
|
4753
4900
|
"version": "3.0.4",
|
|
4754
4901
|
"resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
|
|
@@ -4846,6 +4993,16 @@
|
|
|
4846
4993
|
"url": "https://github.com/sponsors/ljharb"
|
|
4847
4994
|
}
|
|
4848
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
|
+
},
|
|
4849
5006
|
"node_modules/is-extglob": {
|
|
4850
5007
|
"version": "2.1.1",
|
|
4851
5008
|
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
@@ -4883,6 +5040,16 @@
|
|
|
4883
5040
|
"node": ">=0.10.0"
|
|
4884
5041
|
}
|
|
4885
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
|
+
},
|
|
4886
5053
|
"node_modules/is-negative-zero": {
|
|
4887
5054
|
"version": "2.0.3",
|
|
4888
5055
|
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
|
|
@@ -5833,6 +6000,22 @@
|
|
|
5833
6000
|
"node": ">=4.0"
|
|
5834
6001
|
}
|
|
5835
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
|
+
},
|
|
5836
6019
|
"node_modules/kleur": {
|
|
5837
6020
|
"version": "3.0.3",
|
|
5838
6021
|
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
|
|
@@ -6004,13 +6187,20 @@
|
|
|
6004
6187
|
"dev": true
|
|
6005
6188
|
},
|
|
6006
6189
|
"node_modules/markdownlint": {
|
|
6007
|
-
"version": "0.
|
|
6008
|
-
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.
|
|
6009
|
-
"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==",
|
|
6010
6193
|
"dev": true,
|
|
6011
6194
|
"dependencies": {
|
|
6012
6195
|
"markdown-it": "14.1.0",
|
|
6013
|
-
"
|
|
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"
|
|
6014
6204
|
},
|
|
6015
6205
|
"engines": {
|
|
6016
6206
|
"node": ">=18"
|
|
@@ -6020,20 +6210,20 @@
|
|
|
6020
6210
|
}
|
|
6021
6211
|
},
|
|
6022
6212
|
"node_modules/markdownlint-cli2": {
|
|
6023
|
-
"version": "0.
|
|
6024
|
-
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.
|
|
6025
|
-
"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==",
|
|
6026
6216
|
"dev": true,
|
|
6027
6217
|
"dependencies": {
|
|
6028
6218
|
"globby": "14.0.2",
|
|
6029
6219
|
"js-yaml": "4.1.0",
|
|
6030
6220
|
"jsonc-parser": "3.3.1",
|
|
6031
|
-
"markdownlint": "0.
|
|
6221
|
+
"markdownlint": "0.37.3",
|
|
6032
6222
|
"markdownlint-cli2-formatter-default": "0.0.5",
|
|
6033
6223
|
"micromatch": "4.0.8"
|
|
6034
6224
|
},
|
|
6035
6225
|
"bin": {
|
|
6036
|
-
"markdownlint-cli2": "markdownlint-cli2.
|
|
6226
|
+
"markdownlint-cli2": "markdownlint-cli2-bin.mjs"
|
|
6037
6227
|
},
|
|
6038
6228
|
"engines": {
|
|
6039
6229
|
"node": ">=18"
|
|
@@ -6178,49 +6368,548 @@
|
|
|
6178
6368
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
6179
6369
|
}
|
|
6180
6370
|
},
|
|
6181
|
-
"node_modules/markdownlint-cli2/node_modules/slash": {
|
|
6182
|
-
"version": "5.1.0",
|
|
6183
|
-
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
|
|
6184
|
-
"integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
|
|
6371
|
+
"node_modules/markdownlint-cli2/node_modules/slash": {
|
|
6372
|
+
"version": "5.1.0",
|
|
6373
|
+
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
|
|
6374
|
+
"integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
|
|
6375
|
+
"dev": true,
|
|
6376
|
+
"engines": {
|
|
6377
|
+
"node": ">=14.16"
|
|
6378
|
+
},
|
|
6379
|
+
"funding": {
|
|
6380
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
6381
|
+
}
|
|
6382
|
+
},
|
|
6383
|
+
"node_modules/mdurl": {
|
|
6384
|
+
"version": "2.0.0",
|
|
6385
|
+
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
|
|
6386
|
+
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
|
|
6387
|
+
"dev": true
|
|
6388
|
+
},
|
|
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==",
|
|
6185
6843
|
"dev": true,
|
|
6186
|
-
"
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
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"
|
|
6191
6858
|
}
|
|
6192
6859
|
},
|
|
6193
|
-
"node_modules/
|
|
6194
|
-
"version": "0.
|
|
6195
|
-
"resolved": "https://registry.npmjs.org/
|
|
6196
|
-
"integrity": "sha512-
|
|
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==",
|
|
6197
6864
|
"dev": true,
|
|
6198
|
-
"
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
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"
|
|
6203
6880
|
}
|
|
6204
6881
|
},
|
|
6205
|
-
"node_modules/
|
|
6206
|
-
"version": "2.0.
|
|
6207
|
-
"resolved": "https://registry.npmjs.org/
|
|
6208
|
-
"integrity": "sha512-
|
|
6209
|
-
"dev": true
|
|
6210
|
-
|
|
6211
|
-
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
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
|
+
]
|
|
6216
6897
|
},
|
|
6217
|
-
"node_modules/
|
|
6218
|
-
"version": "
|
|
6219
|
-
"resolved": "https://registry.npmjs.org/
|
|
6220
|
-
"integrity": "sha512-
|
|
6221
|
-
"
|
|
6222
|
-
|
|
6223
|
-
|
|
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
|
+
]
|
|
6224
6913
|
},
|
|
6225
6914
|
"node_modules/micromatch": {
|
|
6226
6915
|
"version": "4.0.8",
|
|
@@ -6519,6 +7208,25 @@
|
|
|
6519
7208
|
"node": ">=6"
|
|
6520
7209
|
}
|
|
6521
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
|
+
},
|
|
6522
7230
|
"node_modules/parse-json": {
|
|
6523
7231
|
"version": "5.2.0",
|
|
6524
7232
|
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|
|
@@ -9241,6 +9949,15 @@
|
|
|
9241
9949
|
"@babel/types": "^7.20.7"
|
|
9242
9950
|
}
|
|
9243
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
|
+
},
|
|
9244
9961
|
"@types/graceful-fs": {
|
|
9245
9962
|
"version": "4.1.8",
|
|
9246
9963
|
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.8.tgz",
|
|
@@ -9294,6 +10011,18 @@
|
|
|
9294
10011
|
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
|
|
9295
10012
|
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
|
|
9296
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
|
+
},
|
|
9297
10026
|
"@types/node": {
|
|
9298
10027
|
"version": "20.8.7",
|
|
9299
10028
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.7.tgz",
|
|
@@ -9314,6 +10043,12 @@
|
|
|
9314
10043
|
"integrity": "sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==",
|
|
9315
10044
|
"dev": true
|
|
9316
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
|
+
},
|
|
9317
10052
|
"@types/yargs": {
|
|
9318
10053
|
"version": "17.0.29",
|
|
9319
10054
|
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.29.tgz",
|
|
@@ -9565,51 +10300,51 @@
|
|
|
9565
10300
|
}
|
|
9566
10301
|
},
|
|
9567
10302
|
"@typescript-eslint/utils": {
|
|
9568
|
-
"version": "8.
|
|
9569
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
9570
|
-
"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==",
|
|
9571
10306
|
"requires": {
|
|
9572
10307
|
"@eslint-community/eslint-utils": "^4.4.0",
|
|
9573
|
-
"@typescript-eslint/scope-manager": "8.
|
|
9574
|
-
"@typescript-eslint/types": "8.
|
|
9575
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
10308
|
+
"@typescript-eslint/scope-manager": "8.24.0",
|
|
10309
|
+
"@typescript-eslint/types": "8.24.0",
|
|
10310
|
+
"@typescript-eslint/typescript-estree": "8.24.0"
|
|
9576
10311
|
},
|
|
9577
10312
|
"dependencies": {
|
|
9578
10313
|
"@typescript-eslint/scope-manager": {
|
|
9579
|
-
"version": "8.
|
|
9580
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
9581
|
-
"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==",
|
|
9582
10317
|
"requires": {
|
|
9583
|
-
"@typescript-eslint/types": "8.
|
|
9584
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
10318
|
+
"@typescript-eslint/types": "8.24.0",
|
|
10319
|
+
"@typescript-eslint/visitor-keys": "8.24.0"
|
|
9585
10320
|
}
|
|
9586
10321
|
},
|
|
9587
10322
|
"@typescript-eslint/types": {
|
|
9588
|
-
"version": "8.
|
|
9589
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
9590
|
-
"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=="
|
|
9591
10326
|
},
|
|
9592
10327
|
"@typescript-eslint/typescript-estree": {
|
|
9593
|
-
"version": "8.
|
|
9594
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
9595
|
-
"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==",
|
|
9596
10331
|
"requires": {
|
|
9597
|
-
"@typescript-eslint/types": "8.
|
|
9598
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
10332
|
+
"@typescript-eslint/types": "8.24.0",
|
|
10333
|
+
"@typescript-eslint/visitor-keys": "8.24.0",
|
|
9599
10334
|
"debug": "^4.3.4",
|
|
9600
10335
|
"fast-glob": "^3.3.2",
|
|
9601
10336
|
"is-glob": "^4.0.3",
|
|
9602
10337
|
"minimatch": "^9.0.4",
|
|
9603
10338
|
"semver": "^7.6.0",
|
|
9604
|
-
"ts-api-utils": "^
|
|
10339
|
+
"ts-api-utils": "^2.0.1"
|
|
9605
10340
|
}
|
|
9606
10341
|
},
|
|
9607
10342
|
"@typescript-eslint/visitor-keys": {
|
|
9608
|
-
"version": "8.
|
|
9609
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
9610
|
-
"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==",
|
|
9611
10346
|
"requires": {
|
|
9612
|
-
"@typescript-eslint/types": "8.
|
|
10347
|
+
"@typescript-eslint/types": "8.24.0",
|
|
9613
10348
|
"eslint-visitor-keys": "^4.2.0"
|
|
9614
10349
|
}
|
|
9615
10350
|
},
|
|
@@ -9635,9 +10370,15 @@
|
|
|
9635
10370
|
}
|
|
9636
10371
|
},
|
|
9637
10372
|
"semver": {
|
|
9638
|
-
"version": "7.
|
|
9639
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
9640
|
-
"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": {}
|
|
9641
10382
|
}
|
|
9642
10383
|
}
|
|
9643
10384
|
},
|
|
@@ -10001,6 +10742,24 @@
|
|
|
10001
10742
|
"integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
|
|
10002
10743
|
"dev": true
|
|
10003
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
|
+
},
|
|
10004
10763
|
"chardet": {
|
|
10005
10764
|
"version": "0.7.0",
|
|
10006
10765
|
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
|
|
@@ -10055,6 +10814,12 @@
|
|
|
10055
10814
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
10056
10815
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
10057
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
|
+
},
|
|
10058
10823
|
"concat-map": {
|
|
10059
10824
|
"version": "0.0.1",
|
|
10060
10825
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
@@ -10140,6 +10905,15 @@
|
|
|
10140
10905
|
"ms": "2.1.2"
|
|
10141
10906
|
}
|
|
10142
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
|
+
},
|
|
10143
10917
|
"dedent": {
|
|
10144
10918
|
"version": "1.5.1",
|
|
10145
10919
|
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz",
|
|
@@ -10178,6 +10952,12 @@
|
|
|
10178
10952
|
"object-keys": "^1.1.1"
|
|
10179
10953
|
}
|
|
10180
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
|
+
},
|
|
10181
10961
|
"detect-indent": {
|
|
10182
10962
|
"version": "6.1.0",
|
|
10183
10963
|
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
|
|
@@ -10190,6 +10970,15 @@
|
|
|
10190
10970
|
"integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
|
|
10191
10971
|
"dev": true
|
|
10192
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
|
+
},
|
|
10193
10982
|
"diff-sequences": {
|
|
10194
10983
|
"version": "29.6.3",
|
|
10195
10984
|
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
|
|
@@ -10748,9 +11537,9 @@
|
|
|
10748
11537
|
"integrity": "sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw=="
|
|
10749
11538
|
},
|
|
10750
11539
|
"eslint-plugin-prettier": {
|
|
10751
|
-
"version": "5.2.
|
|
10752
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.
|
|
10753
|
-
"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==",
|
|
10754
11543
|
"requires": {
|
|
10755
11544
|
"prettier-linter-helpers": "^1.0.0",
|
|
10756
11545
|
"synckit": "^0.9.1"
|
|
@@ -11268,6 +12057,22 @@
|
|
|
11268
12057
|
"side-channel": "^1.0.4"
|
|
11269
12058
|
}
|
|
11270
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
|
+
},
|
|
11271
12076
|
"is-array-buffer": {
|
|
11272
12077
|
"version": "3.0.4",
|
|
11273
12078
|
"resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
|
|
@@ -11329,6 +12134,12 @@
|
|
|
11329
12134
|
"has-tostringtag": "^1.0.0"
|
|
11330
12135
|
}
|
|
11331
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
|
+
},
|
|
11332
12143
|
"is-extglob": {
|
|
11333
12144
|
"version": "2.1.1",
|
|
11334
12145
|
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
@@ -11354,6 +12165,12 @@
|
|
|
11354
12165
|
"is-extglob": "^2.1.1"
|
|
11355
12166
|
}
|
|
11356
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
|
+
},
|
|
11357
12174
|
"is-negative-zero": {
|
|
11358
12175
|
"version": "2.0.3",
|
|
11359
12176
|
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
|
|
@@ -12059,6 +12876,15 @@
|
|
|
12059
12876
|
"object.values": "^1.1.6"
|
|
12060
12877
|
}
|
|
12061
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
|
+
},
|
|
12062
12888
|
"kleur": {
|
|
12063
12889
|
"version": "3.0.3",
|
|
12064
12890
|
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
|
|
@@ -12204,25 +13030,32 @@
|
|
|
12204
13030
|
}
|
|
12205
13031
|
},
|
|
12206
13032
|
"markdownlint": {
|
|
12207
|
-
"version": "0.
|
|
12208
|
-
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.
|
|
12209
|
-
"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==",
|
|
12210
13036
|
"dev": true,
|
|
12211
13037
|
"requires": {
|
|
12212
13038
|
"markdown-it": "14.1.0",
|
|
12213
|
-
"
|
|
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"
|
|
12214
13047
|
}
|
|
12215
13048
|
},
|
|
12216
13049
|
"markdownlint-cli2": {
|
|
12217
|
-
"version": "0.
|
|
12218
|
-
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.
|
|
12219
|
-
"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==",
|
|
12220
13053
|
"dev": true,
|
|
12221
13054
|
"requires": {
|
|
12222
13055
|
"globby": "14.0.2",
|
|
12223
13056
|
"js-yaml": "4.1.0",
|
|
12224
13057
|
"jsonc-parser": "3.3.1",
|
|
12225
|
-
"markdownlint": "0.
|
|
13058
|
+
"markdownlint": "0.37.3",
|
|
12226
13059
|
"markdownlint-cli2-formatter-default": "0.0.5",
|
|
12227
13060
|
"micromatch": "4.0.8"
|
|
12228
13061
|
},
|
|
@@ -12320,12 +13153,6 @@
|
|
|
12320
13153
|
}
|
|
12321
13154
|
}
|
|
12322
13155
|
},
|
|
12323
|
-
"markdownlint-micromark": {
|
|
12324
|
-
"version": "0.1.10",
|
|
12325
|
-
"resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.10.tgz",
|
|
12326
|
-
"integrity": "sha512-no5ZfdqAdWGxftCLlySHSgddEjyW4kui4z7amQcGsSKfYC5v/ou+8mIQVyg9KQMeEZLNtz9OPDTj7nnTnoR4FQ==",
|
|
12327
|
-
"dev": true
|
|
12328
|
-
},
|
|
12329
13156
|
"mdurl": {
|
|
12330
13157
|
"version": "2.0.0",
|
|
12331
13158
|
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
|
|
@@ -12343,6 +13170,297 @@
|
|
|
12343
13170
|
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
|
12344
13171
|
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
|
|
12345
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
|
+
},
|
|
12346
13464
|
"micromatch": {
|
|
12347
13465
|
"version": "4.0.8",
|
|
12348
13466
|
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
@@ -12551,6 +13669,21 @@
|
|
|
12551
13669
|
"callsites": "^3.0.0"
|
|
12552
13670
|
}
|
|
12553
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
|
+
},
|
|
12554
13687
|
"parse-json": {
|
|
12555
13688
|
"version": "5.2.0",
|
|
12556
13689
|
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|