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

47 lines
990 B
JSON
Raw Normal View History

2020-08-06 23:55:17 +02:00
{
"schemaVersion": 1,
"id": "quickmath",
"provides": ["quickmeth"],
2020-08-06 23:55:17 +02:00
"version": "${version}",
"name": "QuickMäth",
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",
"repo": "https://gitlab.com/jfmods/quickmath"
2020-08-06 23:55:17 +02:00
},
"license": "MIT",
"icon": "assets/quickmath/icon.png",
2020-08-06 23:55:17 +02:00
"environment": "*",
"entrypoints": {
2021-05-19 15:12:49 +02:00
"libjf:config": [
"io.gitlab.jfronny.quickmath.Cfg"
],
"libjf:asm": [
"io.gitlab.jfronny.quickmath.BytecodeTransformer"
],
"main": [
"io.gitlab.jfronny.quickmath.ModMain"
2020-08-06 23:55:17 +02:00
]
},
"mixins": [
"quickmath.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-07-28 10:21:07 +02:00
"libjf-config-v0": ">=2.10.0",
"libjf-unsafe-v0": ">=2.10.0"
},
"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
}
}