{
  "$schema": "http://json-schema.org/schema",
  "cli": "nx",
  "$id": "AddPackage",
  "title": "",
  "type": "object",
  "properties": {
    "directory": {
      "type": "string",
      "description": "The directory of the package to add.",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "Where is the package located?"
    },
    "projectType": {
      "type": "string",
      "description": "The Nx project type of the package.",
      "enum": ["application", "library"],
      "alias": "p"
    }
  },
  "required": ["directory"]
}
