This commit is contained in:
TC
2026-06-18 10:29:03 +10:00
parent b9c832162b
commit a45b8ea7cd
2 changed files with 34 additions and 8 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "marti", "name": "marti",
"version": "0.1.0", "version": "0.1.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "marti", "name": "marti",
"version": "0.1.0", "version": "0.1.1",
"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": "marti", "name": "marti",
"version": "0.1.0", "version": "0.1.1",
"description": "A poet's workbench — static analysis first, AI opt-in", "description": "A poet's workbench — static analysis first, AI opt-in",
"main": "out/main/index.js", "main": "out/main/index.js",
"scripts": { "scripts": {
@@ -44,17 +44,43 @@
"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": ["out/**/*"], "files": [
"extraResources": [{ "from": "resources/icon.png", "to": "icon.png" }] "out/**/*"
],
"extraResources": [
{
"from": "resources/icon.png",
"to": "icon.png"
}
]
} }
} }