{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "$schema": {
      "type": "string"
    },
    "packages": {
      "type": ["string", "array"],
      "minItems": 1,
      "items": {
        "type": "string"
      },
      "description": "A List of packages to manage with Sparkee.",
      "default": "*"
    },
    "singleRepo": {
      "type": "boolean",
      "description": "Whether to enable singleRepo mode.",
      "default": false
    },
    "moduleManager": {
      "type": "string",
      "enum": ["npm", "yarn", "pnpm"],
      "description": "The Prefered package manager.",
      "default": "npm"
    }
  },
  "additionalProperties": false
}
