{
  "$schema": "http://json-schema.org/schema",
  "cli": "nx",
  "title": "Build executor",
  "description": "",
  "type": "object",
  "properties": {
    "astroConfig": {
      "description": "The path of the Astro configuration. (https://docs.astro.build/en/reference/configuration-reference/)",
      "type": "string"
    },
    "root": {
      "description": "The root directory of the project",
      "type": "string"
    },
    "verbose": {
      "description": "Enable verbose mode",
      "type": "boolean"
    },
    "silent": {
      "description": "Enable silent mode",
      "type": "boolean"
    }
  },
  "required": [
    "astroConfig"
  ]
}