The Workshop is a free, open-source alternative to the Minecraft Marketplace for LCE. It allows the community to share:
- Skins Packs
- Texture Packs
- DLCs: Expansion packs, maps, etc.
- Mods: Using mod loaders, of course.
- Worlds
We welcome contributors! To add your content to the workshop:
- Fork this repository.
- Upload your content: Create a subfolder with your mod ID and place your assets (zips, thumbnails).
- Update
meta.jsonin your subfolder: Add your item to the list following the schema below. - Submit a Pull Request: Our team will review your submission for quality and safety.
Your meta.json must follow this structure:
| Field | Type | Description |
|---|---|---|
id |
String | A unique identifier (kebab-case). |
name |
String | Display name of the item. |
author |
String | Your Github username. |
description |
String | A short summary of what the item does. |
category |
String or String[] | Must be Skin, Texture, World, Mod, DLC, or multiple ones in a list. |
thumbnail |
String | File name for your 1:1 image (PNG/JPG/SVG/GIF) for the preview. |
zips |
Object | Names of your .zip files to extract. |
version |
String | Semantic versioning (e.g. 1.0.0). |
{MediaDir}: Path to the Windows64Media, or Common/Media for 4JCraft{GameHDD}: Saves directory{DLCDir}: Path to{MediaDir}/DLC{MobDir}: Path to Common/res/mob (contains default skins)
By contributing to this repository, you agree to license your manifest entries under the MIT License. The content itself (skins/packs) must be compatible with FOSS distribution.

{ "id": "my-amazing-mod", // ID "name": "My Awesome Mod", // Name "author": "neoapps-dev", // Github username "description": "Adds back Ruby items", // Description "category": ["Mod", "DLC"], // Category "thumbnail": "thumbnail.png", // Thumbnail filename "zips": { // Object ("file-name.zip": "path/in/the/game/directory/to/extract/it/in) "ruby.zip": "", // empty means the root of the game directory "texture.zip": "{MediaDir}/DLC" // placeholders are handled by Emerald }, "version": "1.0.0" }