{
  "$schema": "http://json-schema.org/schema",
  "version": 2,
  "title": "UpdatePackageGroup executor",
  "description": "",
  "type": "object",
  "properties": {
    "packageGroupRegex": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [
        "@rxap\/",
        "@angular\/",
        "@nx\/",
        "@nestjs\/",
        "@sentry\/"
      ],
      "description": "List of regexes to match package name that should be added to the package group"
    },
    "merge": {
      "type": "boolean",
      "default": false,
      "description": "If true, the package group will be merged with the existing package group. If false, the package group will be replaced."
    },
    "include": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of package names that should be added to the package group"
    },
    "includeDependencies": {
      "type": "boolean",
      "default": false,
      "description": "If true, the dependencies of the included packages will be added to the package group"
    }
  },
  "required": []
}
