QuickMath/src/main/resources/fabric.mod.json

45 lines
924 B
JSON
Raw Normal View History

2020-08-06 23:55:17 +02:00
{
"schemaVersion": 1,
"id": "quickmeth",
"version": "${version}",
"name": "Quickmeth",
2021-10-25 18:58:41 +02:00
"description": "Replaces math methods with incorrect alternatives",
2020-08-06 23:55:17 +02:00
"authors": [
"JFronny"
],
"contact": {
"website": "https://jfronny.gitlab.io",
2021-03-05 08:01:20 +01:00
"repo": "https://gitlab.com/jfmods/Quickmeth"
2020-08-06 23:55:17 +02:00
},
"license": "MIT",
"icon": "assets/quickmeth/icon.png",
"environment": "*",
"entrypoints": {
2021-05-19 15:12:49 +02:00
"libjf:config": [
"io.gitlab.jfronny.quickmeth.Cfg"
],
"libjf:asm": [
"io.gitlab.jfronny.quickmeth.BytecodeTransformer"
],
"main": [
"io.gitlab.jfronny.quickmeth.ModMain"
2020-08-06 23:55:17 +02:00
]
},
"mixins": [
2020-08-07 11:02:13 +02:00
"quickmeth.mixins.json"
2020-08-06 23:55:17 +02:00
],
"depends": {
2022-02-28 20:35:54 +01:00
"fabricloader": ">=0.13.3",
2021-07-21 15:54:32 +02:00
"minecraft": "*",
2022-04-03 20:32:40 +02:00
"libjf-config-v0": ">=2.7.1"
},
"custom": {
"lithium:options": {
"mixin.gen.perlin_noise": false
2021-10-25 18:58:41 +02:00
},
"libjf": {
"asm.export": false
}
2020-08-06 23:55:17 +02:00
}
}