{
  "$schema": "http://json-schema.org/schema",
  "$id": "Init",
  "title": "",
  "type": "object",
  "properties": {
    "unitTestRunner": {
      "description": "Adds the specified unit test runner.",
      "type": "string",
      "enum": ["vitest", "jest", "none"],
      "default": "vitest"
    },
    "e2eTestRunner": {
      "description": "Adds the specified e2e test runner.",
      "type": "string",
      "enum": ["cypress", "none"],
      "default": "cypress"
    },
    "skipFormat": {
      "description": "Skip formatting files.",
      "type": "boolean",
      "default": false
    }
  },
  "required": []
}
