-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "pogo-data-generator",
"version": "1.18.2",
"description": "Pokemon GO project data generator",
"author": "TurtIeSocks",
"license": "Apache-2.0",
"keywords": [
"pogo",
"pokemon",
"go",
"data",
"generator",
"masterfile"
],
"files": [
"/dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node .",
"generate": "ts-node devWrapper.ts --test",
"pokeapi": "ts-node devWrapper.ts --test --pokeapi",
"raw": "ts-node devWrapper.ts --test --raw",
"invasions": "ts-node devWrapper.ts --test --invasions",
"test": "tsc && ./node_modules/.bin/jest",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"publishBuild": "rm -r dist && tsc",
"prettier": "prettier --write \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/WatWowMap/pogo-data-generator"
},
"bugs": {
"url": "https://github.com/WatWowMap/Pogo-Data-Generator/issues"
},
"dependencies": {
"@na-ji/pogo-protos": "<3.0.0",
"jszip": "^3.10.1",
"node-fetch": "2.6.7"
},
"engines": {
"node": ">=16.0.0"
},
"prettier": {
"arrowParens": "always",
"trailingComma": "all",
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/node": "*",
"@types/node-fetch": "^2.6.2",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.5.5"
}
}