-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstencyl-extension.json
More file actions
38 lines (35 loc) · 1.04 KB
/
stencyl-extension.json
File metadata and controls
38 lines (35 loc) · 1.04 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
{
"group": "com.polydes",
"id": "com.polydes.datastruct",
"name": "Structures Extension",
"description": "Create and Manage Structured Data",
"type": "game",
"author": "Justin Espedal",
"website": "https://www.polydes.com/repo/engine/com.polydes.datastruct",
"repository": "https://www.polydes.com/repo",
"target": "stencyl-4.2.0",
"version": "2.2.0",
"icon": "icon.png",
"toolset": {
"root": "toolset",
"src": [
{"type": "java", "path": "src"},
{"type": "res", "path": "res", "target": "res/com/polydes/datastruct"}
],
"dependencies": [
"platform:com.stencyl:jide-oss",
"platform:org.apache.commons:commons-lang3",
"platform:ch.qos.reload4j:reload4j",
"platform:commons-io:commons-io",
"platform:com.formdev:flatlaf",
"maven:tablelayout:TableLayout:20050920",
"maven:org.antlr:antlr4-runtime:4.5"
],
"mainClass": "com.polydes.datastruct.DataStructuresExtension",
"internalVersion": "4"
},
"engine": {
"root": "engine",
"compatibility": "all"
}
}