forked from code-farmer-i/vue-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.65 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.65 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@dawizz/vue-markdown-editor",
"version": "1.7.18",
"description": "Vue Markdown Editor",
"main": "lib/base-editor.js",
"unpkg": "lib/base-editor.js",
"files": [
"lib",
"types"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "npm run build:entry && webpack-dev-server --config build/webpack.dev.js",
"lint-staged": "lint-staged",
"lint": "eslint . --ext .js,.vue,.ts,.tsx --fix && stylelint \"src/**/*.vue\" --fix",
"build:entry": "node build/build-entry.js",
"build:utils": "node build/build-utils.js",
"build:theme": "webpack --config build/webpack.theme.js",
"build:pkg": "npm run build:entry && webpack --config build/webpack.pkg.js && npm run build:theme && npm run build:utils"
},
"lint-staged": {
"*.md": [
"prettier --write"
],
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
],
"src/**/*.{vue,css,scss}": [
"stylelint --fix",
"git add"
]
},
"peerDependencies": {
"vue": "^2.7.14",
"vue-template-compiler": "^2.7.14"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.0",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.21.0",
"@vue/babel-preset-jsx": "^1.4.0",
"babel-loader": "^8.3.0",
"babel-plugin-module-resolver": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^4.5.2",
"http-server": "^0.13.0",
"husky": "^4.3.8",
"inquirer": "^7.3.3",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^0.12.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"postcss": "8",
"postcss-html": "^1.5.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.8.4",
"sass": "^1.59.2",
"sass-loader": "^8.0.2",
"semver": "^7.3.8",
"shelljs": "^0.8.5",
"signale": "^1.4.0",
"style-loader": "^1.3.0",
"stylelint": "^15.2.0",
"stylelint-config-recommended": "^10.0.1",
"stylelint-config-recommended-scss": "^9.0.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-scss": "^4.4.0",
"typescript": "^3.9.10",
"url-loader": "^4.1.1",
"vue-loader": "^15.10.1",
"vue-server-renderer": "^2.7.14",
"vue-style-loader": "^4.1.3",
"vuepress": "^1.9.9",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "3.11.3",
"webpack-merge": "^4.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dawizz/vue-markdown-editor.git"
},
"homepage": "https://github.com/dawizz/vue-markdown-editor#readme",
"author": "",
"license": "MIT",
"dependencies": {
"@vuepress/markdown": "^1.9.9",
"@vuepress/shared-utils": "^1.9.9",
"codemirror": "^5.65.12",
"copy-to-clipboard": "^3.3.3",
"highlight.js": "^10.7.3",
"insert-text-at-cursor": "^0.3.0",
"katex": "^0.16.4",
"markdown-it": "^13.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.2",
"prismjs": "^1.29.0",
"resize-observer-polyfill": "^1.5.1",
"xss": "^1.0.14"
},
"browserslist": [
"Android >= 4.0",
"iOS >= 8"
]
}