feat: Add package.json for Turtle Control Center project configuration

This commit is contained in:
MayaTheShy
2026-02-15 23:53:20 -05:00
parent b0d070bad7
commit ba91de54d8

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "turtle-control-center",
"version": "1.0.0",
"description": "Web-based control center for ComputerCraft mining turtles",
"scripts": {
"install:all": "cd server && npm install && cd ../client && npm install",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm start",
"client": "cd client && npm run dev",
"build": "cd client && npm run build"
},
"keywords": [
"minecraft",
"computercraft",
"turtle",
"control",
"web"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}