{
  "name": "next-leak",
  "version": "0.12.1",
  "description": "Find out whether your Next.js app actually leaks memory — how much, on which route, and whose fault it is.",
  "keywords": [
    "nextjs",
    "next.js",
    "memory-leak",
    "memory",
    "oom",
    "oomkilled",
    "heap",
    "heap-snapshot",
    "profiling",
    "performance",
    "nodejs",
    "diagnostics",
    "debugging",
    "cli"
  ],
  "license": "MIT",
  "author": "Xabier Lameiro <xabier.lameiro@gmail.com>",
  "type": "module",
  "bin": {
    "next-leak": "dist/cli.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "THIRD-PARTY-NOTICES.md"
  ],
  "engines": {
    "node": ">=22"
  },
  "packageManager": "pnpm@10.20.0",
  "scripts": {
    "build": "tsup && tsc -p tsconfig.build.json && node scripts/generate-notices.mjs && node scripts/check-bundle.mjs",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run typecheck && npm run test && npm run build",
    "pack:smoke": "node scripts/pack-smoke.mjs",
    "test:mutation": "stryker run",
    "prepare": "husky >/dev/null 2>&1 || true"
  },
  "pnpm": {
    "overrides": {
      "uuid": ">=11.1.1",
      "esbuild": ">=0.28.1",
      "qs": ">=6.15.2",
      "js-yaml": ">=4.3.1 <5",
      "fast-uri": ">=3.1.6 <4",
      "ip-address": ">=10.3.1 <11",
      "postcss": ">=8.5.23 <9",
      "browserslist": ">=4.28.7",
      "@puppeteer/browsers": "^3.2.2"
    }
  },
  "devDependencies": {
    "@commitlint/cli": "^21.2.1",
    "@commitlint/config-conventional": "^21.2.0",
    "@memlab/core": "^2.0.4",
    "@memlab/heap-analysis": "^2.0.4",
    "@stryker-mutator/core": "^9.6.1",
    "@stryker-mutator/vitest-runner": "^9.6.1",
    "@types/autocannon": "^7.12.7",
    "@types/node": "^26.1.1",
    "@types/semver": "^7.7.1",
    "@vitest/coverage-v8": "^4.1.10",
    "autocannon": "^8.0.0",
    "husky": "^9.1.7",
    "tsup": "^8.5.1",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "dependencies": {
    "semver": "^7.8.5",
    "zod": "^4.4.3"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xabierlameiro/next-leak.git"
  },
  "homepage": "https://github.com/xabierlameiro/next-leak#readme",
  "bugs": {
    "url": "https://github.com/xabierlameiro/next-leak/issues"
  }
}
