{
  "name": "@workos-inc/authkit-nextjs",
  "version": "4.3.2",
  "description": "Authentication and session helpers for using WorkOS & AuthKit with Next.js",
  "sideEffects": false,
  "type": "module",
  "main": "./dist/esm/index.js",
  "types": "./dist/esm/types/index.d.ts",
  "files": [
    "dist",
    "src",
    "LICENSE",
    "README.md"
  ],
  "exports": {
    "./components": {
      "types": "./dist/esm/types/components/index.d.ts",
      "import": "./dist/esm/components/index.js"
    },
    ".": {
      "types": "./dist/esm/types/index.d.ts",
      "import": "./dist/esm/index.js"
    }
  },
  "dependencies": {
    "@sindresorhus/fnv1a": "^3.1.0",
    "iron-session": "^8.0.4",
    "jose": "^5.10.0",
    "path-to-regexp": "^6.3.0",
    "server-only": "^0.0.1",
    "valibot": "^1.2.0"
  },
  "peerDependencies": {
    "@workos-inc/node": "^9.0.0 || ^10.0.0",
    "next": "^13.5.9 || ^14.2.26 || ^15.2.3 || ^16",
    "react": "^18.0 || ^19.0.0",
    "react-dom": "^18.0 || ^19.0.0"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@types/node": "^20.19.35",
    "@types/react": "18.2.67",
    "@types/react-dom": "18.2.22",
    "@vitest/coverage-v8": "^3.2.4",
    "@workos-inc/node": "^10.7.0",
    "jsdom": "^26.1.0",
    "next": "^16.2.1",
    "oxfmt": "^0.42.0",
    "oxlint": "^1.57.0",
    "tslib": "^2.8.1",
    "typescript": "6.0.2",
    "typescript-eslint": "^7.18.0",
    "vitest": "^3.2.4"
  },
  "license": "MIT",
  "homepage": "https://github.com/workos/authkit-nextjs#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/workos/authkit-nextjs.git"
  },
  "bugs": {
    "url": "https://github.com/workos/authkit-nextjs/issues"
  },
  "engines": {
    "node": ">=22.11.0"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "prebuild": "pnpm run clean",
    "build": "tsc --project tsconfig.app.json",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "oxlint",
    "format": "oxfmt .",
    "format:check": "oxfmt --check .",
    "typecheck": "tsc --project tsconfig.app.json --noEmit && tsc --project tsconfig.test.json --noEmit"
  }
}