-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
{
"name": "com.ccccraz.psychounity",
"displayName": "PsychoUnity",
"author": { "name": "ccccraz", "url": "https://github.com/ccccraz" },
"version": "0.1.4",
"unity": "2022.3",
"description": "A Unity-based development framework for designing behavioral experiments",
"documentationUrl": "https://psychounity.org/",
"keywords": [ "neuroscience" ],
"license": "LGPL-3.0-or-later",
"dependencies": {},
"samples":[
{
"displayName": "Timer Node",
"description": "Sample of the Timer Node",
"path": "Samples~/TimerNode"
},
{
"displayName": "Timer Manager",
"description": "Sample of the Normal Timer",
"path": "Samples~/Timer"
},
{
"displayName": "Timer High Resolution Manager",
"description": "Sample of the High Resolution Timer",
"path": "Samples~/TimerHighResolution"
},
{
"displayName": "Recorder Node",
"description": "How to use Recorder Node to generate samples with standardized output",
"path": "Samples~/RecorderNode"
},
{
"displayName": "Recorder Manager",
"description": "How to use RecorderManager to generate samples with standardized output",
"path": "Samples~/Recorder"
},
{
"displayName": "Events Manager",
"description": "Sample of how to use EventManager for global message notificationr",
"path": "Samples~/Events"
},
{
"displayName": "Tcp communication",
"description": "Sample of how to use TcpComManager for communication",
"path": "Samples~/TCPCom"
}
]
}