-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
47
48
49
50
{
"name": "ps",
"private": true,
"repository": "github:pkmn/ps",
"license": "MIT",
"dependencies": {
"@pkmn/eslint-config": "^9.24.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"esbuild": "^0.27.3",
"eslint": "<10",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"jest": "^30.2.0",
"json-stringify-pretty-compact": "3.0.0",
"minimist": "^1.2.8",
"subpkg": "^4.1.0",
"terser": "^5.46.0",
"ts-jest": "^29.4.6",
"tsup": "^8.5.1",
"typescript-eslint": "^8.56.1",
"typescript": "^5.9.3"
},
"subPackages": [
"types",
"sets",
"streams",
"sim",
"randoms",
"dex/types",
"dex",
"mods",
"data",
"protocol",
"client",
"img",
"view",
"login"
],
"scripts": {
"lint": "subpkg run lint && eslint build import",
"fix": "subpkg run fix && eslint --fix build import",
"compile": "subpkg run compile",
"build": "subpkg run build",
"start": "subpkg run start",
"test": "subpkg run test",
"test:integration": "npm test && npm -C integration test",
"postinstall": "subpkg install && npm -C integration install --install-links=false"
}
}