This commit is contained in:
2025-10-19 21:48:39 +09:00
commit b983b79b39
9 changed files with 1757 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "client",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "concurrently \"vite\" \"electron ./main.js\"",
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"electron": "^38.3.0",
"vite": "^5.0.0",
"concurrently": "^8.2.0",
"@vitejs/plugin-react": "^4.2.0"
}
}