{"id":13662259,"url":"https://github.com/jeffcampbellmakesgames/unity-package-tools","last_synced_at":"2025-10-05T13:48:25.469Z","repository":{"id":41536546,"uuid":"180105965","full_name":"jeffcampbellmakesgames/unity-package-tools","owner":"jeffcampbellmakesgames","description":"A set of developer tools to make it easier to create and distribute packages for the native Unity Package Manager.","archived":false,"fork":false,"pushed_at":"2025-01-24T17:32:53.000Z","size":612,"stargazers_count":110,"open_issues_count":1,"forks_count":21,"subscribers_count":6,"default_branch":"develop","last_synced_at":"2025-04-25T07:35:01.569Z","etag":null,"topics":["game-development","gamedev","package","package-creation","package-manager","unity"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jeffcampbellmakesgames.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"License.txt","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":{"github":"jeffcampbellmakesgames","ko_fi":"stampyturtle"}},"created_at":"2019-04-08T08:38:19.000Z","updated_at":"2025-03-18T09:44:48.000Z","dependencies_parsed_at":"2025-01-22T18:34:59.513Z","dependency_job_id":null,"html_url":"https://github.com/jeffcampbellmakesgames/unity-package-tools","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/jeffcampbellmakesgames/unity-package-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffcampbellmakesgames%2Funity-package-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffcampbellmakesgames%2Funity-package-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffcampbellmakesgames%2Funity-package-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffcampbellmakesgames%2Funity-package-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jeffcampbellmakesgames","download_url":"https://codeload.github.com/jeffcampbellmakesgames/unity-package-tools/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffcampbellmakesgames%2Funity-package-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278464285,"owners_count":25991177,"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-10-05T02:00:06.059Z","response_time":54,"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":["game-development","gamedev","package","package-creation","package-manager","unity"],"created_at":"2024-08-02T05:01:53.656Z","updated_at":"2025-10-05T13:48:25.452Z","avatar_url":"https://github.com/jeffcampbellmakesgames.png","language":"C#","funding_links":["https://github.com/sponsors/jeffcampbellmakesgames","https://ko-fi.com/stampyturtle"],"categories":["C\\#","UPM Utilities"],"sub_categories":[],"readme":"# \u003cimg src=\"./Documentation/PackageManifestConfigIcon.png\" alt=\"\" width=\"35\" height=\"35\"/\u003e JCMG Package Tools\n[![openupm](https://img.shields.io/npm/v/com.jeffcampbellmakesgames.packagetools?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.jeffcampbellmakesgames.packagetools/)\n\u003cimg alt=\"GitHub issues\" src=\"https://img.shields.io/github/issues/jeffcampbellmakesgames/unity-package-tools\"\u003e\n\u003cimg alt=\"GitHub\" src=\"https://img.shields.io/github/license/jeffcampbellmakesgames/unity-package-tools\"\u003e\n[![Twitter Follow](https://img.shields.io/badge/twitter-%40stampyturtle-blue.svg?style=flat\u0026label=Follow)](https://twitter.com/stampyturtle)\n\n## Overview\nUnity package tools is a set of Unity Editor tools that make it easier for developer to share their own tools, plugins, etc... as packages that other users can then import via the native Unity Package Manager. It does this by:\n\n* Providing one-button click functionality for copying the relevant source folders/files to a prescribed package export location.\n* Automate creating and updating the package manager Json file.\n* Generating a helper class describing versioning information about your package for inclusion with its contents.\n\n![Package Manifest Config Inspector](./Documentation/Inspector.png)\n\n## Installing JCMG Package Tools\nUsing this library in your project can be done in three ways:\n\n### Install via OpenUPM\nThe package is available on the [openupm registry](https://openupm.com/). It's recommended to install it via [openupm-cli](https://github.com/openupm/openupm-cli).\n\n```\nopenupm add com.jeffcampbellmakesgames.packagetools\n```\n\n### Install via GIT URL\nUsing the native Unity Package Manager introduced in 2017.2, you can add this library as a package by modifying your `manifest.json` file found at `/ProjectName/Packages/manifest.json` to include it as a dependency. See the example below on how to reference it.\n\n```\n{\n\t\"dependencies\": {\n\t\t...\n\t\t\"com.jeffcampbellmakesgames.packagetools\" : \"https://github.com/jeffcampbellmakesgames/unity-package-tools.git#release/stable\",\n\t\t...\n\t}\n}\n```\n\n### Install via classic `.UnityPackage`\nThe latest release can be found [here](https://github.com/jeffcampbellmakesgames/unity-package-tools/releases) as a UnityPackage file that can be downloaded and imported directly into your project's Assets folder.\n\n## Usage\nTo learn more about how to use JCMG Package Tools, see [here](./usage.md) for more information.\n\n## Contributors\nIf you are interested in contributing, found a bug, or want to request a new feature, please see [here](./contributors.md) for more information.\n\n## License\nMIT License\n\nCopyright (c) 2019 Jeff Campbell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeffcampbellmakesgames%2Funity-package-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeffcampbellmakesgames%2Funity-package-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeffcampbellmakesgames%2Funity-package-tools/lists"}