Fix electron version checking

This commit is contained in:
LukeGus
2025-09-28 19:00:43 -05:00
parent 67ab3e50ff
commit 60b4040f11
13 changed files with 1783 additions and 144 deletions

View File

@@ -9,15 +9,10 @@
"scripts": {
"clean": "npx prettier . --write",
"dev": "vite",
"dev:https": "cross-env VITE_HTTPS=true vite",
"build": "vite build && tsc -p tsconfig.node.json",
"build:backend": "tsc -p tsconfig.node.json",
"dev:backend": "tsc -p tsconfig.node.json && node ./dist/backend/backend/starter.js",
"start": "npm run build:backend && node ./dist/backend/backend/starter.js",
"start:ssl": "npm run start",
"lint": "eslint .",
"preview": "vite preview",
"electron": "electron .",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"build:win-portable": "npm run build && electron-builder --win --dir",
"build:win-installer": "npm run build && electron-builder --win --publish=never",
@@ -103,6 +98,7 @@
"speakeasy": "^2.0.0",
"ssh2": "^1.16.0",
"tailwind-merge": "^3.3.1",
"wait-on": "^9.0.1",
"ws": "^8.18.3",
"zod": "^4.0.5"
},
@@ -130,4 +126,4 @@
"typescript-eslint": "^8.40.0",
"vite": "^7.1.5"
}
}
}