-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 1003 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
36
{
"name": "vue-rough",
"version": "1.1.0",
"description": "A small components library to use Rough.js in Vue.",
"homepage": "https://vue-rough.neustadt.dev",
"bugs": {
"url": "https://github.com/dneustadt/vue-rough/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dneustadt/vue-rough.git"
},
"license": "MIT",
"author": "David Neustadt <[email protected]> (https://neustadt.dev)",
"contributors": [
"David Neustadt <[email protected]>"
],
"main": "dist/VueRough.umd.min.js",
"unpkg": "dist/VueRough.umd.min.js",
"module": "dist/VueRough.common.js",
"scripts": {
"build": "vue-cli-service build --target lib --name VueRough src/index.js && rm ./dist/demo.html"
},
"dependencies": {
"roughjs": "^4.3.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"roughjs": "^4.3.1"
},
"peerDependencies": {
"roughjs": "^4.3.1"
}
}