{
  "cli": "nx",
  "version": 2,
  "outputCapture": "direct-nodejs",
  "$id": "NxExpoInstall",
  "$schema": "https://json-schema.org/schema",
  "title": "Expo Install",
  "description": "Install a module or other package to a project.",
  "type": "object",
  "properties": {
    "packages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [],
      "description": "The names of packages to install",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "check": {
      "type": "boolean",
      "description": "Check which installed packages need to be updated",
      "default": false
    },
    "fix": {
      "type": "boolean",
      "description": "Automatically update any invalid package versions",
      "default": false
    },
    "force": {
      "type": "boolean",
      "description": "Force the installation of a package, even if it is already installed",
      "default": false
    }
  }
}
