-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.64 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"author": "Taniguchi Masaya <mew@cat.ovh> (https://tani.cc)",
"bugs": "https://github.com/remarkjs/remark-math/issues",
"contributors": [
"Taniguchi Masaya <mew@cat.ovh> (https://tani.cc)",
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"dependencies": {
"@types/hast": "^3.0.0",
"@types/mathjax": "^0.0.40",
"hast-util-to-text": "^4.0.0",
"hastscript": "^9.0.0",
"mathjax-full": "^3.0.0",
"unified": "^11.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile": "^6.0.0"
},
"description": "rehype plugin to transform inline and block math with MathJax",
"exports": {
"./browser": "./browser.js",
"./chtml": "./chtml.js",
"./svg": "./svg.js",
".": "./svg.js"
},
"files": [
"browser.d.ts.map",
"browser.d.ts",
"browser.js",
"chtml.d.ts.map",
"chtml.d.ts",
"chtml.js",
"svg.d.ts.map",
"svg.d.ts",
"svg.js",
"lib/"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"keywords": [
"hast",
"html",
"latex",
"markdown",
"math",
"mathjax",
"mdast",
"plugin",
"rehype",
"rehype-plugin",
"remark",
"tex",
"unified"
],
"license": "MIT",
"name": "rehype-mathjax",
"repository": "https://github.com/remarkjs/remark-math/tree/main/packages/rehype-mathjax",
"scripts": {
"test-api": "node --conditions development test/index.js",
"test": "npm run build && npm run test-api"
},
"sideEffects": false,
"type": "module",
"version": "7.1.0",
"xo": {
"prettier": true,
"rules": {
"unicorn/prefer-at": "off"
}
}
}