-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 969 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
41
42
43
{
"name": "codesign-sample-macos",
"version": "1.0.0",
"description": "Electron sample",
"main": "index.js",
"scripts": {
"start": "electron .",
"build-mac": "electron-builder --mac --x64",
"build-win": "electron-builder --win --x64"
},
"author": "M.Katsube",
"license": "ISC",
"devDependencies": {
"electron": "^10.1.2",
"electron-builder": "^22.8.1"
},
"build": {
"appId": "net.makitokatsube.app.codesign1",
"afterSign": "scripts/notarize.js",
"files": [
"package.json",
"index.js",
"index.html"
],
"mac": {
"target": "dmg",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"dmg": {
"sign": false
},
"win": {
"target": "nsis"
}
},
"dependencies": {
"dotenv": "^8.2.0",
"electron-notarize": "^1.0.0"
}
}