-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "math",
"main": "./lib/index",
"version": "1.6.0",
"description": "Add math syntax support to the editor and the preview",
"keywords": [],
"repository": {
"type": "git",
"url": "[email protected]:inkdropapp/inkdrop-math.git"
},
"license": "MIT",
"styleSheets": [
"markdown-math.less"
],
"scripts": {
"build": "rm -r lib && rollup -c --bundleConfigAsCjs",
"watch": "rollup -c --watch --bundleConfigAsCjs",
"lint": "eslint ."
},
"engines": {
"inkdrop": ">=5.9.0 <7.0.0"
},
"dependencies": {
"@matejmazur/react-katex": "^3.1.3",
"katex": "^0.16.10"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"rollup": "^4.27.2"
}
}