-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "ps2gamelaunch",
"version": "1.1.0",
"description": "A pcsx2 games launcher",
"main": "main.js",
"scripts": {
"start": "./node_modules/.bin/electron .",
"reconf": "./node_modules/.bin/electron-rebuild",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "./node_modules/.bin/electron-builder --dir",
"dist": "./node_modules/.bin/electron-builder"
},
"build": {
"appId": "com.br.rannet.ps2launcher",
"win": {
"target": "portable",
"icon": "icon.png",
"publisherName": "RanNet",
"requestedExecutionLevel": "asInvoker"
},
"linux": {
"target": [
"tar.xz",
"deb"
],
"icon": "logo.icon"
},
"compression": "normal",
"buildDependenciesFromSource": "true"
},
"keywords": [],
"author": "Ranieri Junior [email protected]",
"license": "ISC",
"dependencies": {
"7zip-bin": "^5.0.3",
"axios": "^0.21.0",
"node-7z": "^2.1.2"
},
"devDependencies": {
"electron": "^10.1.5",
"electron-builder": "^22.9.1"
}
}