{
  "name": "@better-auth/mongo-adapter",
  "version": "1.6.5",
  "description": "Mongo adapter for Better Auth",
  "type": "module",
  "license": "MIT",
  "homepage": "https://www.better-auth.com/docs/adapters/mongodb",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/better-auth/better-auth.git",
    "directory": "packages/mongo-adapter"
  },
  "keywords": [
    "auth",
    "mongodb",
    "adapter",
    "typescript",
    "better-auth"
  ],
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "dev-source": "./src/index.ts",
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "peerDependencies": {
    "@better-auth/utils": "0.4.0",
    "mongodb": "^6.0.0 || ^7.0.0",
    "@better-auth/core": "^1.6.5"
  },
  "peerDependenciesMeta": {
    "mongodb": {
      "optional": true
    }
  },
  "devDependencies": {
    "@better-auth/utils": "0.4.0",
    "mongodb": "^7.1.0",
    "tsdown": "0.21.1",
    "typescript": "^5.9.3",
    "@better-auth/core": "1.6.5"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint:package": "publint run --strict --pack false",
    "lint:types": "attw --profile esm-only --pack .",
    "typecheck": "tsc --noEmit",
    "test": "vitest"
  }
}