Last active
March 24, 2022 22:28
-
-
Save quynhftw/ecae7cd1e29757d3d1c3d7586f7fd6b5 to your computer and use it in GitHub Desktop.
Unity package.json Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "com.[company-name].[package-name]", | |
| "version": "1.2.3", | |
| "displayName": "Package Example", | |
| "description": "This is an example package", | |
| "unity": "2019.1", | |
| "unityRelease": "0b5", | |
| "documentationUrl": "https://example.com/", | |
| "changelogUrl": "https://example.com/changelog.html", | |
| "licensesUrl": "https://example.com/licensing.html", | |
| "dependencies": { | |
| "com.[company-name].some-package": "1.0.0", | |
| "com.[company-name].other-package": "2.0.0" | |
| }, | |
| "keywords": [ | |
| "keyword1", | |
| "keyword2", | |
| "keyword3" | |
| ], | |
| "author": { | |
| "name": "Unity", | |
| "email": "[email protected]", | |
| "url": "https://www.unity3d.com" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment