-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.41 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
{
"private": true,
"repository": "github:pkmn/stats",
"license": "MIT",
"dependencies": {
"@pkmn/anon": "file:anon",
"@pkmn/data": "^0.9.22",
"@pkmn/dex": "^0.9.22",
"@pkmn/logs": "file:logs",
"@pkmn/stats": "file:stats",
"json-stringify-pretty-compact": "3.0.0",
"minimist": "^1.2.8",
"source-map-support": "^0.5.21"
},
"optionalDependencies": {
"@pkmn/engine": "file:../engine",
"@pkmn/sets": "^5.1.2"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@pkmn/eslint-config": "^9.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"subpkg": "^4.1.0",
"tsup": "^8.3.5",
"typescript-eslint": "^8.12.2",
"typescript": "^5.6.3"
},
"subPackages": ["anon", "logs", "stats"],
"scripts": {
"lint": "subpkg run lint && eslint --cache workflows",
"fix": "subpkg run fix && eslint --fix workflows",
"compile:smogon": "tsc -p .",
"compile:pkmn": "tsc -p tsconfig.pkmn.json",
"compile": "subpkg run compile && npm run compile:smogon",
"build": "npm run compile && npm run compile:pkmn",
"test": "subpkg run test",
"posttest": "npm run compile:smogon && npm run compile:pkmn && eslint --cache workflows",
"postinstall": "subpkg install"
}
}