-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (56 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "sakuhx-blog",
"version": "1.2.0",
"description": "A simple Electron blog edit application",
"main": "main.js",
"scripts": {
"start": "electron .",
"builder": "electron-builder"
},
"repository": "https://github.com/SakuraXIII/SakuHx.git",
"keywords": [
"Electron",
"blog",
"Hexo"
],
"author": "SakuraXIII",
"devDependencies": {
"electron": "^9.1.1",
"electron-builder": "^22.8.0"
},
"build": {
"productName":"SakuHx",
"appId": "com.sy.sakuhx",
"copyright":"Sakura",
"directories": {
"output": "build"
},
"asar":false,
"files":[
"!.gitignore",
"!README.md",
"!package-lock.json",
"!.vscode"
],
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/kiana.ico",
"uninstallerIcon": "build/kiana.ico",
"installerHeaderIcon": "build/kiana.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "SakuHx"
},
"win": {
"icon": "build/kiana.ico",
"artifactName": "${productName}_Setup_${version}.${ext}",
"target": [
{
"target": "nsis"
}
]
}
}
}