-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.config.json
42 lines (42 loc) · 1.2 KB
/
template.config.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
{
"title": "project type",
"message": "Please select the project type:",
"description": "Select project type",
"type": "select",
"items": {
"cli": {
"title": "CLI",
"message": "Please select CLI project template:",
"description": "CLI project template",
"type": "select",
"items": {
"unbuild": {
"title": "cli-unbuild",
"message": "",
"description": "Use Unbuild as the packaging and building tool CLI template.",
"repo": "hacxy/cli-unbuild-template"
},
"tsup": {
"title": "cli-tsup",
"message": "",
"description": "Use Tsup as the packaging and building tool CLI template.",
"repo": "hacxy/cli-tsup-template"
}
}
},
"library": {
"title": "library",
"message": "Please select a library project template:",
"description": "Library project template",
"type": "select",
"items": {
"vite": {
"title": "library-vite",
"message": "",
"description": "Use Vite as the packaging and building tool library template.",
"repo": "hacxy/library-vite-template"
}
}
}
}
}