-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
61
{
"name": "kevin-allen-klicker",
"version": "1.0.0",
"description": "Cookie Clicker but I replace the images with pictures of Kevin Allen! This is a Cookie Clicker overhaul, where my goal is to completely replace the assets with custom ones! (and release a Steam Workshop version)",
"main": "electronEntry.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aspenini/Kevin-Allen-Klicker.git"
},
"author": "Aspenini",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aspenini/Kevin-Allen-Klicker/issues"
},
"homepage": "https://github.com/Aspenini/Kevin-Allen-Klicker#readme",
"devDependencies": {
"electron": "^33.0.2",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.kevin.allen.klicker",
"productName": "Kevin Allen Klicker",
"copyright": "Copyright © 2024 Aspenini",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!node_modules/.bin",
"!.git"
],
"win": {
"icon": "kevin-allen.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Game"
},
"mac": {
"icon": "kevin-allen-set.icns",
"target": [
"dmg",
"zip"
],
"category": "public.app-category.games"
}
}
}