Files
sqwerk/package.json
T
Rodney Osodo 9ba713b910 style(biome): add TS linter
Add biome as TS linter and formatter. Also added the config files for biome
2025-06-11 09:42:38 +03:00

30 lines
680 B
JSON

{
"name": "sqwerk",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "NO_STRIP=true tauri",
"format": "biome format src --write",
"lint": "biome lint src"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tauri-apps/cli": "^2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "~5.6.2",
"vite": "^6.0.3"
}
}