-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 KB
/
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
35
36
37
38
39
40
41
42
43
{
"name": "tylercraft",
"private": true,
"workspaces": [
"apps/server",
"apps/terrain-app",
"apps/web-client",
"lib/engine",
"lib/world",
"lib/terrain-gen",
"lib/eslint"
],
"license": "MIT",
"version": "1.0.7",
"description": "TylerCraft, My version of a web based MineCraft",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/tylerthecoder/TylerCraft"
},
"files": [
"dist/**/*"
],
"scripts": {
"ts:dev": "tsc -b -w src",
"build": "yarn workspaces foreach -p -i -t -A run build",
"dev": "yarn workspaces foreach -p -i -A run dev",
"test": "yarn workspaces foreach -p -i -A run test",
"engine": "yarn workspace @craft/engine",
"web": "yarn workspace @craft/web-client",
"server": "yarn workspace @craft/server",
"world": "yarn workspace @craft/rust-world",
"terrain-gen": "yarn workspace @craft/terrain-gen",
"terrain-app": "yarn workspace @craft/terrain-app"
},
"nodemonConfig": {
"ignore": [
"public/**/*",
"worlds/**/*"
]
},
"packageManager": "[email protected]"
}