This commit is contained in:
brajan.aldana
2025-11-19 13:28:36 -05:00
commit f7a85dbbf6
5 changed files with 4558 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{
"name": "mi-app",
"version": "1.0.0",
"description": "App de ejemplo con electron-updater y Gitea",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"author": "yo",
"dependencies": {
"electron-updater": "^6.1.7"
},
"devDependencies": {
"electron": "^32.2.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.miapp.ejemplo",
"productName": "Mi App",
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": [
{
"provider": "generic",
"url": "https://gitea.tars.tools/brajan_aldana/upda"
}
]
}
}