forked from motla/vue-document-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "vue-document-editor",
"version": "2.3.2",
"description": "Paper-sized WYSIWYG document editor for Vue apps",
"author": {
"name": "Romain Lamothe",
"url": "http://www.motla.fr/"
},
"license": "MIT",
"keywords": [
"vue",
"vuejs",
"document",
"editor",
"wysiwyg",
"page",
"a4",
"text",
"processor",
"application"
],
"repository": {
"type": "git",
"url": "git+https://github.com/motla/vue-document-editor.git"
},
"bugs": {
"url": "https://github.com/motla/vue-document-editor/issues"
},
"homepage": "https://github.com/motla/vue-document-editor",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --dest docs && vue-cli-service build --target lib --name VueDocumentEditor src/DocumentEditor/DocumentEditor.vue",
"version": "npm run build && git add -A"
},
"main": "src/DocumentEditor/DocumentEditor.vue",
"devDependencies": {
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"vue": "^3.2.45",
"vue-file-toolbar-menu": "^2.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}