forked from laobubu/HyperMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.62 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "vickymd",
"version": "0.2.5",
"description": "An experimental WYSIWYG markdown editor built on top of HyperMD with extended Widgets support",
"main": "./everything.js",
"types": "./everything.d.ts",
"scripts": {
"build": "node dev/build-all.js",
"prebuild_js": "node dev/pre-build.js",
"build_js": "tsc && rollup -c",
"postbuild_js": "node dev/post-build.js",
"build_css": "node dev/build-css.js",
"build_doc": "cd dev/docgen && tsc && node ../tmp/index.js",
"dev": "node dev/dev.js",
"watch_js": "tsc -w --sourceMap --sourceRoot /src",
"watch_css": "node dev/build-css.js -w",
"pretest": "cd test && tsc && node tools/prepare",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"markdown",
"codemirror",
"wysiwyg"
],
"homepage": "https://github.com/0xGG/VickyMD",
"author": "0xGG Team",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-json": "^4.0.3",
"@types/codemirror": "^0.0.102",
"@types/glob": "^7.1.1",
"@types/markdown-it": "^10.0.1",
"@types/mermaid": "^8.2.1",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/tern": "^0.23.3",
"@types/yamljs": "^0.2.31",
"codemirror": "^5.55.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"minimatch": "^3.0.4",
"opn": "^6.0.0",
"rollup": "^2.10.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"sass": "^1.26.5",
"typescript": "^3.9.3"
},
"peerDependencies": {
"codemirror": "^5.58.3"
},
"optionalDependencies": {
"echarts": "^4.7.0",
"emojione": "^4.5.0",
"flowchart.js": "^1.13.0",
"html2pdf.js": "^0.9.2",
"jsonic": "^0.3.1",
"katex": "^0.11.1",
"lodash": "^4.17.15",
"markdown-it": "^11.0.0",
"markdown-it-emoji": "^1.4.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-ins": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"marked": "^1.1.0",
"mathjax": "^3.0.5",
"mermaid": "^8.5.1",
"plantuml-encoder": "^1.4.0",
"prismjs": "^1.20.0",
"react": "^16.13.1",
"react-dom": "^17.0.1",
"turndown": "^6.0.0",
"turndown-plugin-gfm": "^1.0.2",
"twemoji": "^13.0.0",
"vega": "^5.12.1",
"vega-embed": "^6.8.0",
"vega-lite": "^4.12.2",
"yamljs": "^0.3.0"
},
"dependencies": {}
}