forked from cyraxx/node-pogo-protos
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "node-pogo-protos-vnext",
"version": "2.31.0",
"description": "Pokémon Go Protobuf files from POGOProtos, wrapped up in a Node module",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pogosandbox/node-pogo-protos.git"
},
"keywords": [
"pokemon",
"pokemongo",
"pogo",
"api",
"protobuf",
"niantic",
"beta",
"v-next"
],
"author": "niico",
"license": "MIT",
"bugs": {
"url": "https://github.com/pogosandbox/node-pogo-protos/issues"
},
"homepage": "https://github.com/pogosandbox/node-pogo-protos#readme",
"dependencies": {
"protobufjs": "^6.8.8"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"typings": "./pogo-protos.d.ts",
"scripts": {
"test": "node test/test.js",
"build": "run-s compile minjs js ts",
"compile": "node proto/compile.js",
"minjs": "pbjs --keep-case -t static-module --no-verify --no-beautify --no-comments -o compiled.js ./proto/POGOProtos.proto",
"js": "pbjs --keep-case -t static-module --no-verify -o temp.js ./proto/POGOProtos.proto",
"ts": "pbts --no-comments -o compiled.d.ts temp.js"
}
}