-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 KB
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.38",
"@pkmn/dex": "^0.9.38",
"@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.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@pkmn/eslint-config": "^9.13.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.0",
"eslint": "^9.32.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.0.5",
"subpkg": "^4.1.0",
"tsup": "^8.5.0",
"typescript-eslint": "^8.39.0",
"typescript": "^5.9.2"
},
"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"
}
}