-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "example.package",
"unity": "2018.3",
"version": "0.0.1-preview",
"displayName": "Example Package",
"author": "Isaiah Kelly",
"description": "This is a simple example to show you how to create custom packages that can be installed through the Unity Package Manager introduced in 2018.1.",
"keywords": ["example", "test", "demo"],
"category": "examples",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/IsaiahKelly/UnityPackageExample.git"
},
"Samples": [
{
"displayName": "Sample Name 1",
"description": "Description for sample 1",
"path": "Samples~/Sample Folder 1"
},
{
"displayName": "Sample Name 2",
"description": "Description for sample 2",
"path": "Samples~/Sample Folder 2"
}
]
}