{"id":15014812,"url":"https://github.com/shedaniel/roughlyenoughitems","last_synced_at":"2025-05-15T20:04:56.707Z","repository":{"id":38150926,"uuid":"162705739","full_name":"shedaniel/RoughlyEnoughItems","owner":"shedaniel","description":"Clean and Configurable. Your recipe viewer mod for 1.13+.","archived":false,"fork":false,"pushed_at":"2025-04-12T08:44:28.000Z","size":14982,"stargazers_count":374,"open_issues_count":430,"forks_count":86,"subscribers_count":10,"default_branch":"19.x-1.21.5","last_synced_at":"2025-05-15T20:04:44.597Z","etag":null,"topics":["architectury","architectury-mod","fabric","fabricmc","fabricmc-mod","forge","forge-mod","java","minecraft","minecraft-mod"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shedaniel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"patreon":"shedaniel"}},"created_at":"2018-12-21T11:21:36.000Z","updated_at":"2025-05-15T11:05:34.000Z","dependencies_parsed_at":"2025-03-18T23:03:06.775Z","dependency_job_id":"0b6d98e3-bb5e-4261-853b-f0547915f221","html_url":"https://github.com/shedaniel/RoughlyEnoughItems","commit_stats":{"total_commits":2018,"total_committers":26,"mean_commits":77.61538461538461,"dds":"0.17542120911793857","last_synced_commit":"eaf9236e3da2adafcea204778ecc0072e70d0aa5"},"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shedaniel%2FRoughlyEnoughItems","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shedaniel%2FRoughlyEnoughItems/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shedaniel%2FRoughlyEnoughItems/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shedaniel%2FRoughlyEnoughItems/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shedaniel","download_url":"https://codeload.github.com/shedaniel/RoughlyEnoughItems/tar.gz/refs/heads/19.x-1.21.5","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254414499,"owners_count":22067272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["architectury","architectury-mod","fabric","fabricmc","fabricmc-mod","forge","forge-mod","java","minecraft","minecraft-mod"],"created_at":"2024-09-24T19:46:07.635Z","updated_at":"2025-05-15T20:04:47.550Z","avatar_url":"https://github.com/shedaniel.png","language":"Java","readme":"# Roughly Enough Items\nhttps://minecraft.curseforge.com/projects/roughly-enough-items \u003cbr\u003e\nRoughly Enough Items is a mod to view Items and Recipes for Minecraft 1.13 - 1.18, supporting mod loaders from Forge, Rift to Fabric.\n-----\n\n[Help translate REI on Crowdin!](https://crowdin.com/project/roughly-enough-items)\n\n![](https://i.imgur.com/eQsWDrM.png)\n\n![](https://i.imgur.com/OcOQLip.png)\n\nThis mod is both client sided and server sided.\n\n# Maven\nFirstly, add my Maven repository (If you already have the architectury maven, you don't need to do this, they are the same repo)\n```gradle\nrepositories {\n    maven { url \"https://maven.shedaniel.me\" }\n}\n```\n\n## Choosing the correct artifact to depend on\n### Fabric\nREI recommends you to declare a compile dependency on REI's API, and a runtime dependency on REI's full package.\n```gradle\ndependencies {\n    modCompileOnly \"me.shedaniel:RoughlyEnoughItems-api-fabric:VERSION\"\n    modRuntimeOnly \"me.shedaniel:RoughlyEnoughItems-fabric:VERSION\"\n}\n```\n\nAdditionally, if you want to interact with the builtin plugins, you may declare a compile dependency on it as well.\n```gradle\ndependencies {\n    modCompileOnly \"me.shedaniel:RoughlyEnoughItems-default-plugin-fabric:VERSION\"\n}\n```\n\n### Forge (ForgeGradle)\nREI recommends you to just depend on REI's full package.\n```gradle\ndependencies {\n    implementation fg.deobf(\"me.shedaniel:RoughlyEnoughItems-forge:VERSION\")\n}\n```\n\n### Forge (Architectury Loom)\nREI recommends you to declare a compile dependency on REI's API, and a runtime dependency on REI's full package.\n```gradle\ndependencies {\n    modCompileOnly \"me.shedaniel:RoughlyEnoughItems-api-forge:VERSION\"\n    modRuntimeOnly \"me.shedaniel:RoughlyEnoughItems-forge:VERSION\"\n}\n```\n\nAdditionally, if you want to interact with the builtin plugins, you may declare a compile dependency on it as well.\n```gradle\ndependencies {\n    modCompileOnly \"me.shedaniel:RoughlyEnoughItems-default-plugin-forge:VERSION\"\n}\n```\n\n### Architectury\nREI recommends you to declare a compile dependency on REI's common API, and declare the full package on the individual platform's subprojects.\n```gradle\n// Common\ndependencies {\n    modCompileOnly \"me.shedaniel:RoughlyEnoughItems-api:VERSION\"\n}\n\n// Fabric\ndependencies {\n    modRuntimeOnly \"me.shedaniel:RoughlyEnoughItems-fabric:VERSION\"\n}\n\n// Forge\ndependencies {\n    modRuntimeOnly \"me.shedaniel:RoughlyEnoughItems-forge:VERSION\"\n}\n```\n\nAdditionally, if you want to interact with the builtin plugins, you may declare a compile dependency on it as well.\n```gradle\n// Common\ndependencies {\n    modCompileOnly \"me.shedaniel:RoughlyEnoughItems-default-plugin:VERSION\"\n}\n```\n\n### List of artifacts\n- **me.shedaniel:RoughlyEnoughItems-api**: REI API for Architectury Common\n- **me.shedaniel:RoughlyEnoughItems-default-plugin**: REI Default Plugin for Architectury Common\n- **me.shedaniel:RoughlyEnoughItems-runtime**: REI Runtime for Architectury Common\n- **me.shedaniel:RoughlyEnoughItems-api-fabric**: REI API for Fabric\n- **me.shedaniel:RoughlyEnoughItems-default-plugin-fabric**: REI Default Plugin for Fabric\n- **me.shedaniel:RoughlyEnoughItems-runtime-fabric**: REI Runtime for Fabric\n- **me.shedaniel:RoughlyEnoughItems-api-forge**: REI API for Forge\n- **me.shedaniel:RoughlyEnoughItems-default-plugin-forge**: REI Default Plugin for Forge\n- **me.shedaniel:RoughlyEnoughItems-runtime-forge**: REI Runtime for Forge\n- **me.shedaniel:RoughlyEnoughItems-fabric**: Full REI for Fabric\n- **me.shedaniel:RoughlyEnoughItems-forge**: Full REI for Forge\n","funding_links":["https://patreon.com/shedaniel"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshedaniel%2Froughlyenoughitems","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshedaniel%2Froughlyenoughitems","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshedaniel%2Froughlyenoughitems/lists"}