-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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-pencil.js",
"version": "1.2.0",
"description": "Pencil.js ❤️ Vue - Build reactive 2D graphics scene in your Vue project",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"unpkg": "dist/main.js",
"jsdelivr": "dist/main.js",
"scripts": {
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"prepublishOnly": "npm run build"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pencil-js/vue-pencil.js.git"
},
"keywords": [
"plugin"
],
"author": "GMartigny",
"license": "MIT",
"bugs": {
"url": "https://github.com/pencil-js/vue-pencil.js/issues"
},
"homepage": "https://github.com/pencil-js/vue-pencil.js#readme",
"funding": {
"url": "https://github.com/pencil-js/vue-pencil.js?sponsor=1"
},
"peerDependencies": {
"pencil.js": ">=1.12.0",
"vue": ">=2.0.0"
},
"devDependencies": {
"@gmartigny/eslint-config": "^1.6.0",
"delete": "^1.1.0",
"eslint": "^7.13.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}