-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 KB
/
package.json
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
33
34
35
36
37
38
39
{
"name": "com.careboo.serially",
"displayName": "Serially",
"version": "2.2.8",
"unity": "2019.4",
"keywords": [
"serialization",
"inspector",
"serialize",
"serializable",
"type",
"reference",
"SerializeReference",
"SerializableType"
],
"license": "MIT",
"description": "Provides extension classes to extend Unity's serialization capabilities.\n\n- Serialize Type references\n- Inject instances into [SerializeReference] fields",
"repository": "github:CareBoo/Serially",
"publishConfig": {
"access": "public"
},
"changelogUrl": "https://careboo.github.io/Serially/2.2/changelog",
"documentationUrl": "https://careboo.github.io/Serially/2.2",
"licensesUrl": "https://careboo.github.io/Serially/2.2/license",
"author": {
"name": "CareBoo",
"url": "https://github.com/CareBoo"
},
"samples": [
{
"displayName": "Polymorphic Inspector",
"description": "Contains a scene and sample inspector showing off serializing polymorphic types.",
"path": "Samples~/PolymorphicInspector"
}
],
"scripts": {
"version": "./scripts/updateVersionUrl.sh && git add package.json .docfx/docfx.json README.md"
}
}