This commit is contained in:
2026-03-17 10:42:49 +10:00
parent 8d17f9dc01
commit 6567f1977a
2 changed files with 25 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "hohoff-editor",
"version": "1.0.0",
"version": "1.1.0",
"description": "Novel editor for Hohoff",
"main": "out/main/index.js",
"scripts": {
@@ -53,15 +53,34 @@
"icon": "resources/icon.png",
"mac": {
"icon": "resources/icon.icns",
"target": [{ "target": "dmg", "arch": "universal" }]
"target": [
{
"target": "dmg",
"arch": "universal"
}
]
},
"win": {
"icon": "resources/icon.ico",
"target": [{ "target": "nsis", "arch": ["x64"] }]
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"icon": "resources/icon.png",
"target": [{ "target": "AppImage", "arch": ["x64"] }]
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
},
"files": [
"out/**/*"