34 lines
741 B
JSON
34 lines
741 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"$id": "sidebar-nav",
|
|
"title": "Sidebar Navigation Layout",
|
|
"type": "object",
|
|
"properties": {
|
|
"project": {
|
|
"type": "string",
|
|
"description": "The name of the project.",
|
|
"$default": {
|
|
"$source": "projectName"
|
|
}
|
|
},
|
|
"style": {
|
|
"description": "The file extension or preprocessor to use for style files.",
|
|
"type": "string",
|
|
"default": "css",
|
|
"enum": [
|
|
"css",
|
|
"scss",
|
|
"sass",
|
|
"less"
|
|
]
|
|
},
|
|
"prefix": {
|
|
"type": "string",
|
|
"format": "html-selector",
|
|
"description": "A prefix to apply to generated selectors.",
|
|
"default": "app",
|
|
"alias": "p"
|
|
}
|
|
}
|
|
}
|