diff options
Diffstat (limited to 'ui/package.json')
-rw-r--r-- | ui/package.json | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/ui/package.json b/ui/package.json index 056e10e..a25358f 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,14 +1,28 @@ { "name": "foxfleet-ui", + "private": true, "version": "0.0.1", - "main": "index.js", + "type": "module", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "build": "tsc -b && vite build", + "lint": "eslint ." + }, + "dependencies": { + "@tauri-apps/api": "^2.2.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" }, - "author": "", - "license": "ISC", - "description": "", "devDependencies": { + "@eslint/js": "^9.20.0", + "@types/react": "^19.0.8", + "@types/react-dom": "^19.0.3", + "@vitejs/plugin-react": "^4.3.4", + "eslint": "^9.20.1", + "eslint-plugin-react-hooks": "^5.0.0", + "eslint-plugin-react-refresh": "^0.4.19", + "globals": "^15.15.0", + "typescript": "~5.7.2", + "typescript-eslint": "^8.24.0", "vite": "^6.1.0" } } |