forked from liyinchigithub/monkeyGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.19 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
{
"name": "monkeygui",
"version": "2.0.0",
"description": "A monkey gui application",
"main": "main.js",
"build": {
"appId": "com.monkeygui.app",
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "./other/image/logo_mac.icns"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "./other/image/logo_win.ico"
},
"linux": {
"target": [
"tar.xz",
"zip"
],
"icon": "./other/image/logo_linux.icns"
}
},
"scripts": {
"start": "electron .",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win --x64",
"dist:linux":"electron-builder --linux",
"pack": "electron-packager . monkeyGUI --all --out ./打包monkeyGUI --app-version=2.0.0 --electron-version=3.0.10 --overwrite --icon=other/image/logo.ico"
},
"repository": {
"type": "git",
"url": "https://github.com/"
},
"keywords": [
"Electron",
"monkey",
"gui",
"adb",
"shell"
],
"author": "liyinchi",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^3.0.10",
"fs": "0.0.1-security",
"jquery": "^3.3.1",
"node-cmd": "^3.0.0"
}
}