{
  "name": "@codecov/bundle-analyzer",
  "version": "1.9.0",
  "description": "Official Codecov Bundle Analyzer",
  "author": "Codecov",
  "license": "MIT",
  "keywords": [
    "Codecov",
    "bundle-analyzer",
    "bundler",
    "analyzer",
    "cli",
    "script"
  ],
  "type": "module",
  "bin": {
    "bundle-analyzer": "./dist/cli.cjs"
  },
  "os": [
    "darwin",
    "linux"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "micromatch": "^4.0.8",
    "yargs": "^17.7.2",
    "@codecov/bundler-plugin-core": "^1.9.0"
  },
  "devDependencies": {
    "@rollup/plugin-replace": "^5.0.5",
    "@types/micromatch": "^4.0.9",
    "@types/node": "^20.11.15",
    "@types/yargs": "^17.0.33",
    "@vitest/coverage-v8": "^2.1.9",
    "codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
    "msw": "^2.7.0",
    "ts-node": "^10.9.2",
    "typedoc": "^0.27.5",
    "unbuild": "^2.0.0",
    "vite": "^6.0.3",
    "vitest": "^2.1.9"
  },
  "volta": {
    "extends": "../../package.json"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "type-check": "tsc --noEmit",
    "build": "unbuild",
    "dev": "unbuild --stub && node --watch-path=src dist/index.mjs",
    "clean": "rm -rf dist  node_modules",
    "lint": "eslint . --ext .ts,.tsx",
    "lint:fix": "pnpm lint --fix",
    "format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --write",
    "format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check",
    "test:unit": "vitest run",
    "test:unit:watch": "vitest watch",
    "test:unit:ci": "vitest --coverage --reporter=junit --outputFile=./bundle-analyzer.junit.xml run",
    "test:unit:update": "vitest -u run",
    "generate:typedoc": "typedoc --options ./typedoc.json"
  }
}