{
  "$schema": "https://json-schema.org/schema",
  "version": 2,
  "title": "BuildNodeApp executor",
  "description": "Build Botonic app for Node.js target with optional watch mode",
  "type": "object",
  "properties": {
    "configPath": {
      "type": "string",
      "description": "Path to the Vite config file",
      "default": "vite.config.ts"
    },
    "watch": {
      "type": "boolean",
      "description": "Run in watch mode",
      "default": false
    },
    "buildTarget": {
      "type": "string",
      "description": "Build target",
      "default": "node"
    }
  },
  "required": []
}
