-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 965 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 965 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
28
29
30
31
32
{
"displayName": "[Package Name]",
"author": "Quin Henshaw",
"version": "1.0.0",
"name": "com.qhenshaw.[packagename]",
"documentationUrl": "https://github.com/qhenshaw/[repourl]",
"changelogUrl": "https://github.com/qhenshaw/[repourl]/blob/main/CHANGELOG.md",
"licensesUrl": "https://github.com/qhenshaw/[repourl]/blob/main/LICENSE.md",
"description": "[Description here]",
"unity": "2020.1",
"dependencies": {
"com.unity.2d.sprite": "1.0.0",
"com.unity.ugui": "1.0.0"
},
"samples": [
{
"displayName": "[Sample 1 display name]",
"description": "[Sample 1 description]",
"path": "Samples~/[Sample1Location]"
},
{
"displayName": "[Sample 2 display name]",
"description": "[Sample 2 description]",
"path": "Samples~/[Sample2Location]"
},
{
"displayName": "[Sample 3 display name]",
"description": "[Sample 3 description]",
"path": "Samples~/[Sample3Location]"
}
]
}