-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 915 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "react-minecraft",
"version": "1.0.0",
"description": "A React Implementation for Minecraft",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib",
"start": "DEBUG=\"minecraft-protocol\" ./node_modules/.bin/babel src --out-dir lib && node lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"reset-world": "rm -rf world && mkdir world"
},
"author": "Bufferhead (Gregor Vostrak)",
"license": "MIT",
"type": "module",
"dependencies": {
"@babel/preset-react": "^7.22.15",
"flying-squid": "^1.5.0",
"minecraft-data": "^3.48.0",
"prismarine-block": "^1.17.1",
"prismarine-registry": "^1.7.0",
"react": "^18.2.0",
"react-reconciler": "^0.29.0",
"vec3": "^0.1.8"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2"
}
}