{
  "$schema": "http://json-schema.org/schema",
  "$id": "Install",
  "title": "",
  "type": "object",
  "properties": {
    "project": {
      "description": "Which library should configure. This will add the target deploy to that project. It must be a publishable library.",
      "type": "string",
      "x-prompt": "Which library should configure?"
    },
    "distFolderPath": {
      "type": "string",
      "description": "The dist folder path. The path should be relative to the project's root",
      "x-prompt": "Which is the dist folder path?"
    },
    "access": {
      "type": "string",
      "description": "Tells the registry whether this package should be published as public or restricted. Only applies to scoped packages, which default to restricted. If you don't have a npm paid account, you must publish with --access public to publish scoped packages.",
      "enum": ["public", "restricted"],
      "default": "public"
    }
  },
  "required": ["project", "distFolderPath"]
}
