summaryrefslogtreecommitdiffstats
path: root/packages/meshbay-client/package.json
blob: e2ea6ab91a547eb2bada69f63346be099e246e8d (plain) (blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
  "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",
  "main": "src/main.js",
  "private": true,
  "scripts": {
    "start": "electron .",
    "sync-ui": "node scripts/sync-ui.js",
    "dist": "npm run sync-ui && electron-builder --linux deb rpm"
  },
  "devDependencies": {
    "electron": "^42.0.0",
    "electron-builder": "^25.0.0"
  },
  "build": {
    "appId": "org.meshbay.client",
    "productName": "MeshBay",
    "files": [
      "src/**",
      "ui/**"
    ],
    "linux": {
      "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"
      ]
    }
  },
  "dependencies": {
    "bonjour-service": "^1.4.4",
    "castv2-client": "^1.2.0"
  },
  "overrides": {
    "protobufjs": "^7.5.5"
  },
  "allowScripts": {
    "electron@42.9.2": true
  }
}