-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "AppName",
"version": "1.0.0",
"description": "A minimal Electron application to test MAS builds",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"repository": "https://github.com/steve981cr/electron-quickstart-mas",
"keywords": ["Electron", "mas"],
"author": "YOUR NAME",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^17.1.2",
"electron-builder": "^22.14.13"
},
"build": {
"appId": "com.domainname.appname",
"buildVersion": "1",
"productName": "Quickstart-mas",
"copyright": "Copyright © 2022 YOUR NAME HERE",
"mac": {
"target": "mas",
"type": "distribution",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"category": "public.app-category.education",
"icon": "build/icon.icns",
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"provisioningProfile": "build/MacAppStore.provisionprofile"
}
},
"dependencies": {}
}