{"id":14961037,"url":"https://github.com/3d-group/unity-package-template","last_synced_at":"2025-10-24T20:30:47.439Z","repository":{"id":40536461,"uuid":"301084295","full_name":"3d-group/unity-package-template","owner":"3d-group","description":"Template repository for creating Unity game engine packages","archived":false,"fork":false,"pushed_at":"2023-05-14T17:44:01.000Z","size":53,"stargazers_count":51,"open_issues_count":3,"forks_count":17,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-04T16:06:41.415Z","etag":null,"topics":["hacktoberfest","npm","template","unity","unity3d","upm-package"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/3d-group.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-04T09:04:25.000Z","updated_at":"2024-10-27T06:47:32.000Z","dependencies_parsed_at":"2024-08-22T15:51:52.780Z","dependency_job_id":null,"html_url":"https://github.com/3d-group/unity-package-template","commit_stats":null,"previous_names":[],"tags_count":5,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3d-group%2Funity-package-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3d-group%2Funity-package-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3d-group%2Funity-package-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3d-group%2Funity-package-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/3d-group","download_url":"https://codeload.github.com/3d-group/unity-package-template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238030288,"owners_count":19404859,"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":["hacktoberfest","npm","template","unity","unity3d","upm-package"],"created_at":"2024-09-24T13:23:41.313Z","updated_at":"2025-10-24T20:30:47.082Z","avatar_url":"https://github.com/3d-group.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![npm package](https://img.shields.io/npm/v/com.3d-group.unity-package-template)](https://www.npmjs.com/package/com.3d-group.unity-package-template)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\n# Unity package template\n\nThis is a template repository for creating new repositories for upm (Unity Package Manager) packages.\n\nGenerated repository will contain:\n- Basis for [Unity package](https://docs.unity3d.com/Manual/CustomPackages.html) (package.json, folder structure, assembly definitions etc.)\n- Basis for Runtime \u0026 Editor tests (can be run straight away after script has ran and package is in some Unity projects assets folder / marked as testable)\n- Sample/ExampleUnityProject - empty Unity project for running automated github tests via [unity-ci](https://unity-ci.com/docs)\n  - **Note:** Better way for doing this would be appreciated, there is an [issue about this in unity-test-runner](https://github.com/webbertakken/unity-test-runner/issues/71)\n- package.json to publish into npm\n- Automated github action workflows to run tests on push (further documentation can be found in templates/.github/workflows)\n- Automated github action [workflow to publish into npmjs](templates/.github/workflows/on-release.yml) on publish release\n  - **Note:** If your package contains a lot of images/data or size exceeds 10mbs it might better to just publish into upm package manager / other service that is meant for storing assets and other big data. It is a good practice to check npm registry guidelines before usage.\n- Example [package.json](templates/package.json) \n- Example [README.md](templates/README.md)\n- Example [CONTRIBUTING.md](templates/CONTRIBUTING.md), based on [Contributor Covenant](https://www.contributor-covenant.org)\n- Example [License](templates/License) (MIT)\n- Example [CODEOWNERS](templates/.github/CODEOWNERS), for further details please see [github docs on CODEOWNERS](https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/about-code-owners)\n\n**Note:** By default this repository is meant for creating open source packages. If creating closed source it might be a good idea to change license and go through generated package.json files etc.\n\n## Usage\n\n1. Create a new repository using this template\n2. Clone the new repository\n3. Run RUNME.sh (cautiously!) with bash at new repository root folder and follow instructions, if using windows [Git for Windows](https://gitforwindows.org/) provides bash and all necessary tools.\n4. Move all files (except folders .git/ .github/ and Samples/) inside any Unity Project Assets folder. This will generate .meta files that are required by Unity. \n5. Move files back to the original folder\n\n**Notes:**\n- RUNME.sh just helps replacing all tags etc. `{{REPOSITORY_NAME}}` or `{{DESCRIPTION}}` from files, if not familiar with bash scripts this step should be done manually \n- Brief introduction on how to develop your Unity package is included in CONTRIBUTING.md\n\nFor further details, please see\n - [Github docs on creating repository from template](https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template)\n - [Unity docs on creating custom packages.](https://docs.unity3d.com/Manual/CustomPackages.html)\n\nWhen your package is ready for publish, you can publish it into:\n- Open Source Unity Package Registry [openupm](https://openupm.com/)\n- [npmjs](https://docs.npmjs.com/cli/publish) package registry\n  - **Note:** If your package contains a lot of images/data or size exceeds 10mbs it might not be a good idea.\n\n## License\n\nMIT License\n\nCopyright © 2020 3D Group\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3d-group%2Funity-package-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F3d-group%2Funity-package-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3d-group%2Funity-package-template/lists"}