-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) 路 902 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) 路 902 Bytes
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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=24"
},
"homepage": "https://warrior.js.org",
"repository": "https://github.com/olistic/warriorjs",
"scripts": {
"build": "turbo run build --filter='!warriorjs-website'",
"clean": "rm -rf {apps,libs,towers}/*/dist",
"lint": "biome check",
"lint:fix": "biome check --write",
"typecheck": "turbo run typecheck --filter='!warriorjs-website'",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"lefthook": "^2.1.4",
"turbo": "^2.4.4",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": ["lefthook"]
}
}