-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "nightwave-plaza-electron",
"version": "0.5.1-alpha",
"description": "Nightwave Plaza App",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder --publish never",
"build-windows": "electron-builder --publish never"
},
"author": "jjoshm",
"devDependencies": {
"electron": "^29.1.4",
"electron-builder": "^24.13.3"
},
"build": {
"asar": true,
"linux": {
"target": [
"zip",
"AppImage"
],
"category": "Music",
"artifactName": "${name}_v${version}_linux.${ext}"
},
"win": {
"target": [
"portable"
],
"artifactName": "${name}_v${version}_windows.${ext}"
},
"extraFiles": [
"com.github.jjoshm.${name}.desktop"
]
},
"repository": "https://github.com/jjoshm/nightwave-plaza-electron",
"keywords": [
"Electron",
"gfn",
"geforcenow",
"geforce-now"
],
"license": "GPL-3.0",
"dependencies": {
"discord-rich-presence": "^0.0.8",
"electron-json-storage": "^4.6.0"
}
}