diff options
Diffstat (limited to 'packages/meshbay-client/package.json')
| -rw-r--r-- | packages/meshbay-client/package.json | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/packages/meshbay-client/package.json b/packages/meshbay-client/package.json index 50cfcb4..61d75d7 100644 --- a/packages/meshbay-client/package.json +++ b/packages/meshbay-client/package.json @@ -1,7 +1,7 @@ { "name": "meshbay-client", "version": "0.1.0", - "description": "MeshBay desktop client — the interface ships with the application, not from the hub", + "description": "MeshBay desktop client \u2014 the interface ships with the application, not from the hub", "license": "AGPL-3.0-or-later", "main": "src/main.js", "private": true, @@ -11,19 +11,33 @@ "dist": "npm run sync-ui && electron-builder --linux deb rpm" }, "devDependencies": { - "electron": "^33.0.0", + "electron": "^42.0.0", "electron-builder": "^25.0.0" }, "build": { "appId": "org.meshbay.client", "productName": "MeshBay", - "files": ["src/**", "ui/**"], + "files": [ + "src/**", + "ui/**" + ], "linux": { - "target": ["deb", "rpm"], + "target": [ + "deb", + "rpm" + ], "category": "Network", "synopsis": "Peer-to-peer file sharing, streaming and group chat" }, - "deb": { "depends": ["python3-meshbay-common"] }, - "rpm": { "depends": ["python3-meshbay-common"] } + "deb": { + "depends": [ + "python3-meshbay-common" + ] + }, + "rpm": { + "depends": [ + "python3-meshbay-common" + ] + } } } |