-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1009 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
{
"name": "your-higher-power",
"version": "1.1.0",
"main": "app.js",
"license": "MIT",
"scripts": {
"start": "electron .",
"build": "electron-builder --mac"
},
"build": {
"artifactName": "${name}-${version}-${os}.${ext}",
"appId": "com.views.your-higher-power",
"productName": "Your Higher Power",
"files": [
"app.js",
"icon.png",
"icon@2x.png",
"icon@3x.png",
"icon-white.png",
"icon-white@2x.png",
"icon-white@3x.png",
"menu.json"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "./build/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "./build/entitlements.mac.plist",
"entitlementsInherit": "./build/entitlements.mac.plist"
},
"afterSign": "./build/notarize.js"
},
"devDependencies": {
"dotenv": "^8.2.0",
"electron": "^7.0.0",
"electron-builder": "^22.1.0",
"electron-notarize": "^0.2.0"
}
}