Better-Whitelist/src/main/resources/fabric.mod.json

39 lines
1.0 KiB
JSON
Raw Normal View History

2023-03-12 16:58:22 +01:00
{
"schemaVersion": 1,
"id": "better-whitelist",
"name": "Better Whitelist",
"version": "${version}",
"description": "A configurable whitelist system for Minecraft",
"authors": ["JFronny"],
"contact": {
"email": "projects.contact@frohnmeyer-wds.de",
"homepage": "https://jfronny.gitlab.io",
"issues": "https://git.frohnmeyer-wds.de/JfMods/Better-Whitelist/issues",
"sources": "https://git.frohnmeyer-wds.de/JfMods/Better-Whitelist"
},
"license": "MIT",
"icon": "assets/better-whitelist/icon.png",
"environment": "*",
"entrypoints": {
2023-03-12 20:46:47 +01:00
"client": [
"io.gitlab.jfronny.betterwhitelist.client.BetterWhitelistClient"
],
"server": [
"io.gitlab.jfronny.betterwhitelist.server.BetterWhitelistServer"
]
2023-03-12 16:58:22 +01:00
},
"mixins": [
2023-03-12 20:46:47 +01:00
{
"config": "better-whitelist.server.mixins.json",
"environment": "server"
}
2023-03-12 16:58:22 +01:00
],
"depends": {
"fabricloader": ">=0.14.17",
2023-03-12 20:46:47 +01:00
"minecraft": "*",
"fabric-networking-api-v1": "*",
2023-03-12 21:34:52 +01:00
"fabric-command-api-v2": "*",
"libjf-base": "*"
2023-03-12 16:58:22 +01:00
}
}