-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathfabric.mod.json
More file actions
65 lines (60 loc) · 2.1 KB
/
fabric.mod.json
File metadata and controls
65 lines (60 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"schemaVersion": 1,
"id": "sltest",
"version": "1.0",
"name": "Test Mod",
"description": "stationapi test mod",
"authors": [
"mine_diver"
],
"contact": {
"discord": "mine_diver#0618"
},
"license": "CC0-1.0",
"icon": "assets/sltest/icon.png",
"environment": "*",
"entrypoints": {
"stationapi:event_bus": [
"net.modificationstation.sltest.block.Blocks$Init",
"net.modificationstation.sltest.item.ItemListener",
"net.modificationstation.sltest.packet.MessageListenerListener",
"net.modificationstation.sltest.MainTest",
"net.modificationstation.sltest.SLTest",
"net.modificationstation.sltest.recipe.RecipeListener",
"net.modificationstation.sltest.achievement.AchievementListener",
"net.modificationstation.sltest.entity.player.PlayerHandlerListener",
"net.modificationstation.sltest.level.gen.ChunkListener",
"net.modificationstation.sltest.entity.EntityListener",
"net.modificationstation.sltest.tileentity.TileEntityListener",
"net.modificationstation.sltest.item.tool.ToolListener",
"net.modificationstation.sltest.datafixer.DataFixerListener",
"net.modificationstation.sltest.worldgen.TestWorldgenListener",
"net.modificationstation.sltest.bonemeal.BonemealListener",
"net.modificationstation.sltest.dispenser.DispenserListener",
"net.modificationstation.sltest.celestial.CelestialListener"
],
"stationapi:event_bus_client": [
"net.modificationstation.sltest.gui.GuiListener",
"net.modificationstation.sltest.option.OptionListener",
"net.modificationstation.sltest.keyboard.KeyboardListener",
"net.modificationstation.sltest.texture.TextureListener",
"net.modificationstation.sltest.render.entity.EntityRendererListener"
],
"main": [
"net.modificationstation.sltest.MainTest"
],
"preLaunch": [
"net.modificationstation.sltest.PreLaunchTest"
]
},
"mixins": [
"sltest.mixins.json"
],
"depends": {
"minecraft": "1.0.0-beta.7.3",
"stationapi": "*"
},
"custom": {
"stationapi:verify_client": true
}
}