This repository hosts the projects.json file that powers the Minecraft Legacy website. The site reads this JSON directly from GitHub to display the community project list.
projects.json ← The single source of truth for all listed projects
{
"repos": [
{
"name": "owner / ProjectName",
"url": "https://github.com/owner/ProjectName",
"priority": 1
}
]
}| Field | Type | Description |
|---|---|---|
name |
string |
Display name shown on the site (usually owner / repo) |
url |
string |
Full URL to the project (GitHub, Archive.org, etc.) |
priority |
number |
Sort order - lower number = higher on the list. 1 is top priority |
- Fork this repo.
- Edit
projects.json- add your project entry to thereposarray. - Pick a
prioritynumber. Use the next available number unless the maintainers say otherwise. - Commit with a clear message like
Add MyProject to project list. - Open a Pull Request using the provided template.
If you don't want to edit JSON yourself, just open an Issue using the "Project Request" template and fill in the details. A maintainer will add it for you.
- Valid JSON only - run your edit through a JSON validator before submitting.
- No duplicate URLs - check that your project isn't already listed.
- Relevant projects only - must be related to Minecraft Legacy / Console Edition.
- One project per PR - keeps reviews simple.
The Minecraft Legacy website fetches this file directly from:
https://raw.githubusercontent.com/MinecraftConsole/json/refs/heads/main/projects.json
Changes merged to main go live on the site immediately - no deploy needed.
This project list is maintained by the Minecraft Legacy community. See LICENSE for details.