fix(desktop): métadonnées de packaging .deb (homepage, author.email, maintainer)
Some checks failed
CI / Build & test (Node 22) (push) Successful in 10m10s
CI / Build & test (Node 24) (push) Successful in 10m6s
CI / No em/en dashes (push) Successful in 5s
Desktop Release / Build Linux (AppImage + deb) (push) Successful in 13m39s
CI / Pack & boot smoke (Node 22) (push) Has been cancelled

electron-builder exige un homepage projet, un author.email et un maintainer
.deb : le build Linux produisait l'AppImage mais échouait sur la cible deb.
Ajoute ces champs au package.json desktop et fixe explicitement le
maintainer dans electron-builder.yml.
This commit is contained in:
2026-07-17 20:04:50 +02:00
parent c7af406cbf
commit b0a75df204
2 changed files with 7 additions and 0 deletions

View File

@@ -3,6 +3,11 @@
"private": true,
"version": "0.1.0",
"description": "Arboretum desktop app: Electron shell that runs the daemon and shows its web UI",
"homepage": "https://git.lidge.fr/johanleroy/arboretum",
"author": {
"name": "Johan LEROY",
"email": "contact@johanleroy.fr"
},
"main": "dist/main.js",
"type": "commonjs",
"scripts": {