-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.09 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
{
"name": "HastyHeroes",
"version": "1.0.0",
"homepage": "https://aveek-saha.github.io",
"description": "An endless 2D jumping game, select a avatar and start playing",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"repository": "https://github.com/Aveek-Saha/HastyHeroes",
"keywords": [
"Game",
"2D",
"Hero",
"Fun",
"Jump"
],
"build": {
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"maintainer": "Aveek <aveek.s98@gmail.com>",
"icon": "build/icon",
"category": "Game"
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"author": "Aveek Saha",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^2.0.0",
"electron-builder": "19.47.1",
"electron-packager": "^11.1.0"
}
}