fabric.mod.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "schemaVersion": 1,
  3. "id": "advancementinfo",
  4. "version": "${version}",
  5. "environment": "client",
  6. "entrypoints": {
  7. "client": [ "de.guntram.mcmod.advancementinfo.AdvancementInfo" ]
  8. },
  9. "custom": {
  10. "modupdater": {
  11. "strategy": "json",
  12. "url": "https://raw.githubusercontent.com/gbl/ModVersionInfo/master/AdvancementInfo.json"
  13. }
  14. },
  15. "mixins": [
  16. "mixins.advancementtabtype.json",
  17. "mixins.advancementinfo.json"
  18. ],
  19. "depends": {
  20. "fabric": "*"
  21. },
  22. "recommends": {
  23. "modmenu" : "*",
  24. "modupdater": ">=1.1.7"
  25. },
  26. "name": "AdvancementInfo",
  27. "description": "Make it easier to see which advancements you have and what's missing.",
  28. "icon": "icon.png",
  29. "authors": [ "Giselbaer" ],
  30. "contact": {
  31. "homepage": "https://www.curseforge.com/minecraft/mc-mods/advancementinfo",
  32. "sources": "https://github.com/gbl/AdvancementInfo",
  33. "issues": "https://github.com/gbl/AdvancementInfo/issues"
  34. }
  35. }