-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.64 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
{
"name": "flappy-axolotl",
"version": "1.0.0",
"description": "A charming underwater Flappy Bird game featuring a realistic pink axolotl",
"main": "electron-main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --mac --win --linux",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"icons:gen": "bash scripts/generate-icons.sh",
"icons:regen": "bash scripts/create-placeholder.sh && npm run icons:gen"
},
"keywords": [
"game",
"flappy-bird",
"axolotl",
"electron",
"browser-game"
],
"author": {
"name": "Daniel Bates",
"email": "daniel@example.com"
},
"license": "MIT",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"jimp": "^0.16.13"
},
"build": {
"appId": "com.flappyaxolotl.game",
"productName": "Flappy Axolotl",
"files": [
"index.html",
"game.js",
"style.css",
"manifest.json",
"electron-main.js"
],
"mac": {
"category": "public.app-category.games",
"target": [
"dmg",
"zip"
],
"icon": "icon.icns"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Game",
"icon": "icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"publish": [
{
"provider": "github",
"owner": "danielalanbates",
"repo": "flappy-axolotl"
}
]
}