-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
52 lines (52 loc) · 1.13 KB
/
library.json
File metadata and controls
52 lines (52 loc) · 1.13 KB
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
50
51
52
{
"name": "actor-RoboRuckusBot",
"version": "1.0.0",
"description": "Controls a RoboRuckus robot",
"keywords": "Fabrica-IO, actor, roboruckus",
"repository":
{
"type": "git",
"url": "https://github.com/RoboRuckus/actor-RoboRuckusBot.git"
},
"authors":
[
{
"name": "Sam Groveman",
"email": "SamGroveman@outlook.com",
"url": "https://RoboRuckus.com"
}
],
"dependencies": {
"Webhook": "https://github.com/FabricaIO/util-Webhook",
"RoboRuckusDevice": "https://github.com/RoboRuckus/util-RoboRuckusDevice"
},
"license": "GPLv3",
"homepage": "https://RoboRuckus.com",
"frameworks": "arduino",
"platforms": "*",
"fabricaio" : {
"name": "RuckusBot",
"type": 1,
"category": "robot",
"libname": "RoboRuckusBot",
"includes": ["RoboRuckusBot"],
"description": "Controls a RoboRuckus robot",
"constructor":
[
[
{
"name": "server_url",
"type": "String",
"description": "Full URL of the game server",
"default": ""
},
{
"name": "configFile",
"type": "String",
"description": "The name of the config file",
"default": "RuckusBot.json"
}
]
]
}
}