Files
k-tuner/package.json
Gabriel Kaszewski bd39641c21 feat: update app name and icons for K-Tuner
- Changed app title from "AeroTuner" to "K-Tuner" in index.html and vite.config.ts
- Updated icon paths in index.html and vite.config.ts to use new icon files
- Added new icon files in various sizes (128x128, 144x144, 152x152, 192x192, 256x256, 384x384, 512x512, 48x48, 72x72, 96x96)
- Removed old PWA icons (pwa-192x192.png, pwa-512x512.png)
- Updated package.json to use a newer version of @types/bun
- Excluded test files from TypeScript compilation in tsconfig.app.json
- Refactored Header component to display "K-Tuner"
2025-12-30 00:14:41 +01:00

36 lines
878 B
JSON

{
"name": "tuner",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.17",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/bun": "^1.3.5",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0"
}
}