Add author and homepage metadata for Linux packaging

electron-builder's .deb target (fpm) refuses to build without an
author email and project homepage in package.json.

Co-Authored-By: Claude Sonnet 5 <[email protected]>
This commit is contained in:
reaper
2026-08-08 05:30:02 -05:00
co-authored by Claude Sonnet 5
parent f68261994e
commit 86be76132d
+5 -1
View File
@@ -3,7 +3,11 @@
"version": "1.0.0", "version": "1.0.0",
"description": "A desktop GUI for managing DDEV local development environments", "description": "A desktop GUI for managing DDEV local development environments",
"main": "./out/main/index.js", "main": "./out/main/index.js",
"author": "", "homepage": "http://localhost:3000/reaper/aurora-dockside",
"author": {
"name": "reaper",
"email": "[email protected]"
},
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"format": "prettier --write .", "format": "prettier --write .",