Last active
November 18, 2024 02:44
-
-
Save SiarheiPilat/f9c450431dafb8b89ea9d73e0b709c69 to your computer and use it in GitHub Desktop.
unity package manifest example
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