forked from vinnymac/PokeNurse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1007 Bytes
/
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
{
"name": "pokenurse",
"version": "1.0.0",
"description": "A tool for Pokémon Go to aid in transferring and evolving Pokémon",
"main": "main.js",
"scripts": {
"start": "electron .",
"buildmac": "electron-packager . PokeNurse --platform=darwin --arch=x64 --icon=imgs/emojioneicon.icns --overwrite",
"buildwindows": "electron-packager . PokeNurse --platform=win32 --arch=all --icon=imgs/emojioneicon.ico --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duhminick/PokeNurse.git"
},
"keywords": [
"pokemon",
"go"
],
"author": "duhminick",
"license": "MIT",
"bugs": {
"url": "https://github.com/duhminick/PokeNurse/issues"
},
"homepage": "https://github.com/duhminick/PokeNurse#readme",
"devDependencies": {
"electron-packager": "^7.3.0",
"electron-prebuilt": "^1.3.1"
},
"dependencies": {
"bootstrap": "^3.3.7",
"jquery": "^3.1.0",
"node-pogo-protos": "^1.1.1",
"pogobuf": "^1.3.0"
}
}