-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.51 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "AquaStar",
"version": "1.12.2",
"description": "A custom aqlite launcher",
"homepage": "https://github.com/aquaspy/AquaStar",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish never",
"dist-w": "electron-builder -w --publish never",
"dist-l": "electron-builder -l --publish never",
"dist-wl": "electron-builder -wl --publish never",
"dist-m": "electron-builder -m --publish never",
"loc": "node scripts/count-loc.js",
"web:build": "node scripts/build-web.js",
"web:preview": "npm run web:build && node scripts/serve-web.js",
"lint": "eslint main.js res scripts test web --ext .js",
"format": "prettier --write package.json .github .eslintrc.cjs .prettierrc.json web scripts/build-web.js scripts/serve-web.js test",
"format:check": "prettier --check package.json .github .eslintrc.cjs .prettierrc.json web scripts/build-web.js scripts/serve-web.js test",
"test": "node test/run.js",
"test:ci": "npm run test && npm run pack"
},
"keywords": [
"aqw;",
"aquastar;",
"aqlite;"
],
"author": "aquastar",
"license": "MIT",
"devDependencies": {
"electron": "11.5.0",
"electron-builder": "22.14.13",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3"
},
"build": {
"publish": null,
"asar": false,
"files": [
"**/*",
"!squashfs-root/**"
],
"appId": "aquastar",
"mac": {
"category": "Games",
"target": [
{
"target": "zip",
"arch": [
"x64"
]
},
{
"target": "dmg",
"arch": [
"x64"
]
}
]
},
"linux": {
"executableArgs": [
"--no-sandbox"
],
"maintainer": "aquastar",
"synopsis": "AQW launcher with native Flash",
"icon": "build/icons",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"category": "Game"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"icon": "Icon/Icon.png"
},
"dependencies": {
"electron-localshortcut": "3.2.1",
"gifenc": "^1.0.3",
"nw-flash-trust": "^0.3.0",
"ws": "^8.21.1",
"yauzl": "^2.10.0"
}
}