@nx-plugins/slidev
Version:
The Nx Plugin for Slidev that contains executors, generators, and utilities for managing Slidev applications within an Nx workspace.
44 lines (43 loc) • 1.1 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"$id": "PackagesSlidev",
"title": "",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "What name would you like for the application?"
},
"directory": {
"type": "string",
"description": "A directory where the project is placed",
"alias": "d"
},
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false
},
"skipPackageJson": {
"type": "boolean",
"description": "Do not add dependencies to package.json",
"default": false
},
"standaloneConfig": {
"description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`",
"type": "boolean"
},
"tags": {
"type": "string",
"description": "Add tags to the project (used for linting)",
"alias": "t"
}
},
"required": []
}