{
  "$schema": "http://json-schema.org/schema",
  "$id": "init",
  "title": "Init Cloudflare tools Nx Plugin for Storm Workspace",
  "type": "object",
  "properties": {
    "unitTestRunner": {
      "type": "string",
      "enum": ["vitest", "jest", "none"],
      "description": "Test runner to use for unit tests.",
      "default": "vitest"
    },
    "skipFormat": {
      "description": "Skip formatting files.",
      "type": "boolean",
      "default": false
    },
    "js": {
      "type": "boolean",
      "default": false,
      "description": "Use JavaScript instead of TypeScript"
    },
    "template": {
      "description": "Generate the initial worker using a template.",
      "type": "string",
      "enum": ["fetch-handler", "scheduled-handler", "hono", "none"]
    }
  },
  "required": ["name"]
}
