25 lines
621 B
JSON
25 lines
621 B
JSON
|
|
{
|
||
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||
|
|
"title": "Tailwind CSS Schematic",
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"project": {
|
||
|
|
"type": "string",
|
||
|
|
"description": "The name of the project.",
|
||
|
|
"$default": {
|
||
|
|
"$source": "projectName"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"package": {
|
||
|
|
"type": "string",
|
||
|
|
"description": "The package to be added."
|
||
|
|
},
|
||
|
|
"skipInstall": {
|
||
|
|
"description": "Skip the automatic installation of packages. You will need to manually install the dependencies later.",
|
||
|
|
"type": "boolean",
|
||
|
|
"default": false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["project"]
|
||
|
|
}
|