forked from laobubu/HyperMD
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.61 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.61 KB
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
{
"name": "@0xgg/echomd",
"version": "1.0.4",
"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/EchoMD",
"author": "0xGG Team",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-json": "^4.1.0",
"@types/codemirror": "^0.0.108",
"@types/glob": "^7.1.3",
"@types/markdown-it": "^12.0.1",
"@types/mermaid": "^8.2.2",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.2",
"@types/react-dom": "17.0.0",
"@types/tern": "^0.23.3",
"@types/yamljs": "^0.2.31",
"codemirror": "^5.59.4",
"express": "^4.17.1",
"glob": "^7.1.6",
"minimatch": "^3.0.4",
"opn": "^6.0.0",
"rollup": "^2.39.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"sass": "^1.32.8",
"typescript": "4.1.3"
},
"optionalDependencies": {
"echarts": "^5.0.2",
"emojione": "^4.5.0",
"flowchart.js": "1.13.0",
"html2pdf.js": "^0.9.2",
"jsonic": "^1.0.1",
"katex": "^0.13.0",
"lodash": "^4.17.21",
"markdown-it": "^12.0.4",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-for-inline": "^0.1.1",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"marked": "^2.0.0",
"mathjax": "^3.1.2",
"mermaid": "^8.9.2",
"plantuml-encoder": "^1.4.0",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"turndown": "^7.0.0",
"turndown-plugin-gfm": "^1.0.2",
"twemoji": "13.0.2",
"vega": "^5.20.0",
"vega-embed": "^6.16.0",
"vega-lite": "^5.0.0",
"yamljs": "^0.3.0"
},
"dependencies": {}
}