Compatibility
Minecraft: Java Edition
1.21–1.21.1
Platforms
Supported environments
Client-side
Server-side
Client and server
Creators
Details
Licensed LGPL-3.0-only
Published last week
Bento Config
Bento Config is an annotation-driven configuration system built using Bento GUI. It aims to be simple yet powerful, with no magic pre-processors or arbitrary limitations.
Features:
- Automatic Mod Menu registration
- Translation key-driven descriptions and comments
- Automatically sources images from the assets folder
- Annotation-driven constraints
- JSON5 config file format
- Supports many types out of the box
Bento Config is documented in-code with JavaDocs and on my wiki.

public class MyConfig extends BentoConfig<MyConfig> {
public boolean spawn_creepers = true;
@Regex("[a-z]{1,10}")
public String creeper_name = "creeper";
@Header("spawn_settings")
@Range(min = 1, max = 10)
public int spawn_amount = 3;
@Percentage
public float spawn_chance = 0.5f;
@Header("loot_settings")
public Item creeper_loot = Items.GUNPOWDER;
}
public class MyModInitializer implements ModInitializer {
...
public static final MyConfig CONFIG = new MyConfig.register("my_mod_id");
...
}


