-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "@readybytes/rb-vue-editor",
"description": "A vue2 text editor to beautify the text and text box with elegant editing properties.",
"version": "0.1.1",
"private": false,
"author": {
"name": "Ready Bytes",
"email": "hey@readybytes.in"
},
"repository": {
"type": "git",
"url": "https://github.com/readybytes/rb-vue-editor"
},
"bugs": "https://github.com/readybytes/rb-vue-editor/issues",
"keywords": [
"vue2",
"text-editor",
"form-editor"
],
"files": [
"dist/*"
],
"main": "./dist/rb-vue-editor.common.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build-library": "vue-cli-service build --target lib --name rb-vue-editor ./src/install.js",
"publish-package": "npm run build-library && npm publish --access public"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"vue-template-compiler": "^2.6.11"
}
}