{
  "$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"]
}
