fabric.mod.json 825 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "schemaVersion": 1,
  3. "id": "umollu_ash",
  4. "version": "${version}",
  5. "name": "ASH - Another Simple HUD",
  6. "description": "ASH - Another Simple HUD with FPS count and coordinates.",
  7. "authors": [
  8. "umollu"
  9. ],
  10. "contact": {
  11. "homepage": "https://umollu.com/",
  12. "sources": "https://github.com/umollu/ash",
  13. "issues": "https://github.com/umollu/ash/issues"
  14. },
  15. "license": "MIT",
  16. "icon": "assets/umollu_ash/icon.png",
  17. "environment": "*",
  18. "entrypoints": {
  19. "client": [
  20. "com.umollu.ash.AshMod"
  21. ],
  22. "modmenu": [
  23. "com.umollu.ash.config.AshMenuIntegration"
  24. ],
  25. "cotton-client-commands": ["com.umollu.ash.AshCommands"]
  26. },
  27. "mixins": [
  28. "umollu_ash.mixins.json"
  29. ],
  30. "depends": {
  31. "fabricloader": ">=0.7.4",
  32. "fabric": ">=0.31.0",
  33. "minecraft": "1.16.x"
  34. }
  35. }