-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1003 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1003 Bytes
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
{
"name": "adb-ui",
"version": "0.0.1",
"description": "",
"main": "bin/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"build": "babel -d bin/ app/",
"clean": "rm -rf ./bin",
"pack": "electron-builder"
},
"author": "LzxHahaha",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.6",
"electron": "^7.2.4",
"electron-builder": "^19.55.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"fbemitter": "^2.1.1",
"uuid": "^3.2.1"
},
"build": {
"appId": "com.lzxhahaha.adbui",
"productName": "ADB UI",
"win": {
"icon": "resources/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"license": "./LICENSE"
}
}
}