-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.89 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
51
52
53
54
55
{
"name": "race-engineer",
"version": "0.2.2",
"private": true,
"type": "module",
"description": "AI race engineer for sim racing (Le Mans Ultimate). Windows-only runtime; read-only and advisory.",
"license": "Apache-2.0",
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"dev": "pnpm --filter @race-engineer/desktop dev",
"dev:lmu": "pnpm --filter @race-engineer/desktop dev:lmu",
"build": "pnpm -r --if-present build",
"typecheck": "pnpm -r --if-present typecheck && tsc --noEmit -p tools/tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"inspect": "tsx tools/inspect.ts",
"replay": "tsx tools/inspect.ts replay",
"shm-dump": "tsx packages/adapters/lmu/src/cli/dump.ts",
"record": "tsx tools/record.ts",
"capture": "tsx tools/capture.ts",
"eval": "tsx tools/eval.ts"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@race-engineer/adapter-lmu": "workspace:*",
"@race-engineer/adapter-sim-replay": "workspace:*",
"@race-engineer/ai": "workspace:*",
"@race-engineer/core": "workspace:*",
"@race-engineer/eval": "workspace:*",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^3.0.0"
},
"pnpm": {
"//": "pnpm v9 blocks dependency install scripts by default; allow the ones that fetch a binary so `pnpm install` produces a runnable app (electron downloads its platform binary; better-sqlite3/koffi fetch their prebuilt native addon; esbuild its platform package).",
"onlyBuiltDependencies": [
"electron",
"esbuild",
"better-sqlite3",
"koffi"
]
}
}