forked from mineprogramming/BuildCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.json
More file actions
45 lines (45 loc) · 1.03 KB
/
make.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
44
45
{
"info": {
"name": "BuildCraft PE",
"author": "Nernar (ex. Nikolay Savenko)",
"version": "1.0.4-canary",
"description": "Extending Minecraft with pipes, auto-crafting, quarries, engines and much more!"
},
"api": "CoreEngine",
"resources": [
{
"path": "resources/",
"type": "resource_directory"
},
{
"path": "gui/",
"type": "gui"
}
],
"sources": [
{
"source": "library/*",
"language": "javascript",
"type": "library"
},
{
"source": "dev/",
"target": "main.js",
"language": "typescript",
"type": "main"
},
{
"source": "launcher.js",
"language": "javascript",
"type": "launcher"
}
],
"compile": [],
"debugIncludesExclude": [],
"additional": [
{
"source": "config.json",
"targetDir": "."
}
]
}