-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"private": true,
"repository": "github:pkmn/smogon",
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@pkmn/eslint-config": "^9.24.0",
"@pkmn/sets": "^5.2.0",
"@pkmn/sim": "^0.10.7",
"@pkmn/stats": "^0.2.31",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"eslint": "<10",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"jest": "^30.2.0",
"jsdom": "^28.1.0",
"json-stringify-pretty-compact": "^4.0.0",
"probe-image-size": "^7.2.3",
"sanitize-html": "^2.17.1",
"smogon": "^4.0.5",
"subpkg": "^4.1.0",
"tsup": "^8.5.1",
"typescript-eslint": "^8.56.1",
"typescript": "^5.9.3",
"wrapr": "^0.0.2"
},
"subPackages": [
"smogon",
"pkmn"
],
"scripts": {
"fix": "subpkg run fix",
"compile": "subpkg run compile",
"build": "subpkg run build",
"bundle": "subpkg run bundle",
"update": "npm run compile && node update",
"start": "subpkg run start",
"test": "subpkg run test",
"postinstall": "subpkg install"
}
}