{
  "$schema": "http://json-schema.org/draft-07/schema",
  "title": "Vitest Browser Provider Schematic",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the project.",
      "$default": {
        "$source": "projectName"
      }
    },
    "package": {
      "type": "string",
      "description": "The package to be added."
    },
    "skipInstall": {
      "description": "Skip the automatic installation of packages. You will need to manually install the dependencies later.",
      "type": "boolean",
      "default": false
    }
  },
  "required": ["project", "package"]
}
