@clipboard-health/nx-plugin
Version:
An Nx plugin with generators to manage libraries and applications.
26 lines (25 loc) • 645 B
JSON
{
"$schema": "https://json-schema.org/schema",
"$id": "NodeLib",
"title": "Create a Node.js library.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Library name.",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "Library name?",
"pattern": "(?:^@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*\\/[a-zA-Z0-9-~][a-zA-Z0-9-._~]*|^[a-zA-Z][^:]*)$"
},
"publishPublicly": {
"type": "boolean",
"default": false,
"description": "Publish the NPM package publicly.",
"x-priority": "important"
}
},
"required": ["name"]
}