-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "vue-pixi",
"version": "0.1.1",
"description": "Vue.js components rendering 2D graphics reactively via pixi.js",
"keywords": [
"Vue",
"Vuejs",
"WebGL",
"pixi",
"pixijs",
"2D",
"Graphics",
"Canvas"
],
"homepage": "https://github.com/Granipouss/vue-pixi",
"repository": {
"type": "git",
"url": "https://github.com/Granipouss/vue-pixi.git"
},
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build --target lib --name vue-pixi ./src/index.js",
"lint": "vue-cli-service lint",
"publish": "npx np"
},
"main": "./dist/vue-pixi.common.js",
"dependencies": {
"pixi.js": "^4.8.1",
"vue": "^2.5.17"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-standard": "^3.0.1",
"eslint": "^5.5.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17"
}
}