fabric.mod.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "schemaVersion": 1,
  3. "id": "roughlyenoughitems",
  4. "name": "Roughly Enough Items",
  5. "description": "To allow players to view items and recipes. Version: ${version}",
  6. "version": "${version}",
  7. "authors": [
  8. "Danielshe"
  9. ],
  10. "contact": {
  11. "homepage": "https://minecraft.curseforge.com/projects/roughly-enough-items",
  12. "sources": "https://github.com/shedaniel/RoughlyEnoughItems",
  13. "issues": "https://github.com/shedaniel/RoughlyEnoughItems/issues"
  14. },
  15. "license": "MIT",
  16. "icon": "pack.png",
  17. "entrypoints": {
  18. "client": [
  19. "me.shedaniel.rei.RoughlyEnoughItemsCore",
  20. "me.shedaniel.rei.client.ClientHelperImpl",
  21. "me.shedaniel.rei.client.ScreenHelper"
  22. ],
  23. "main": [
  24. "me.shedaniel.rei.RoughlyEnoughItemsNetwork"
  25. ],
  26. "modmenu": [
  27. "me.shedaniel.rei.REIModMenuEntryPoint"
  28. ],
  29. "rei_plugins": [
  30. "me.shedaniel.rei.plugin.DefaultPlugin"
  31. ]
  32. },
  33. "requires": {
  34. "fabricloader": ">=0.4.0",
  35. "cloth": "*"
  36. },
  37. "recommends": {
  38. "cloth-config": ">=0.1.0"
  39. },
  40. "mixins": [
  41. "roughlyenoughitems.mixins.json"
  42. ],
  43. "custom": {
  44. "modmenu:clientsideOnly": true
  45. }
  46. }