{
  "name": "@alexaegis/coverage-tools",
  "description": "Tools for working with coverage reports in workspaces",
  "version": "0.15.3",
  "license": "MIT",
  "private": false,
  "archetype": {
    "platform": "node",
    "language": "ts",
    "kind": "lib"
  },
  "keywords": [
    "javascript",
    "js",
    "managed-by-autotool",
    "ts",
    "typescript"
  ],
  "repository": {
    "url": "git+https://github.com/AlexAegis/js-tooling.git",
    "type": "git"
  },
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=22.6.0"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json",
    "./readme": "./readme.md"
  },
  "bin": {
    "merge-workspace-lcov-reports": "./dist/bin/merge-workspace-lcov-reports.js"
  },
  "dependencies": {
    "globby": "^16.2.0",
    "@alexaegis/logging": "^0.15.3",
    "@alexaegis/common": "^0.15.3",
    "@alexaegis/workspace-tools": "^0.15.3"
  },
  "devDependencies": {
    "@types/node": "^26.0.0",
    "publint": "^0.3.21",
    "typescript": "^6.0.3",
    "vite": "^8.1.0",
    "vite-plugin-dts": "^5.0.2",
    "vitest": "^4.1.9",
    "@alexaegis/eslint-config-vitest": "^0.15.3",
    "@alexaegis/ts": "^0.15.3",
    "@alexaegis/vite": "^0.15.3",
    "@alexaegis/vitest": "^0.15.3"
  },
  "scripts": {
    "lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "lint:depcheck_": "depcheck",
    "lint:es": "turbo run lint:es_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
    "lint:format": "turbo run lint:format_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
    "lint:md": "turbo run lint:md_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "lint:md_": "remark --frail --no-stdout --silently-ignore .",
    "lint:tsc": "turbo run lint:tsc_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "lint:tsc_": "tsc --noEmit",
    "publint": "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "publint_": "publint",
    "test": "turbo run test_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "test_": "vitest --passWithNoTests --coverage --run",
    "test:watch": "vitest --passWithNoTests --coverage",
    "all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "build": "turbo run build-lib_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "build-lib_": "vite build",
    "format": "turbo run format_ --concurrency 16 --filter @alexaegis/coverage-tools",
    "format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write ."
  }
}