Add more metadata to the modules (#353)
* Add fabric-api-base as a dep to fabric-networking-v0
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,9 +1,22 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-api-base",
|
||||
"name": "Fabric API Base",
|
||||
"version": "${version}",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-api-base/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0"
|
||||
}
|
||||
},
|
||||
"description": "Contains the essentials for Fabric API modules."
|
||||
}
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,18 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-biomes-v1",
|
||||
"name": "Fabric Biomes (v1)",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "fabric-biomes-v1",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
"environment": "*",
|
||||
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-biomes-v1/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0"
|
||||
},
|
||||
|
||||
"description": "Hooks for adding biomes to the default world generator.",
|
||||
"mixins": [
|
||||
"fabric-biomes-v1.mixins.json"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-commands-v0",
|
||||
"name": "Fabric Commands (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-commands-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Adds command-related hooks.",
|
||||
"mixins": [
|
||||
"fabric-commands-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,26 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-containers-v0",
|
||||
"name": "Fabric Containers (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-containers-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-networking-v0": "*"
|
||||
},
|
||||
"description": "Adds hooks for containers.",
|
||||
"mixins": [
|
||||
"fabric-containers-v0.mixins.json",
|
||||
"fabric-containers-v0.accurate.mixins.json"
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,26 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-content-registries-v0",
|
||||
"name": "Fabric Content Registries (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-content-registries-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-resource-loader-v0": "*"
|
||||
},
|
||||
"description": "Adds registries for vanilla mechanics that are missing them.",
|
||||
"mixins": [
|
||||
"fabric-content-registries-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,11 +1,24 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-crash-report-info-v1",
|
||||
"name": "Fabric Crash Report Info (v1)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-crash-report-info-v1/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0"
|
||||
},
|
||||
"description": "Adds Fabric-related debug info to crash reports.",
|
||||
"mixins": [
|
||||
"fabric-crash-report-info-v1.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,8 +1,20 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-events-interaction-v0",
|
||||
"name": "Fabric Events Interaction (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-events-interaction-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
|
@ -15,6 +27,7 @@
|
|||
"net.fabricmc.fabric.impl.event.InteractionEventsRouterClient"
|
||||
]
|
||||
},
|
||||
"description": "Events for player interaction with blocks and entities.",
|
||||
"mixins": [
|
||||
"fabric-events-interaction-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-events-lifecycle-v0",
|
||||
"name": "Fabric Events Lifecycle (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-events-lifecycle-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Events for the game's lifecycle.",
|
||||
"mixins": [
|
||||
"fabric-events-lifecycle-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,14 +1,27 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-item-groups-v0",
|
||||
"name": "Fabric Item Groups (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-item-groups-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.6.0",
|
||||
"minecraft": ">=1.15-",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-resource-loader-v0": "*"
|
||||
},
|
||||
"description": "An API for adding custom item groups.",
|
||||
"mixins": [
|
||||
"fabric-item-groups-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-keybindings-v0",
|
||||
"name": "Fabric Key Bindings (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-keybindings-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Keybinding registry API.",
|
||||
"mixins": [
|
||||
"fabric-keybindings-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-loot-tables-v1",
|
||||
"name": "Fabric Loot Tables (v1)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-loot-tables-v1/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Hooks for manipulating loot tables.",
|
||||
"mixins": [
|
||||
"fabric-loot-tables-v1.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,26 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-mining-levels-v0",
|
||||
"name": "Fabric Mining Levels (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-mining-levels-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-tag-extensions-v0": "*"
|
||||
},
|
||||
"description": "Block mining level tags for tools.",
|
||||
"mixins": [
|
||||
"fabric-mining-levels-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-models-v0",
|
||||
"name": "Fabric Models (v0)",
|
||||
"version": "${version}",
|
||||
"license": "Apache-2.0",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-models-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Hooks for models and model loading.",
|
||||
"mixins": [
|
||||
"fabric-models-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-networking-blockentity-v0",
|
||||
"name": "Fabric Networking Block Entity (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-networking-blockentity-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Networking hooks for block entities.",
|
||||
"mixins": [
|
||||
"fabric-networking-blockentity-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,8 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-networking-v0",
|
||||
"name": "Fabric Networking (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-networking-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Networking packet hooks and registries.",
|
||||
"mixins": [
|
||||
"fabric-networking-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,26 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-object-builders-v0",
|
||||
"name": "Fabric Object Builders (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-object-builders-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-mining-levels-v0": "*"
|
||||
},
|
||||
"description": "Builders for objects vanilla has locked down.",
|
||||
"mixins": [
|
||||
"fabric-object-builders-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,26 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-registry-sync-v0",
|
||||
"name": "Fabric Registry Sync (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-registry-sync-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-networking-v0": "*"
|
||||
},
|
||||
"description": "Syncs registry mappings.",
|
||||
"mixins": [
|
||||
"fabric-registry-sync-v0.mixins.json"
|
||||
],
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-renderer-api-v1",
|
||||
"name": "Fabric Renderer API (v1)",
|
||||
"version": "${version}",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-renderer-api-v1/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Defines rendering extensions for dynamic/fancy block and item models.",
|
||||
"mixins": [
|
||||
"fabric-renderer-api-v1.mixins.json",
|
||||
"fabric-renderer-api-v1.debughud.mixins.json"
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,14 +1,27 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-renderer-indigo",
|
||||
"name": "Fabric Renderer - Indigo",
|
||||
"version": "${version}",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-renderer-indigo/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.6.1",
|
||||
"minecraft": ">=1.15-",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-renderer-api-v1": "*"
|
||||
},
|
||||
"description": "Default implementation of the Fabric Renderer API.",
|
||||
"mixins": [
|
||||
"fabric-renderer-indigo.mixins.json"
|
||||
],
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-rendering-data-attachment-v1",
|
||||
"name": "Fabric Rendering Data Attachment (v1)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-rendering-data-attachment-v1/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Thread-safe hooks for block entity data use during terrain rendering.",
|
||||
"mixins": [
|
||||
"fabric-rendering-data-attachment-v1.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,8 +1,20 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-rendering-fluids-v1",
|
||||
"name": "Fabric Rendering Fluids (v1)",
|
||||
"version": "${version}",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-rendering-fluids-v1/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
|
@ -10,6 +22,7 @@
|
|||
"recommends": {
|
||||
"fabric-textures-v0": "*"
|
||||
},
|
||||
"description": "Hooks for registering fluid renders.",
|
||||
"mixins": [
|
||||
"fabric-rendering-fluids-v1.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,12 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-rendering-v0",
|
||||
"name": "Fabric Rendering (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-rendering-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Hooks and registries for rendering-related things.",
|
||||
"mixins": [
|
||||
"fabric-rendering-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,11 +1,24 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-resource-loader-v0",
|
||||
"name": "Fabric Resource Loader (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-resource-loader-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0"
|
||||
},
|
||||
"description": "Asset and data resource loading.",
|
||||
"mixins": [
|
||||
"fabric-resource-loader-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,26 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-tag-extensions-v0",
|
||||
"name": "Fabric Tag Extensions (v0)",
|
||||
"version": "${version}",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-tag-extensions-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*",
|
||||
"fabric-resource-loader-v0": "*"
|
||||
},
|
||||
"description": "Hooks for tags.",
|
||||
"mixins": [
|
||||
"fabric-tag-extensions-v0.mixins.json"
|
||||
]
|
||||
|
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -1,13 +1,25 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fabric-textures-v0",
|
||||
"name": "Fabric Textures (v0)",
|
||||
"version": "${version}",
|
||||
"license": "Apache-2.0",
|
||||
"environment": "client",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric-textures-v0/icon.png",
|
||||
"contact": {
|
||||
"homepage": "https://fabricmc.net",
|
||||
"irc": "irc://irc.esper.net:6667/fabric",
|
||||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0",
|
||||
"fabric-api-base": "*"
|
||||
},
|
||||
"description": "Hooks for texture loading and registration.",
|
||||
"mixins": [
|
||||
"fabric-textures-v0.mixins.json"
|
||||
]
|
||||
|
|
Before Width: | Height: | Size: 229 B After Width: | Height: | Size: 1.5 KiB |
|
@ -3,7 +3,7 @@
|
|||
"id": "fabric",
|
||||
"name": "Fabric API",
|
||||
"version": "${version}",
|
||||
"description": "Core API module providing key hooks and intercompatibility features.",
|
||||
"environment": "*",
|
||||
"license": "Apache-2.0",
|
||||
"icon": "assets/fabric/icon.png",
|
||||
"contact": {
|
||||
|
@ -12,8 +12,12 @@
|
|||
"issues": "https://github.com/FabricMC/fabric/issues",
|
||||
"sources": "https://github.com/FabricMC/fabric"
|
||||
},
|
||||
"authors": [
|
||||
"FabricMC"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.6.1",
|
||||
"minecraft": "1.15.x"
|
||||
}
|
||||
},
|
||||
"description": "Core API module providing key hooks and intercompatibility features."
|
||||
}
|
||||
|
|