-
Notifications
You must be signed in to change notification settings - Fork 4
/
electron-builder.json
106 lines (106 loc) · 1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"productName": "Baiyuanneko's Blog Generator",
"appId": "com.github.baiyuanneko.bbg",
"copyright": "Made with love by BBG contributors",
"asar": true,
"files": [
"dist/electron/**/*",
"./main.js",
"App/**/*",
"resources/**/*",
".git/refs/heads/*"
],
"extraFiles": [
"LICENSE"
],
"fileAssociations": [
{
"name": "BBGThemeFile",
"ext": "bbgtheme",
"description": "BBG's theme file"
},
{
"name": "BBGThemeFile2",
"ext": "bbgtheme2",
"description": "BBG's next theme file"
}
],
"win": {
"artifactName": "bbg-${arch}-win.${ext}",
"target": {
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
},
"nsis": {
"artifactName": "bbg-${arch}.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"artifactName": "bbg-${arch}.${ext}",
"executableName": "bbg",
"description": "A static blog generator based on Electron Technology.",
"desktop": {
"StartupWMClass": "bbg",
"Keywords": "bbg;"
},
"target": [
{
"target": "tar.gz",
"arch": [
"x64",
"arm64"
]
},
{
"target": "Appimage",
"arch": [
"x64",
"arm64"
]
}
]
},
"dmg": {
"sign": false,
"artifactName": "bbg-${arch}.${ext}",
"window": {
"width": 540,
"height": 380
},
"contents": [
{
"x": 410,
"y": 230,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 230,
"type": "file"
}
]
},
"mac": {
"artifactName": "bbg-${arch}-mac.${ext}",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"type": "distribution",
"darkModeSupport": true
},
"directories": {
"buildResources": "resources"
}
}