{
  "name": "@nr1e/lucia-adapter-dynamodb",
  "version": "4.0.2",
  "type": "module",
  "description": "A DynamoDB adapter for lucia-auth",
  "main": "dist/index.js",
  "module": "dist/index.d.js",
  "files": [
    "**"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nr1etech/lucia-adapter-dynamodb.git"
  },
  "keywords": [
    "lucia-auth",
    "adapter",
    "DynamoDB"
  ],
  "author": "NR1E, Inc.",
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nr1etech/lucia-adapter-dynamodb/issues"
  },
  "homepage": "https://github.com/nr1etech/lucia-adapter-dynamodb#readme",
  "devDependencies": {
    "@eslint/js": "^9.24.0",
    "@lucia-auth/adapter-test": "^5.0.2",
    "@types/node": "^22.10.1",
    "@vitest/coverage-v8": "^1.6.0",
    "eslint": "^9.16.0",
    "prettier": "^3.4.1",
    "testcontainers": "^10.15.0",
    "typescript": "^5.7.2",
    "typescript-eslint": "^8.17.0",
    "vitest": "^1.6.0"
  },
  "dependencies": {
    "@aws-sdk/client-dynamodb": "^3.787.0",
    "@aws-sdk/util-dynamodb": "^3.787.0",
    "lucia": "^3.2.2"
  },
  "peerDependencies": {
    "@aws-sdk/client-dynamodb": "^3.787.0",
    "@aws-sdk/util-dynamodb": "^3.787.0",
    "lucia": "^3.2.2"
  },
  "exports": {
    ".": {
      "import": "./index.js",
      "types": "./index.d.ts"
    }
  },
  "engines": {
    "node": ">=20",
    "npm": "use pnpm",
    "yarn": "use pnpm",
    "pnpm": ">=10"
  },
  "scripts": {
    "prebuild": "prettier --check . && eslint src",
    "build": "tsc",
    "postbuild": "cp README.md package.json dist",
    "watch": "tsc -w",
    "test": "vitest run --coverage",
    "clean": "rm -rf ./dist && rm -rf ./coverage",
    "fmt": "prettier --write ."
  }
}