forked from halo-dev/editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "@halo-dev/editor",
"private": false,
"version": "3.0.4",
"scripts": {
"prepare": "husky install",
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"dev:lib": "vite build --config vite.lib.config.js --watch",
"build:lib": "rimraf dist && vite build --config vite.lib.config.js",
"lint": "eslint --ext .js,vue --ignore-path .gitignore ."
},
"files": [
"dist"
],
"main": "./dist/lib/halo-editor.umd.js",
"module": "./dist/lib/halo-editor.es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/halo-dev/editor.git"
},
"author": "hinesboy",
"contributors": [
"ruibaby"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/halo-dev/editor/issues"
},
"homepage": "https://github.com/halo-dev/editor#readme",
"dependencies": {
"@halo-dev/markdown-renderer": "^1.0.0",
"@susisu/mte-kernel": "^2.1.1",
"codemirror": "^5.65.4",
"github-markdown-css": "^5.1.0",
"highlight.js": "^11.5.1",
"katex": "^0.12.0",
"lodash.debounce": "^4.0.8",
"lodash.flatten": "^4.4.0",
"lodash.last": "^3.0.0",
"lodash.times": "^4.3.2",
"vue": "^2.6.14"
},
"devDependencies": {
"@iconify-icons/fa-solid": "^1.2.2",
"@iconify-json/fa": "^1.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"stylus": "^0.54.8",
"unplugin-icons": "^0.13.4",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.9.9",
"vite-plugin-inspect": "^0.4.3",
"vite-plugin-vue2": "^1.9.3",
"vue-template-compiler": "^2.6.14"
}
}