diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fabric-mod-template.mixins.json | 9 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 28 |
2 files changed, 37 insertions, 0 deletions
diff --git a/src/main/resources/fabric-mod-template.mixins.json b/src/main/resources/fabric-mod-template.mixins.json new file mode 100644 index 0000000..9ac6462 --- /dev/null +++ b/src/main/resources/fabric-mod-template.mixins.json @@ -0,0 +1,9 @@ +{ + "package": "dev.isxander.fabricmodtemplate.mixins", + "required": true, + "minVersion": "0.8", + "compatibilityLevel": "JAVA_17", + "mixins": [ + + ] +}
\ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..95b5d16 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,28 @@ +{ + "schemaVersion": 1, + "id": "${id}", + "version": "${version}", + "name": "${name}", + "description": "${description}", + "authors": [ + "isXander" + ], + "contact": { + "homepage": "https://isxander.dev", + "issues": "https://github.com/${github}/issues", + "sources": "https://github.com/${github}" + }, + "license": "LGPL-3.0-or-later", + "environment": "client", + "entrypoints": { + + }, + "mixins": [ + "fabric-mod-template.mixins.json" + ], + "depends": { + "fabricloader": ">=0.14.0", + "minecraft": "1.19.x", + "java": ">=17" + } +} |