-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1004 Bytes
/
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
{
"name": "vue-grapesjs-composables",
"version": "0.3.0",
"description": "This package makes it easy to implement a GrapesJS editor in Vue, and implement Vue components to control the editor. It does this by providing composables for Vue 3 that return reactive objects for the different API modules of GrapesJS.",
"main": "dist/vue-grapesjs-composables.js",
"keywords": [
"Vue",
"Vue 3",
"GrapesJs",
"grapes",
"wysiwyg",
"editor",
"site",
"builder"
],
"author": "Igor Honhoff",
"license": "MIT",
"scripts": {
"docs": "jsdoc2md --files src/composables/*.js --template docs/template.hbs > docs/API-specs.md",
"build": "rollup -c"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"grapesjs": "^0.18.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"jsdoc-to-markdown": "^7.1.1",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2"
}
}