-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 KB
/
package.json
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
54
55
56
57
58
59
{
"name": "@jsxc/desktop",
"version": "0.1.0-alpha.10",
"description": "Real-time xmpp chat application with video calls, file transfer and encrypted communication",
"homepage": "https://www.jsxc.org/",
"bugs": {
"url": "https://github.com/jsxc/desktop/issues"
},
"license": "AGPL-3.0-or-later",
"author": "Klaus Herberth <klaus@jsxc.org>",
"repository": {
"type": "git",
"url": "git+https://github.com/jsxc/desktop.git"
},
"devDependencies": {
"electron": "^9.0.5",
"electron-builder": "^22.7.0"
},
"main": "main.js",
"dependencies": {
"@jsxc/single-page": "^0.2.0"
},
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"release": "electron-builder build --publish always",
"dist": "electron-builder",
"dist-all": "electron-builder -mwl"
},
"build": {
"appId": "org.jsxc.desktop",
"productName": "JSXC Desktop",
"asar": true,
"linux": {
"category": "Network",
"icon": "assets/icons/png/",
"target": [
"AppImage",
"snap",
"deb"
]
},
"mac": {
"category": "public.app-category.social-networking",
"icon": "assets/icons/mac/icon.icns",
"target": [
"dmg"
]
},
"win": {
"icon": "assets/icons/win/icon.ico",
"target": [
"nsis",
"portable"
]
}
}
}