aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorChristoph Settgast <csett86_git@quicksands.de>2023-07-17 11:51:49 +0200
committerGitHub <noreply@github.com>2023-07-17 11:51:49 +0200
commitc0226059106fd23585956a3d32553d5d4778e6e6 (patch)
tree6e70496d779c9444b354b1f6b560ac713cff5742 /package.json
parent481ee44faef30fe69df861eebd144e4603c61574 (diff)
ci: add support for linux-arm64 AppImage and deb (#889)
Diffstat (limited to 'package.json')
-rw-r--r--package.json18
1 files changed, 14 insertions, 4 deletions
diff --git a/package.json b/package.json
index d2c1c7f..65d1210 100644
--- a/package.json
+++ b/package.json
@@ -11,7 +11,7 @@
"lint": "eslint . && flow",
"build": "webpack --config ./webpack.main.js --mode production && webpack --config ./webpack.renderer.js --mode production",
"dist": "npm run build && electron-builder",
- "postinstall": "patch-package && electron-builder install-app-deps",
+ "postinstall": "patch-package",
"watch": "webpack --config ./webpack.renderer.js --mode development --watch --watch-options-poll=1000"
},
"engines": {
@@ -22,6 +22,7 @@
"productName": "Jitsi Meet",
"generateUpdatesFilesForAllChannels": true,
"afterSign": "./notarize.js",
+ "npmRebuild": false,
"files": [
"build",
"resources",
@@ -46,6 +47,7 @@
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"asarUnpack": "**/*.node",
+ "notarize": false,
"extendInfo": {
"NSCameraUsageDescription": "Jitsi Meet requires access to your camera in order to make video-calls.",
"NSMicrophoneUsageDescription": "Jitsi Meet requires access to your microphone in order to make calls (audio/video).",
@@ -83,7 +85,15 @@
{
"arch": "x64",
"target": "deb"
- }
+ },
+ {
+ "arch": "arm64",
+ "target": "AppImage"
+ },
+ {
+ "arch": "arm64",
+ "target": "deb"
+ }
]
},
"deb": {
@@ -139,7 +149,7 @@
"readmeFilename": "README.md",
"license": "Apache-2.0",
"dependencies": {
- "@jitsi/electron-sdk": "5.0.5",
+ "@jitsi/electron-sdk": "6.0.3",
"electron-debug": "^3.2.0",
"electron-reload": "^1.5.0"
},
@@ -170,7 +180,7 @@
"concurrently": "5.1.0",
"css-loader": "^6.7.1",
"electron": "25.3.0",
- "electron-builder": "23.1.0",
+ "electron-builder": "24.4.0",
"electron-context-menu": "^2.5.0",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.2",