{
  "name": "lucia-auth-adapter-surrealdb",
  "version": "1.0.1",
  "description": "SurrealDB adapter for Lucia",
  "main": "index.js",
  "types": "index.d.ts",
  "module": "index.js",
  "type": "module",
  "files": [
    "**/*"
  ],
  "keywords": [
    "lucia",
    "surrealdb",
    "lucia-auth",
    "auth",
    "authentication"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/fernandolguevara/lucia-auth-adapter-surrealdb"
  },
  "author": "fernandolguevara",
  "license": "MIT",
  "exports": {
    ".": "./index.js"
  },
  "devDependencies": {
    "@lucia-auth/adapter-test": "^3.0.1",
    "@types/node": "^20.3.1",
    "dotenv": "^16.3.1",
    "esno": "^0.16.3",
    "prettier": "^2.8.8",
    "typescript": "^5.1.3"
  },
  "dependencies": {
    "lucia-auth": "^1.8.0",
    "surrealdb.js": "^0.8.1"
  },
  "scripts": {
    "build": "zsh -c '[ -d \"./dist\" ] && { rm -rf ./dist/* } || { mkdir ./dist } && { cp ./package.json ./dist && cp ./README.md ./dist && cp .npmignore dist && tsc && esno package.ts }'",
    "test-main": "esno test/index.ts",
    "package": "pnpm build && cd dist && pnpm install --no-frozen-lockfile && pnpm publish --no-git-checks --access public --registry=https://registry.npmjs.com && cd ../",
    "format": "prettier --plugin-search-dir . --write ."
  }
}