{
  "name": "nextjs-basic-auth-middleware",
  "version": "3.1.1",
  "author": "Boris Besemer",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "module": "dist/index.js",
  "homepage": "https://github.com/labd/nextjs-basic-auth-middleware#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/labd/nextjs-basic-auth-middleware"
  },
  "license": "MIT",
  "main": "dist/index.cjs",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "type": "module",
  "peerDependencies": {
    "next": ">=13.1"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.12",
    "@changesets/cli": "2.30.0",
    "@types/node": "22.15.3",
    "@vitest/coverage-v8": "3.2.3",
    "next": "15.5.15",
    "tsdown": "0.12.5",
    "typescript": "6.0.2",
    "vitest": "3.2.3"
  },
  "scripts": {
    "start": "tsdown --watch",
    "build": "tsdown",
    "format": "biome format --write .",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "test": "vitest run",
    "test:ci": "vitest run --coverage",
    "tsc": "tsc --noEmit -p .",
    "publish:ci": "pnpm build && pnpm changeset publish"
  }
}