Files
sqwerk/package.json
T
Rodney Osodo 110f07a401 chore(version): populate cargo.toml and package.json with correct values
Setup the version as 0.0.1 add description, keywords license and author
2025-06-11 11:30:57 +03:00

34 lines
877 B
JSON

{
"name": "sqwerk",
"private": true,
"version": "0.0.1",
"description": "Your Complete SQL Platform, From Design to Delivery",
"keywords": ["tauri", "sql", "database"],
"license": "Apache-2.0",
"author": "Rodney Osodo <socials@rodneyosodo.com>",
"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"
}
}