-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 990 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "electron-vue-bootstrap",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "electron-webpack",
"build": "electron-webpack && electron-builder"
},
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^2.0.8",
"electron-builder": "^20.28.2",
"electron-webpack": "^2.2.1",
"vue": "^2.5.17",
"vue-loader": "^15.4.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.1"
},
"dependencies": {
"source-map-support": "^0.5.9"
},
"build": {
"appId": "electron-vue-bootstrap",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/atom.ico"
}
}
}