Created
March 5, 2023 13:53
-
-
Save EricBatlle/da940f475a3af8165c2caf77cd4d8309 to your computer and use it in GitHub Desktop.
Sample Unity package.json to create custom packages
This file contains 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.unity.example", | |
"version": "1.2.3", | |
"displayName": "Package Example", | |
"description": "This is an example package", | |
"unity": "2019.1", | |
"unityRelease": "0b5", | |
"dependencies": { | |
"com.unity.some-package": "1.0.0", | |
"com.unity.other-package": "2.0.0" | |
}, | |
"keywords": [ | |
"keyword1", | |
"keyword2", | |
"keyword3" | |
], | |
"author": { | |
"name": "My Company", | |
"email": "[email protected]", | |
"url": "https://www.mycompany.com" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment