forked from ArtemKot4/Switch-Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.json
More file actions
59 lines (59 loc) · 998 Bytes
/
make.json
File metadata and controls
59 lines (59 loc) · 998 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "../schemas/make.schema.json",
"info": {
"name": "Switch Chat",
"author": "Artem Kot",
"version": "1.1",
"description": "Мод, добавляющий глобальный и локальный чат, с поддержкой макроса",
"icon": "mod_icon.png"
},
"sources": [
{
"source": "code",
"target": "main.js",
"type": "main",
"language": "typescript"
},
{
"source": "launcher.js",
"type": "launcher",
"language": "javascript"
},
{
"source": "lib/*",
"type": "library",
"language": "javascript"
}
],
"api": "CoreEngine",
"debugIncludesExclude": [],
"compile": [
{
"type": "java",
"source": "java"
},
{
"type": "native",
"source": "native"
}
],
"java": {
"compiler": "javac"
},
"resources": [
{
"path": "assets/gui",
"type": "gui"
}
],
"additional": [
{
"source": "config.json",
"targetDir": "."
},
{
"source": "config.info.json",
"targetDir": "."
}
]
}