https://github.com/ModdingX/Moonstone
IntelliJ plugin and standalone tool to manage CurseForge or Modrinth modpack modlists from within the IDE
https://github.com/ModdingX/Moonstone
Last synced: 16 days ago
JSON representation
IntelliJ plugin and standalone tool to manage CurseForge or Modrinth modpack modlists from within the IDE
- Host: GitHub
- URL: https://github.com/ModdingX/Moonstone
- Owner: ModdingX
- License: apache-2.0
- Created: 2021-08-19T20:52:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-14T21:23:59.000Z (2 months ago)
- Last Synced: 2025-02-14T22:26:59.327Z (2 months ago)
- Language: Scala
- Homepage:
- Size: 211 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - ModdingX/Moonstone - An IntelliJ plugin for managing mod lists and installing mods directly from Modrinth or CurseForge (Mod managers/updaters / GUI)
README
# Moonstone
Moonstone is a tool to manage CurseForge or Modrinth modlists in IntelliJ.
Files named `modlist.json` will be opened with Moonstone. These contain the modlist in json data but provide a nice GUI to manage the modlist.
It is intended to be used alongside [PackDev](https://github.com/ModdingX/PackDev) to develop modpacks.Moonstone can run as a standalone program or as an IntelliJ plugin.
Instructions on how to install the IntelliJ plugin can be found at https://moddingx.org/jetbrains
### modlist.json format
The contents of the `modlist.json` file should be a json object with the following format:
* `platform`: A string that indicates the modding platform. Currently, supported values are `curseforge` and `modrinth`.
* `loader`: A string describing the mod loader for the modpack.
* `minecraft`: The minecraft version that the modpack uses.
* `installed`: A list of *mod files* that are explicitly installed.
* `dependencies`: A list of *mod files* that are installed only as dependencies for other files.A *mod file* describes a json object with the following format:
* `project`: The project id
* `file`: The file id
* `side`: Where that mod is required. Either `common`, `client` or `server`
* `locked`: Whether this dependency is locked, so it can't be updated.