-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.json
42 lines (42 loc) · 893 Bytes
/
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
42
{
"prompts": {
"name": {
"type": "string",
"required": true,
"label": "Project name"
},
"description": {
"type": "string",
"required": true,
"label": "Project description",
"default": "A Vue.js project"
},
"author": {
"type": "string",
"label": "Author"
},
"license": {
"type": "string",
"label": "License",
"default": "MIT"
},
"static": {
"type": "confirm",
"message": "Need static site generator?",
"default": true
},
"useCustomRoot": {
"type": "confirm",
"message": "Use a custom root directory?",
"default": false
},
"customRoot": {
"when": "useCustomRoot",
"type": "string",
"message": "Specify custom root directory (ex: /customdir)"
}
},
"filters": {
"static-site-generator.js": "static"
}
}