-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.13 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
{
"name": "AquaStar",
"version": "1.6.0",
"description": "A custom aqlite launcher",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-w": "electron-builder -w",
"dist-l": "electron-builder -l",
"dist-wl": "electron-builder -wl",
"dist-m": "electron-builder -m"
},
"keywords": [
"aqw;",
"aquastar;",
"aqlite;"
],
"author": "aquastar",
"license": "MIT",
"devDependencies": {
"electron": "^4.2.12",
"electron-builder": "^22.8.1",
"nw-flash-trust": "^0.3.0"
},
"build": {
"asar": false,
"appId": "aquastar",
"mac": {
"category": "Games"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"category": "Game"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"icon": "Icon/Icon.png"
},
"dependencies": {
"nw-flash-trust": "^0.3.0",
"electron-localshortcut": "3.2.1"
}
}