@angular-devkit/schematics-cli
Version:
Angular Schematics - CLI
28 lines (27 loc) • 684 B
JSON
{
"$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
}
},
"packageManager": {
"description": "The package manager used to install dependencies.",
"type": "string",
"enum": ["npm", "yarn", "pnpm", "cnpm", "bun"],
"default": "npm"
},
"author": {
"type": "string",
"description": "Author for the new schematic."
}
},
"required": []
}