1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-17 02:40:06 +00:00
CC-Tweaked/projects/fabric/src/main/resources/fabric.mod.json
Jonathan Coates a74089d8ae
Bump dependency versions
Mostly in prep for 1.19.4.

 - Update to Loom 1.1.

   - Simplifies our handling of remapped configurations a little.
   - Removes the need for a fake fabric.mod.json in the API jar.

   For reasons I don't quite understand, this required us to bump the
   Fabric API version. Otherwise interfaces are not injected.

 - Update to Rollup 3.0.

 - Do NOT update NullAway: It now correctly checks @Nullable fields in
   inherited classes. This is good, but also a pain as Minecraft is a
   little over-eager in where it puts @Nullable.
2023-03-14 18:43:42 +00:00

55 lines
1.7 KiB
JSON

{
"schemaVersion": 1,
"id": "computercraft",
"name": "CC: Tweaked",
"version": "${version}",
"description": "CC: Tweaked is a fork of ComputerCraft, adding programmable computers, turtles and more to Minecraft.",
"license": "ComputerCraft Public License (https://raw.githubusercontent.com/dan200/ComputerCraft/master/LICENSE)",
"icon": "pack.png",
"contact": {
"homepage": "https://tweaked.cc/",
"issues": "https://github.com/cc-tweaked/cc-tweaked/issues"
},
"authors": [
"Daniel Ratcliffe",
"Aaron Mills",
"SquidDev"
],
"environment": "*",
"entrypoints": {
"main": [
"dan200.computercraft.shared.ComputerCraft::init"
],
"client": [
"dan200.computercraft.client.ComputerCraftClient::init"
],
"fabric-datagen": [
"dan200.computercraft.data.FabricDataGenerators"
],
"jei_mod_plugin": [
"dan200.computercraft.shared.integration.jei.JEIComputerCraft"
],
"rei_client": [
"dan200.computercraft.client.integration.rei.REIComputerCraft"
]
},
"mixins": [
"computercraft.mixins.json",
"computercraft.fabric.mixins.json",
{
"config": "computercraft-client.mixins.json",
"environment": "client"
},
{
"config": "computercraft-client.fabric.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.14.11",
"fabric-api": ">=0.75.1",
"minecraft": ">=1.19.3 <1.20"
},
"accessWidener": "computercraft.accesswidener"
}