Update dependencies and enhance package configuration

- Upgraded Electron from version 35.7.5 to 39.2.4.
- Updated baseline-browser-mapping and electron-to-chromium to their latest versions.
- Improved package description and author information in package.json.
- Changed build-backend script to use virtual environment Python.
- Enabled ASAR packaging and specified unpacking rules for build files.
This commit is contained in:
2025-11-30 20:41:36 -06:00
parent 253872eb57
commit 5fcc86d65a
2 changed files with 19 additions and 14 deletions

20
package-lock.json generated
View File

@@ -31,7 +31,7 @@
"vuetify": "^3.7.6"
},
"devDependencies": {
"electron": "^35.7.5",
"electron": "^39.2.4",
"electron-builder": "^24.6.3"
},
"engines": {
@@ -2163,9 +2163,9 @@
"license": "MIT"
},
"node_modules/baseline-browser-mapping": {
"version": "2.8.31",
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.31.tgz",
"integrity": "sha512-a28v2eWrrRWPpJSzxc+mKwm0ZtVx/G8SepdQZDArnXYU/XS+IF6mp8aB/4E+hH1tyGCoDo3KlUCdlSxGDsRkAw==",
"version": "2.8.32",
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.32.tgz",
"integrity": "sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==",
"license": "Apache-2.0",
"bin": {
"baseline-browser-mapping": "dist/cli.js"
@@ -3167,9 +3167,9 @@
}
},
"node_modules/electron": {
"version": "35.7.5",
"resolved": "https://registry.npmjs.org/electron/-/electron-35.7.5.tgz",
"integrity": "sha512-dnL+JvLraKZl7iusXTVTGYs10TKfzUi30uEDTqsmTm0guN9V2tbOjTzyIZbh9n3ygUjgEYyo+igAwMRXIi3IPw==",
"version": "39.2.4",
"resolved": "https://registry.npmjs.org/electron/-/electron-39.2.4.tgz",
"integrity": "sha512-KxPtwpFceQKSxRtUY39piHLYhJMMyHfOhc70e6zRnKGrbRdK6hzEqssth8IGjlKOdkeT4KCvIEngnNraYk39+g==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -3362,9 +3362,9 @@
}
},
"node_modules/electron-to-chromium": {
"version": "1.5.260",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.260.tgz",
"integrity": "sha512-ov8rBoOBhVawpzdre+Cmz4FB+y66Eqrk6Gwqd8NGxuhv99GQ8XqMAr351KEkOt7gukXWDg6gJWEMKgL2RLMPtA==",
"version": "1.5.262",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.262.tgz",
"integrity": "sha512-NlAsMteRHek05jRUxUR0a5jpjYq9ykk6+kO0yRaMi5moe7u0fVIOeQ3Y30A8dIiWFBNUoQGi1ljb1i5VtS9WQQ==",
"license": "ISC"
},
"node_modules/emoji-regex": {

View File

@@ -1,12 +1,13 @@
{
"name": "reticulum-meshchat",
"version": "2.32.3",
"description": "",
"description": "A simple mesh network communications app powered by the Reticulum Network Stack",
"author": "Sudo-Ivan",
"main": "electron/main.js",
"scripts": {
"watch": "npm run build-frontend -- --watch",
"build-frontend": "vite build",
"build-backend": "python setup.py build",
"build-backend": "venv/bin/python setup.py build",
"build": "npm run build-frontend && npm run build-backend",
"electron-postinstall": "electron-builder install-app-deps",
"electron": "npm run electron-postinstall && npm run build && electron .",
@@ -17,13 +18,16 @@
"node": ">=18"
},
"devDependencies": {
"electron": "^35.7.5",
"electron": "^39.2.4",
"electron-builder": "^24.6.3"
},
"build": {
"appId": "com.sudoivan.reticulummeshchat",
"productName": "Reticulum MeshChatX",
"asar": false,
"asar": true,
"asarUnpack": [
"build/exe/**/*"
],
"files": [
"electron/**/*"
],
@@ -75,6 +79,7 @@
"deb"
],
"maintainer": "Sudo-Ivan",
"category": "Network",
"extraFiles": [
{
"from": "build/exe",