forked from zhetengbiji/bb10-app-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 899 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
{
"name": "bb10-app-manager",
"version": "1.0.0",
"description": "BB10 / PlayBook App Manager",
"main": "src/background.js",
"scripts": {
"dev": "electron src/background.js",
"dist": "electron-builder",
"dist:win": "electron-builder --win --ia32",
"dist:mac": "electron-builder --mac"
},
"build": {
"appId": "com.zhetengbiji.bb10.manager",
"productName": "BB10 App Manager",
"asar": true,
"files": [
"src/**/*"
],
"directories": {
"output": "./dist"
},
"mac": {
"identity": null,
"target": "dmg",
"icon": "icon.icns"
},
"removePackageScripts": true,
"electronDownload": {
"mirror": "https://npm.taobao.org/mirrors/electron/"
}
},
"keywords": [],
"author": "zhetengbiji",
"license": "ISC",
"devDependencies": {
"electron": "^16.0.9",
"electron-builder": "22.9.1"
}
}