-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
60
{
"name": "rehype-katex",
"version": "7.0.1",
"description": "rehype plugin to transform inline and block math with KaTeX",
"license": "MIT",
"keywords": [
"hast",
"html",
"katex",
"latex",
"markdown",
"math",
"mdast",
"plugin",
"rehype",
"rehype-plugin",
"remark",
"tex",
"unified"
],
"repository": "https://github.com/remarkjs/remark-math/tree/main/packages/rehype-katex",
"bugs": "https://github.com/remarkjs/remark-math/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Junyoung Choi <[email protected]> (https://rokt33r.github.io)",
"contributors": [
"Junyoung Choi <[email protected]> (https://rokt33r.github.io)",
"Titus Wormer <[email protected]> (https://wooorm.com)"
],
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
"dependencies": {
"@types/hast": "^3.0.0",
"@types/katex": "^0.16.0",
"hast-util-from-html-isomorphic": "^2.0.0",
"hast-util-to-text": "^4.0.0",
"katex": "^0.16.0",
"unist-util-visit-parents": "^6.0.0",
"vfile": "^6.0.0"
},
"scripts": {
"test-api": "node --conditions development test.js",
"test": "npm run build && npm run test-api"
},
"xo": {
"prettier": true,
"rules": {
"unicorn/prefer-at": "off"
}
}
}