25 lines
616 B
JSON
25 lines
616 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|