Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 months 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: 2024-06-30T16:19:26.000Z (6 months ago)
- Last Synced: 2024-08-02T11:18:44.624Z (5 months ago)
- Language: Scala
- Homepage:
- Size: 211 KB
- Stars: 3
- 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![](https://user-images.githubusercontent.com/63002502/181509686-7532fe4f-81c4-4beb-8e1f-20206bf7b646.png)
### 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.