{"id":30842684,"url":"https://github.com/kazzababe/ravioli-views","last_synced_at":"2025-09-06T21:02:41.632Z","repository":{"id":300952651,"uuid":"1007674155","full_name":"Kazzababe/ravioli-views","owner":"Kazzababe","description":"A modern, React-inspired GUI library for Paper/Spigot servers.","archived":false,"fork":false,"pushed_at":"2025-09-04T22:11:38.000Z","size":308,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-05T00:12:28.042Z","etag":null,"topics":["api","bukkit","chest","folia","gui","gui-api","gui-framework","inventory","inventory-gui","library","menu","minecraft","minestom","modding","papermc","spigot","spigotmc"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kazzababe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-24T11:01:42.000Z","updated_at":"2025-09-04T22:11:41.000Z","dependencies_parsed_at":"2025-08-19T18:19:48.684Z","dependency_job_id":"e83187b4-9acc-45d3-95d6-339b50a49ea8","html_url":"https://github.com/Kazzababe/ravioli-views","commit_stats":null,"previous_names":["kazzababe/ravioli-views"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kazzababe/ravioli-views","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kazzababe%2Fravioli-views","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kazzababe%2Fravioli-views/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kazzababe%2Fravioli-views/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kazzababe%2Fravioli-views/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kazzababe","download_url":"https://codeload.github.com/Kazzababe/ravioli-views/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kazzababe%2Fravioli-views/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273962583,"owners_count":25198602,"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","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["api","bukkit","chest","folia","gui","gui-api","gui-framework","inventory","inventory-gui","library","menu","minecraft","minestom","modding","papermc","spigot","spigotmc"],"created_at":"2025-09-06T21:02:40.120Z","updated_at":"2025-09-06T21:02:41.619Z","avatar_url":"https://github.com/Kazzababe.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ravioli Views  ![Maven Central](https://img.shields.io/maven-central/v/dev.mckelle/ravioli-views-core)\n\nRavioli Views is a small framework for building inventory‑based UIs in Paper/Spigot plugins.\nIt exposes a React‑like component model, a diff engine, and lifecycle hooks so you can describe an interface as simple\nJava objects instead of slot‑by‑slot code.\n\nFor detailed guides, tutorials, and API references, please see the [**wiki\n**](https://github.com/Kazzababe/ravioli-views/wiki).\n\n---\n\n## 📚 Modules\n\n| Module    | Coordinates                       | What it contains                                                               |\n|-----------|-----------------------------------|--------------------------------------------------------------------------------|\n| **API**   | `dev.mckelle:ravioli-views-api`   | Public interfaces, annotations, and functional types. Stable across versions.  |\n| **Core**  | `dev.mckelle:ravioli-views-core`  | Diff engine, hooks, state management, and shared utilities.                    |\n| **Paper** | `dev.mckelle:ravioli-views-paper` | Paper‑specific event listeners and helpers that wire the Core into the server. |\n\n*(All modules are available on Maven Central—badge above always shows the latest released version.)*\n\n---\n\n## 📦 Installation\n\n### Gradle • Kotlin DSL\n\n```kotlin\nrepositories {\n    mavenCentral()\n}\n\n// Only the platform specific dependency is required\ndependencies {\n    implementation(\"dev.mckelle:ravioli-views-paper:1.1.5\")\n}\n```\n\n### Gradle • Groovy DSL\n\n```groovy\nrepositories {\n    mavenCentral()\n}\n\n// Only the platform specific dependency is required\ndependencies {\n    implementation 'dev.mckelle:ravioli-views-paper:1.1.5'\n}\n```\n\n### Maven\n\n```xml\n\u003c!-- Only the platform specific dependency is required --\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003edev.mckelle\u003c/groupId\u003e\n    \u003cartifactId\u003eravioli-views-paper\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.5\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n\u003e **Tip** The version in the snippets should match the number in the badge above.\n\n---\n\n## 🛠️ Example usage\n\nSee the **example** modules within each platform module.\n\n- **Paper** - [`Example Module`](./paper/example)\n\n---\n\n## 📄 License\n\nRavioli Views is released under the MIT License — see [LICENSE](https://opensource.org/license/mit) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkazzababe%2Fravioli-views","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkazzababe%2Fravioli-views","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkazzababe%2Fravioli-views/lists"}