-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 KB
/
package.json
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
{
"name": "@daiji256/rehype-mathml",
"version": "1.1.1",
"description": "rehype plugin to render math with MathML",
"keywords": [
"unified",
"markdown",
"rehype",
"rehype-plugin",
"plugin",
"html",
"temml",
"hast",
"latex",
"math",
"tex",
"mathml"
],
"bugs": "https://github.com/Daiji256/rehype-mathml/issues",
"repository": "https://github.com/Daiji256/rehype-mathml/",
"license": "MIT",
"author": "Daiji256",
"type": "module",
"exports": "./dist/lib/index.js",
"main": "./dist/lib/index.js",
"files": [
"dist/lib",
"README.md"
],
"scripts": {
"build": "tsc --build --clean && tsc --build",
"format": "prettier . --write && eslint --fix .",
"lint": "prettier . --check && eslint .",
"test": "npm run build && node --test dist/test/index.test.js"
},
"dependencies": {
"@types/hast": "^3.0.0",
"hast-util-from-html-isomorphic": "^2.0.0",
"hast-util-to-text": "^4.0.0",
"temml": "^0.10.0",
"unified": "^11.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}