-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"name": "google-chat-linux",
"version": "5.29.23-1",
"description": "Unofficial alternative Google Chat desktop app",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:deb": "electron-builder --linux=deb",
"dist:rpm": "electron-builder --linux=rpm",
"container:setup": "container_engine=${CONTAINER_ENGINE:-$(type -P podman || type -P docker)} && ${container_engine} build -t google-chat-linux-containerbuild containerbuild || >&2 echo 'Install podman or docker container engine to run this command.' && exit 1",
"container:build": "scripts/in-container.sh npm install && scripts/in-container.sh npm run dist",
"container:build:deb": "scripts/in-container.sh npm install && scripts/in-container.sh npm run dist:deb",
"container:build:rpm": "scripts/in-container.sh npm install && scripts/in-container.sh npm run dist:rpm"
},
"repository": "github.com:squalou/google-chat-linux.git",
"homepage": "https://github.com/squalou/google-chat-linux",
"author": "Roberto Fasciolo <[email protected]> (https://www.robyf.net/)",
"license": "WTFPL",
"build": {
"appId": "Google Chat Linux",
"linux": {
"desktop": {
"Name": "Google Chat Alt",
"MimeType": "x-scheme-handler/gchat;"
},
"category": "Network;InstantMessaging",
"target": "deb"
},
"deb": {
"depends": [
"xdg-desktop-portal"
]
},
"rpm": {
"fpm": [
"--rpm-rpmbuild-define=_build_id_links none"
]
},
"win": {
"target": [
"nsis"
]
},
"extraResources": [
{
"filter": [
"**/*"
],
"from": "assets"
}
]
},
"engines": {
"node": "18.14.0",
"npm": ">=8.15.0"
},
"dependencies": {
"electron-context-menu": "^3.5.0"
},
"devDependencies": {
"electron": "29.0.0",
"electron-builder": "^24.4.0"
}
}