This repository has been archived by the owner on Jun 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "chimeverse",
"version": "0.1.55",
"description": "Jabber/XMPP client based on Converse.js and Electron",
"main": "main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"dist:win64": "build --platform win --arch x64",
"dist:linux64deb": "build --platform linux --arch x64"
},
"repository": "https://github.com/nick-denry/Chimeverse",
"keywords": [
"Jabber",
"XMPP",
"Client",
"converse.js",
"Electron",
"OMEMO"
],
"author": "Nick Denry <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"electron": "^4.2.12",
"electron-builder": "^20.44.4",
"electron-packager": "^13.1.1",
"electron-rebuild": "^1.10.1"
},
"dependencies": {
"angular": "^1.7.9",
"converse.js": "^6.0.0",
"electron-settings": "^3.2.0",
"github-buttons": "^2.8.0",
"keytar": "^4.13.0",
"n": "^6.5.1",
"open-iconic": "^1.1.1"
},
"build": {
"appId": "com.denry.chimeverse",
"productName": "Chimeverse",
"mac": {
"category": "public.app-category.social-networking",
"icon": "resources/images/logo.icns",
"target": "dmg"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"deb"
]
},
"win": {
"target": "nsis",
"icon": "resources/images/logo.ico"
}
}
}