{
  "name": "@wristband/react-client-auth",
  "description": "A lightweight React SDK that pairs with your backend server auth to initialize and sync frontend sessions via secure session cookies.",
  "author": "Wristband",
  "homepage": "https://wristband.dev",
  "version": "3.3.0",
  "license": "MIT",
  "sideEffects": false,
  "type": "module",
  "source": "./src/index.ts",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.js",
      "import": "./dist/esm/index.js",
      "default": "./dist/esm/index.js"
    }
  },
  "files": [
    "dist",
    "LICENSE.md",
    "README.md",
    "package.json"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/wristband-dev/react-client-auth.git"
  },
  "bugs": {
    "email": "support@wristband.dev"
  },
  "engines": {
    "node": ">=20.0.0",
    "npm": ">=9.6.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "npm run clean && rollup -c",
    "clean": "rimraf dist",
    "package": "npm run build && npm pack",
    "prepublishOnly": "pinst --disable",
    "_postinstall": "husky install",
    "postpublish": "pinst --enable",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "lint": "tsc --noEmit && eslint src test",
    "lint:fix": "tsc --noEmit && eslint src test --fix",
    "format": "prettier --write \"{src,test}/**/*.{ts,tsx}\"",
    "format:check": "prettier --check \"{src,test}/**/*.{ts,tsx}\""
  },
  "keywords": [
    "react",
    "sdk",
    "multi-tenant",
    "multitenant",
    "auth",
    "authentication",
    "session",
    "oauth2",
    "oidc",
    "wristband",
    "b2b",
    "saas"
  ],
  "peerDependencies": {
    "react": ">=17.0.0",
    "react-dom": ">=17.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-typescript": "^12.3.0",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@types/node": "^22.20.1",
    "@types/react": "^19.2.18",
    "@types/react-dom": "^19.2.3",
    "@vitejs/plugin-react": "^6.0.5",
    "@vitest/coverage-v8": "^4.1.10",
    "@vitest/eslint-plugin": "^1.6.26",
    "eslint": "^9.39.5",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.3.2",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-jsx-a11y": "^6.10.2",
    "eslint-plugin-prettier": "^5.5.6",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^5.2.0",
    "husky": "^9.1.7",
    "jsdom": "^26.1.0",
    "msw": "^2.15.0",
    "pinst": "^3.0.0",
    "prettier": "^3.9.6",
    "rimraf": "^6.1.3",
    "rollup": "^4.62.4",
    "rollup-plugin-dts": "^6.5.1",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.66.0",
    "vite": "^8.2.0",
    "vitest": "^4.1.10"
  }
}
