-
Notifications
You must be signed in to change notification settings - Fork 11
/
zazu.json
45 lines (45 loc) · 1.02 KB
/
zazu.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
{
"name": "zazu-template",
"version": "1.0.0",
"description": "Zazu Template for starting your own plugin.",
"blocks": {
"input": [
{
"id": "template",
"type": "Keyword",
"keyword": "template",
"title": "Zazu Template",
"subtitle": "Goto Zazu Template GitHub Repo",
"icon": "fa-files-o",
"connections": [
"GoHome"
]
},
{
"id": "hello",
"type": "Keyword",
"keyword": "hello",
"title": "Hello!",
"subtitle": "Please type your name!",
"icon": "fa-hand-spock-o",
"connections": ["GoHome"]
},
{
"id": "hello-name",
"type": "PrefixScript",
"prefix": "hello",
"space": true,
"args": "Required",
"script": "src/hello.js",
"connections": ["GoHome"]
}
],
"output": [
{
"id": "GoHome",
"type": "OpenInBrowser",
"url": "https://github.com/tinytacoteam/zazu-template"
}
]
}
}