fabric.mod.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "schemaVersion": 1,
  3. "id": "roughlyenoughitems",
  4. "name": "Roughly Enough Items",
  5. "description": "To allow players to view items and recipes.",
  6. "version": "${version}",
  7. "authors": [
  8. "shedaniel"
  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": "icon.png",
  17. "entrypoints": {
  18. "client": [
  19. "me.shedaniel.rei.RoughlyEnoughItemsCore",
  20. "me.shedaniel.rei.impl.ClientHelperImpl",
  21. "me.shedaniel.rei.impl.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. "me.shedaniel.rei.plugin.DefaultAutoCraftingPlugin"
  32. ],
  33. "rei_containers": [
  34. "me.shedaniel.rei.plugin.DefaultServerContainerPlugin"
  35. ]
  36. },
  37. "depends": {
  38. "fabricloader": ">=0.4.0",
  39. "cloth": "*",
  40. "cloth-config2": ">=1.1.1"
  41. },
  42. "mixins": [
  43. "mixin.roughlyenoughitems.json",
  44. "listeners.roughlyenoughitems.json"
  45. ],
  46. "custom": {
  47. "rei:translators": {
  48. "English": "shedaniel",
  49. "Japanese": ["swordglowsblue", "hinataaki"],
  50. "Simplified Chinese": ["XuyuEre", "shedaniel", "SciUniv_Moring", "Takakura-Anri"],
  51. "Traditional Chinese": ["hugoalh", "gxy17886", "shedaniel"],
  52. "French": ["Yanis48", "Koockies"],
  53. "German": ["MelanX", "guntram7"],
  54. "Estonian": ["Madis0"],
  55. "Portuguese": ["thiagokenis"],
  56. "LOLCAT": ["shedaniel", "RaxedMC"],
  57. "Upside Down English": ["shedaniel"],
  58. "Brazilian Portuguese": ["thiagokenis", "joaoh1"],
  59. "Bulgarian": ["geniiii"],
  60. "Russian": ["MrYonter", "kwmika1girl", "LimyChitou", "Great_Manalal", "s3rbug", "TheByKotik", "ebogish"]
  61. }
  62. }
  63. }