1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
"name": "meshbay-client",
"version": "0.1.0",
"description": "MeshBay desktop client — the interface ships with the application, not from the hub",
"license": "AGPL-3.0-or-later",
"author": "MeshBay Team <team@meshbay.org>",
"homepage": "https://meshbay.org",
"main": "src/main.js",
"private": true,
"scripts": {
"start": "electron .",
"sync-ui": "node scripts/sync-ui.js",
"dist": "bash ../../packaging/build/build-client.sh"
},
"devDependencies": {
"electron": "^44.1.1",
"electron-builder": "^26.15.3"
},
"build": {
"appId": "org.meshbay.client",
"productName": "MeshBay",
"files": [
"src/**",
"ui/**"
]
},
"dependencies": {
"bonjour-service": "^1.4.4",
"castv2-client": "^1.2.0"
},
"overrides": {
"protobufjs": "^7.6.5"
},
"allowScripts": {
"electron@44.1.1": true
}
}
|