forked from yzhang-gh/markdown-it-katex
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 800 Bytes
/
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
{
"name": "@renbaoshuo/markdown-it-katex",
"version": "2.0.2",
"description": "Fast math support for markdown-it with KaTeX",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/renbaoshuo/markdown-it-katex.git"
},
"keywords": [
"markdown",
"KaTeX",
"math",
"LaTeX",
"markdown-it-plugin",
"markdown-it"
],
"license": "MIT",
"devDependencies": {
"husky": "^8.0.1",
"jest": "^29.0.2",
"katex": "*",
"lint-staged": "^13.0.3",
"markdown-it": "^13.0.1",
"markdown-it-testgen": "^0.1.6",
"prettier": "^2.7.1"
},
"peerDependencies": {
"katex": "*",
"markdown-it": ">=6"
},
"lint-staged": {
"*.{js,md}": [
"prettier --write"
]
}
}