forked from Clones/Controlify
Initial commit
This commit is contained in:
9
src/main/resources/fabric-mod-template.mixins.json
Normal file
9
src/main/resources/fabric-mod-template.mixins.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"package": "dev.isxander.fabricmodtemplate.mixins",
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
|
||||
]
|
||||
}
|
28
src/main/resources/fabric.mod.json
Normal file
28
src/main/resources/fabric.mod.json
Normal file
@ -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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user