-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 764 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 764 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
{
"name": "crossfire-adapters",
"private": true,
"packageManager": "pnpm@9.15.4",
"type": "module",
"scripts": {
"build": "turbo run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm install --frozen-lockfile --silent && pnpm lint-staged",
"pre-push": "pnpm install --frozen-lockfile --silent && pnpm lint && pnpm build"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "biome check --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"lint-staged": "^16.4.0",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}