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