forked from Ben-love-zy/web-editor-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "web-editor-markdown",
"version": "1.0.8",
"description": "A markdown editor in browser, supports collaborative editing",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"start": "webpack serve --open",
"build": "webpack --config webpack.config.sdk.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Ben-love-zy/web-editor-markdown.git"
},
"bugs": {
"url": "https://github.com/Ben-love-zy/web-editor-markdown/issues"
},
"keywords": [
"markdown",
"editor",
"web",
"Collaborative editing"
],
"author": "Yong Zeng<[email protected]>",
"license": "MIT",
"dependencies": {
"commonmark": "^0.30.0",
"events": "^3.3.0",
"is-hotkey": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@types/commonmark": "^0.27.5",
"@types/is-hotkey": "^0.1.5",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.3.2",
"less-loader": "^6.2.0",
"postcss-loader": "^7.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}