{
  "name": "@availity/spaces",
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "projectType": "library",
  "targets": {
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "vitest run --project=spaces",
        "cwd": "."
      },
      "configurations": {
        "ci": {
          "command": "vitest run --project=spaces --coverage"
        }
      }
    },
    "version": {
      "executor": "@jscutlery/semver:version",
      "options": {
        "preset": "angular",
        "commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
        "tagPrefix": "{projectName}@",
        "baseBranch": "master",
        "trackDeps": true
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "silent": false,
        "fix": false,
        "cache": true,
        "cacheLocation": "./node_modules/.cache/spaces/.eslintcache",
        "maxWarnings": -1,
        "quiet": false,
        "cacheStrategy": "metadata"
      }
    },
    "build": {
      "command": "tsup",
      "options": {
        "cwd": "packages/spaces"
      }
    }
  }
}
