fabric.mod.json 860 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "schemaVersion": 1,
  3. "id": "uglyscoreboardfix",
  4. "version": "${version}",
  5. "name": "Ugly Scoreboard Fix",
  6. "description": "Hides the ugly scoreboard scores only used for sorting the lines",
  7. "authors": [
  8. "Lortseam"
  9. ],
  10. "contact": {
  11. "email": "lortseam@gmail.com",
  12. "sources": "https://gitlab.com/Lortseam/ugly-scoreboard-fix",
  13. "issues": "https://gitlab.com/Lortseam/ugly-scoreboard-fix/-/issues"
  14. },
  15. "license": "Apache-2.0",
  16. "environment": "client",
  17. "entrypoints": {
  18. "client": [
  19. "me.lortseam.uglyscoreboardfix.UglyScoreboardFix"
  20. ],
  21. "modmenu": [
  22. "me.lortseam.uglyscoreboardfix.modmenu.ModMenuIntegration"
  23. ]
  24. },
  25. "mixins": [
  26. {
  27. "config": "uglyscoreboardfix.mixins.json",
  28. "environment": "client"
  29. }
  30. ],
  31. "depends": {
  32. "minecraft": "1.16.1",
  33. "fabricloader": ">=0.7.4"
  34. }
  35. }