-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "com.github.teodorvecerdi.dialoguegraph",
"version": "2.0.0",
"displayName": "Dialogue Graph",
"description": "Interactive node-based tool similar to Shader Graph for developing branching conversation trees.\nExample uses could be conversations with NPCs, but because this tool is mostly general purpose you can use it for any scenario that requires branching logic.",
"unity": "2020.3",
"keywords": [
"node-based",
"editor-tool",
"dialogue",
"visual-scripting",
"conversation"
],
"author": {
"name": "Teodor Vecerdi",
"email": "[email protected]",
"url": "https://github.com/TeodorVecerdi"
},
"dependencies": {
"com.unity.textmeshpro": "3.0.1",
"com.unity.shadergraph": "10.5.1",
"com.unity.nuget.newtonsoft-json": "2.0.0"
},
"samples": [
{
"displayName": "Demo Project",
"description": "Small project showcasing the base usage of Dialogue Graph, including the Runtime API",
"path": "Samples~/DemoProject"
}
],
"repository": {
"url": "https://github.com/TeodorVecerdi/DialogueGraph.git",
"type": "git"
}
}