Skip to content

Instantly share code, notes, and snippets.

@EricBatlle
Created March 5, 2023 13:53
Show Gist options
  • Save EricBatlle/da940f475a3af8165c2caf77cd4d8309 to your computer and use it in GitHub Desktop.
Save EricBatlle/da940f475a3af8165c2caf77cd4d8309 to your computer and use it in GitHub Desktop.
Sample Unity package.json to create custom packages
{
"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": "hello@example.com",
"url": "https://www.mycompany.com"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment