forked from purocean/yn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
57 lines (57 loc) · 1.22 KB
/
electron-builder.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"appId": "yank.note",
"productName": "Yank Note",
"copyright": "Copyright 2018-2021 [email protected]",
"asar": true,
"asarUnpack": [
"bin/**/*",
"help/**/*",
"dist/main/resources/**/*",
"node_modules/plantuml-pipe/**/*",
"node_modules/node-pty/**/*"
],
"files": [
"./bin/**",
"./help/**",
"./dist/**"
],
"artifactName": "Yank-Note-${os}-${arch}-${version}.${ext}",
"directories": {
"output": "./out/"
},
"npmRebuild": false,
"win": {
"target": [
"zip",
"nsis"
],
"icon": "./build/icon.ico"
},
"linux": {
"executableName": "yank-note",
"category": "Markdown",
"maintainer": "purocean <[email protected]>",
"icon": "./build/icon.icns",
"target": [
"deb"
]
},
"mac": {
"icon": "./build/icon.icns",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"binaries": [
"out/mac/Yank Note.app/Contents/Resources/app.asar.unpacked/bin/darwin-pandoc-2.7.3"
],
"target": [
"dmg",
"zip"
]
},
"afterSign": "scripts/notarize.js",
"nsis": {
"perMachine": false
}
}