-
Notifications
You must be signed in to change notification settings - Fork 390
/
package.json
70 lines (70 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
{
"name": "react-markplus",
"version": "0.2.6",
"description": "A React markdown editor and previewer.",
"keywords": [
"markdown",
"editor",
"markplus",
"mark plus",
"markplus.io",
"react markdown",
"react markdown editor",
"react editor"
],
"homepage": "https://github.com/markpluslabs/react-markplus",
"bugs": {
"url": "https://github.com/markpluslabs/react-markplus/issues"
},
"scripts": {
"serve": "yarn vite",
"release": "yarn vite build && gh-pages -d demo/dist && rm -rf demo/dist",
"prepublishOnly": "deno task compile",
"postpublish": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markpluslabs/react-markplus.git"
},
"license": "MIT",
"author": "Tyler Liu",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@codemirror/commands": "^6.7.1",
"@codemirror/language": "^6.10.8",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.36.1",
"@fortawesome/fontawesome-free": "^6.7.2",
"antd": "^5.22.6",
"debounce": "^2.2.0",
"github-markdown-css": "^5.8.1",
"katex": "^0.16.18",
"manate": "^2.0.0-beta.7",
"markplus-engine": "^0.2.1",
"split-grid": "^1.0.11",
"wait-for-async": "^0.7.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"gh-pages": "^6.2.0",
"localforage": "^1.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass-embedded": "^1.83.0",
"shell-commands": "^0.4.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"yarn-upgrade-all": "^0.7.4"
},
"yarn-upgrade-all": {
"ignore": [
"react",
"react-dom"
]
}
}