-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.48 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "EasyPack",
"version": "1.1.1",
"description": "Easy to Set Webpack Config",
"main": "main.js",
"scripts": {
"start": "electron --inspect=5858 .",
"mac": "cross-env ELECTRON_MIRROR=https://npm.taobao.org/mirrors/electron/ build -m",
"win": "cross-env ELECTRON_MIRROR=https://npm.taobao.org/mirrors/electron/ build -w",
"build": "electron-packager . EasyPack --out /Users/AYA/desktop --overwrite --icon ./static/easypack"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"build": {
"productName": "easy-pack",
"appId": "cn.easypack.leedoo",
"asar": false,
"mac": {
"target": [
"dmg"
],
"icon": "static/easypack"
},
"win": {
"target": "nsis",
"icon": "static/easypack"
},
"directories": {
"buildResources": "resources",
"output": "release"
}
},
"updater": {
"url": "https://raw.githubusercontent.com/onvno/easy-pack-update/master/update.json"
},
"devDependencies": {
"cross-env": "^5.1.6",
"electron": "^1.8.7",
"electron-builder": "^20.15.1"
},
"dependencies": {
"electron-reload": "^1.2.2",
"electron-simple-updater": "^1.2.3",
"fs-extra": "^6.0.0",
"js-beautify": "^1.7.5",
"latest-version": "^3.1.0",
"mustache": "^2.3.0",
"redux": "^4.0.0",
"webpack-merge": "^4.1.2"
}
}