@nx-plugins/slidev
Version:
The Nx Plugin for Slidev that contains executors, generators, and utilities for managing Slidev applications within an Nx workspace.
42 lines (40 loc) • 1.14 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"title": "Slidev executor",
"description": "",
"type": "object",
"properties": {
"entry": {
"description": "The path to the slides markdown. (https://sli.dev/guide/install.html#slidev-entry)",
"type": "string",
"default": "slides.md"
},
"port": {
"description": "port number",
"type": "number"
},
"open": {
"description": "open in browser",
"type": "boolean"
},
"remote": {
"description": "open in browser listen to public host and enable remote control, if a value is passed then the presenter mode is private and only accessible by passing the given password in the URL query password parameter",
"type": "string"
},
"log": {
"description": "log level",
"type": "string",
"enum": ["error", "warn", "info", "silent"]
},
"force": {
"description": " force the optimizer to ignore the cache and re-bundle",
"type": "boolean"
},
"theme": {
"description": "override theme",
"type": "string"
}
},
"required": []
}