-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "between.linux",
"version": "1.0.8-1",
"description": "Between, the couple chat app for Linux",
"main": "main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.63",
"@electron-forge/maker-deb": "^6.0.0-beta.63",
"@electron-forge/maker-rpm": "^6.0.0-beta.63",
"electron": "^18.0.0"
},
"config": {
"forge": {
"packagerConfig": {
"icon": "img/logo.png"
},
"makers": [
{
"name": "@electron-forge/maker-rpm",
"config": {
"options": {
"name": "Between.linux",
"productName": "Between.linux",
"productDescription": "Between.linux is a Linux port of the proprietary couples chat app 'Between'.",
"genericName": "Chat Application",
"icon": "img/logo.png",
"license": "Proprietary",
"maintainer": "wagnrd"
}
}
},
{
"name": "@electron-forge/maker-deb",
"config": {
"name": "Between.linux",
"productName": "Between.linux",
"productDescription": "Between.linux is a Linux port of the proprietary couples chat app 'Between'.",
"genericName": "Chat Application",
"icon": "img/logo.png",
"maintainer": "wagnrd"
}
}
]
}
}
}