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

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "hohoff-editor", "name": "hohoff-editor",
"version": "1.0.0", "version": "1.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "hohoff-editor", "name": "hohoff-editor",
"version": "1.0.0", "version": "1.1.0",
"dependencies": { "dependencies": {
"@anthropic-ai/sdk": "^0.29.0", "@anthropic-ai/sdk": "^0.29.0",
"@codemirror/commands": "^6.6.0", "@codemirror/commands": "^6.6.0",

View File

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