-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 983 Bytes
/
package.json
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
31
32
33
34
{
"name": "3d-redstone-simulator",
"version": "0.8.0",
"description": "A project to simulate minecraft in the browser with the boolean logic mechanic (redstone) as close as we can get to the original game.",
"main": "static-server.js",
"scripts": {
"dev": "node static-server.js --host localhost --port 8080 --path frontend",
"start": "node backend/index.js --url http://localhost:8999/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuilhermeRossato/3D-Redstone-Simulator.git"
},
"type": "module",
"keywords": [
"3d",
"minecraft",
"voxel",
"webgl",
"redstone",
"simulator",
"logic",
"multiplayer",
"three.js"
],
"author": "Guilherme Rossato",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuilhermeRossato/3D-Redstone-Simulator/issues"
},
"homepage": "https://github.com/GuilhermeRossato/3D-Redstone-Simulator#readme",
"devDependencies": {},
"dependencies": {}
}