forked from hmlendea/gfn-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "geforcenow-electron",
"appId": "com.github.hmlendea.${name}",
"productName": "GeForce NOW",
"version": "1.10.0",
"description": "A Linux desktop web app for GeForce NOW",
"main": "scripts/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --publish never"
},
"build": {
"asar": false,
"linux": {
"target": [
"zip",
"AppImage",
"snap"
],
"category": "Games",
"artifactName": "${name}_${version}_linux.${ext}"
},
"snap": {
"plugs": [
"default",
"audio-record",
"joystick"
]
},
"extraFiles": [
"com.github.hmlendea.${name}.desktop"
]
},
"repository": "https://github.com/hmlendea/gfn-electron",
"keywords": [
"Electron",
"gfn",
"geforcenow",
"geforce-now"
],
"author": "Horațiu Mlendea <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"electron": "^21.1.0",
"electron-builder": "^23.3.3"
},
"dependencies": {
"discord-rich-presence": "^0.0.8"
}
}