20 lines
449 B
JSON
20 lines
449 B
JSON
{
|
|
"private": true,
|
|
"packageManager": "pnpm@10.6.0",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.0",
|
|
"typescript": "^5.8.0",
|
|
"vitest": "^3.0.0"
|
|
},
|
|
"scripts": {
|
|
"format": "biome format --write .",
|
|
"format:check": "biome format .",
|
|
"lint": "biome lint .",
|
|
"lint:fix": "biome lint --write .",
|
|
"typecheck": "tsc --build",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"check": "biome check . && tsc --build && vitest run"
|
|
}
|
|
}
|