Init
This commit is contained in:
29
src/main/resources/fabric.mod.json
Normal file
29
src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "regexinghoppers",
|
||||
"version": "${version}",
|
||||
"name": "RegexingHoppers",
|
||||
"description": "Adds advanced item filtering capabilities to hoppers using regular expressions.",
|
||||
"authors": [
|
||||
"BRNSystems"
|
||||
],
|
||||
"contact": {
|
||||
"repo": "https://git.brn.systems/BRNSystems/RegexingHoppers"
|
||||
},
|
||||
"license": "MIT",
|
||||
"icon": "icon.png",
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"systems.brn.regexinghoppers.RegexingHoppers"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"regexinghoppers.mixins.json"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=${loader_version}",
|
||||
"fabric": "*",
|
||||
"minecraft": "${minecraft_version}"
|
||||
}
|
||||
}
|
BIN
src/main/resources/icon.png
Normal file
BIN
src/main/resources/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
14
src/main/resources/regexinghoppers.mixins.json
Normal file
14
src/main/resources/regexinghoppers.mixins.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "systems.brn.regexinghoppers.mixin",
|
||||
"compatibilityLevel": "JAVA_21",
|
||||
"mixins": [
|
||||
"RegexingHopperMixin"
|
||||
],
|
||||
"client": [
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user