Add linting and type-checking scripts to package.json

This commit is contained in:
2025-07-26 22:50:19 +02:00
parent 46550109f9
commit 76bf88cd02

View File

@@ -12,7 +12,10 @@
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
"test:run": "vitest run",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.2",