A CLI tool to create and manage Minecraft modpacks, with Kotlin scripting support.
Define your modpack in pack.shulker.kts:
name = "My Pack"
packVersion = "1.0.0"
minecraftVersion = "1.21.4"
platform = Platform.FABRIC
mods {
modrinth("sodium")
modrinth("lithium")
}Then run:
shulker build./gradlew build # regular build
./gradlew shadowJar # fat JAR
./gradlew nativeCompile # native binary (dev)