fabric.mod.json 679 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "schemaVersion": 1,
  3. "id": "horsestatsvanilla",
  4. "version": "${version}",
  5. "name": "Horse Stats Vanilla",
  6. "description": "Shows horse stats in the horse inventory. The style is fiting the vanilla game.",
  7. "authors": [
  8. "lumpyMonkey"
  9. ],
  10. "license": "CC0-1.0",
  11. "icon": "assets/horsestatsvanilla/icon.png",
  12. "environment": "*",
  13. "entrypoints": {
  14. "main": [
  15. "net.horse.stats.vanilla.HorseStatsVanilla"
  16. ]
  17. },
  18. "mixins": [
  19. "horsestatsvanilla.mixins.json"
  20. ],
  21. "depends": {
  22. "fabricloader": ">=0.7.4",
  23. "fabric": "*",
  24. "minecraft": "1.16.x"
  25. },
  26. "suggests": {
  27. "flamingo": "*"
  28. },
  29. "custom": { "modmenu:clientsideOnly": true }
  30. }