forked from RedSparr0w/Pokeclicker-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "pokeclicker-desktop",
"version": "1.1.0",
"description": "PokeClicker Desktop",
"repository": {
"type": "git",
"url": "https://github.com/RedSparr0w/Pokeclicker-desktop.git"
},
"main": "src/main.js",
"scripts": {
"start": "electron ./",
"restore-src": "git restore --source=HEAD --staged --worktree -- src/pokeclicker-master && git clean -x -f -- src/pokeclicker-master",
"dist:32": "npm run restore-src && electron-builder --ia32",
"dist:64": "npm run restore-src && electron-builder --ia64 -c.artifactName=${productName}-64bit-setup-${version}.${ext}",
"win": "electron-builder --windows portable",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "RedSparr0w",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"adm-zip": "^0.5.5",
"discord-rpc": "^4.0.1",
"electron-updater": "^4.3.9"
},
"devDependencies": {
"electron": "^13.1.5",
"electron-builder": "^22.11.7"
},
"build": {
"productName": "PokéClicker",
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"requestedExecutionLevel": "highestAvailable"
},
"linux": {
"category": "Game",
"icon": "icon_512x512.png"
},
"deb": {},
"appId": "pokeclicker.desktop"
}
}