{
  "name": "@lucia-auth/oauth",
  "version": "3.5.3",
  "description": "OAuth integration for Lucia",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "module": "dist/index.js",
  "type": "module",
  "files": [
    "/dist/",
    "CHANGELOG.md"
  ],
  "keywords": [
    "lucia",
    "lucia",
    "authentication",
    "auth",
    "oauth"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/pilcrowOnPaper/lucia",
    "directory": "packages/oauth"
  },
  "author": "pilcrowonpaper",
  "license": "MIT",
  "exports": {
    ".": "./dist/index.js",
    "./providers": "./dist/providers/index.js"
  },
  "typesVersions": {
    "*": {
      "providers": [
        "dist/providers/index.d.ts"
      ]
    }
  },
  "devDependencies": {
    "lucia": "latest",
    "vitest": "^0.33.0",
    "jose": "^4.14.4"
  },
  "peerDependencies": {
    "lucia": "^2.0.0"
  },
  "scripts": {
    "build": "shx rm -rf ./dist/* && tsc",
    "auri.build": "pnpm build",
    "test": "vitest run"
  }
}