imajin/node_modules/@angular-devkit/schematics-cli/blank/schema.json
2026-01-10 04:52:11 -08:00

21 lines
478 B
JSON
Executable file

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsSchematicSchema",
"title": "Schematic Options Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The package name for the new schematic.",
"$default": {
"$source": "argv",
"index": 0
}
},
"author": {
"type": "string",
"description": "Author for the new schematic."
}
},
"required": []
}