-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.04 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
{
"name": "Flappux",
"version": "1.1.0",
"description": "Flappy bird game based on free/proprietary soft. characters",
"main": "main.js",
"scripts": {
"start": "electron .",
"build-all": "electron-packager . Flappux --all --out=dist",
"pack:darwin": "electron-packager . Flappux --out=dist --platform=darwin --arch=x64 --icon=assets/icons/icon.icns && cd dist && zip -r Flappux-darwin-x64.zip Flappux-darwin-x64 && cd ../",
"pack:win32": "electron-packager . Flappux --out=dist --platform=win32 --arch=ia32 --icon=assets/icons/icon.ico && cd dist && zip -r Flappux-win32-ia32.zip Flappux-win32-ia32 && cd ../",
"pack:win64": "electron-packager . Flappux --out=dist --platform=win32 --arch=x64 --icon=assets/icons/icon.ico && cd dist && zip -r Flappux-win32-x64.zip Flappux-win32-x64 && cd ../",
"pack:linux64": "electron-packager . Flappux --out=dist --platform=linux --arch=x64 --icon=assets/icons/icon.png && cd dist && zip -r Flappux-linux-x64.zip Flappux-linux-x64 && cd ../",
"pack:linux32": "electron-packager . Flappux --out=dist --platform=linux --arch=ia32 --icon=assets/icons/icon.png && cd dist && zip -r Flappux-linux-ia32.zip Flappux-linux-ia32 && cd ../",
"build": "npm run pack:darwin && npm run pack:win32 && npm run pack:win64 && npm run pack:linux64 && npm run pack:linux32",
"nixstart": "nix run nixpkgs.electron_6 -c electron .",
"test": "return 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ardacebi/flappux.git"
},
"author": "Arda Çebi",
"contributors": [
"Arda Çebi <ardacebi1@gmail.com> (https://www.ardacebi.com)",
"Tan Siret Akıncı <tansiretakinci@yandex.com> (https://github.com/yutyo)"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ardacebi/flappux/issues"
},
"homepage": "https://github.com/ardacebi/flappux#readme",
"devDependencies": {
"electron": "^15.5.5",
"electron-packager": "^14.2.1"
},
"launcher": {
"title": "Flappux",
"icon": "",
"main": "./index.html",
"width": 800,
"height": 600
}
}