forked from cryptocat/cryptocat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.21 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
{
"name": "CryptocatBuilder",
"version": "2.0.0",
"description": "Builds Cryptocat.",
"repository": {
"type": "git",
"url": "git+https://github.com/cryptocat/cryptocat"
},
"author": "Nadim Kobeissi",
"license": "GPL-3.0",
"homepage": "https://crypto.cat",
"devDependencies": {
"electron": "latest"
},
"scripts": {
"setup": "npm install",
"dev": "electron src/app.js",
"win": "build -w",
"mac": "build -m",
"linux": "build -l"
},
"build": {
"appId": "com.cryptocat.cryptocat",
"copyright": "Copyright 2011-2017 Nadim Kobeissi",
"asar": true,
"compression": "maximum",
"directories": {
"app": "src",
"output": "dist"
},
"mac": {
"category": "public.app-category.productivity",
"target": ["pkg"],
"icon": "src/img/logo/logo.icns",
"type": "distribution"
},
"nsis": {
"oneClick": true,
"runAfterFinish": true,
"guid": "Cryptocat",
"installerIcon": "src/img/logo/logo.ico",
"installerHeaderIcon": "src/img/logo/64x64.png",
"menuCategory": true
},
"win": {
"target": ["nsis"],
"icon": "src/img/logo/logo.ico",
"legalTrademarks": "Cryptocat"
},
"linux": {
"category": "Network",
"target": ["AppImage"],
"icon": "src/img/logo/"
}
}
}