-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.03 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
73
{
"name": "hangouts-chat-desktop",
"version": "1.0.1",
"description": "Unofficial desktop client for Google Hangouts Chat",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/craicoverflow/hangouts-chat-desktop.git"
},
"build": {
"appId": "me.endaphelan.${name}",
"mac": {
"category": "public.app-category.utility"
},
"nsis": {
"createDesktopShortcut": "always"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Utility"
}
},
"linux": {
"target": [
"AppImage",
"snap",
"flatpak",
"deb",
"rpm"
],
"icon": "icon.png",
"category": "Utility"
},
"devDependencies": {
"electron": "3.0.7",
"electron-builder": "^20.31.2",
"electron-installer-flatpak": "^0.8.0",
"electron-installer-redhat": "^0.5.0",
"rimraf": "^2.6.2",
"typescript": "^3.2.1"
},
"scripts": {
"start": "yarn install && yarn compile && electron .",
"build": "electron-packager . hangouts-chat-desktop --platform linux --arch x64 --overwrite force --out dist/",
"rpm64": "electron-installer-redhat --config config.json",
"postinstall": "electron-builder install-app-deps",
"compile": "rimraf app/out && tsc",
"pack": "yarn compile && electron-builder --dir",
"dist": "yarn compile && electron-builder",
"release": "yarn compile && electron-builder"
},
"keywords": [
"desktop",
"electron",
"google",
"hangouts"
],
"author": "Enda Phelan",
"license": "MIT"
}