-
Notifications
You must be signed in to change notification settings - Fork 1
/
meta.json
41 lines (41 loc) · 1.27 KB
/
meta.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
{
"prompts": {
"name": {
"type": "string",
"required": "true",
"label": "WiWi name in kebab-case format",
"default": "wiwi-project"
},
"description": {
"type": "string",
"required": "true",
"label": "Project description",
"default": "A WiWi project"
},
"author": {
"type": "string",
"label": "Author"
},
"WiWiType": {
"type": "list",
"message": "Pic an WiWi type",
"choices": [{
"name": "Wizard",
"value": "wizard",
"short": "Wizard"
},
{
"name": "Widget",
"value": "widget",
"short": "Widget"
},
{
"name": "none (configure it yourself)",
"value": "none",
"short": "none"
}
]
}
},
"completeMessage": "To get started:\n\n{{^inPlace}}cd {{destDirName}}\nyarn install\n\n{{/inPlace}}1. Write your wiwi in src/components/wiwi.vue\n2. Write a demo in src/App.vue\n3. yarn run build\n4. yarn run dev"
}