@next-boilerplate/cli-helpers
Version:
CLI helper for Next Boilerplate
40 lines • 898 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"source": {
"type": "string"
},
"paths": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"from": {
"type": "string"
},
"to": {
"type": "string"
}
}
}
}
},
"required": [
"$schema",
"name",
"description",
"paths"
]
}