Files
angular-challenges/libs/custom-plugin/src/generators/custom-library/schema.json
2023-06-19 22:09:54 +02:00

19 lines
354 B
JSON

{
"$schema": "http://json-schema.org/schema",
"$id": "CustomLibrary",
"title": "",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "What name would you like to use?"
}
},
"required": ["name"]
}