{
  "name": "@kenmon/email-otp-authenticator",
  "version": "1.0.0-pre.3",
  "description": "Email OTP authenticator for Kenmon",
  "author": "Junyoung Choi <rokt33r.choi@gmail.com>",
  "license": "MIT",
  "keywords": [
    "authentication",
    "auth",
    "otp",
    "email",
    "kenmon"
  ],
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "dependencies": {
    "date-fns": "^4.1.0",
    "zod": "^4.1.12"
  },
  "peerDependencies": {
    "kenmon": "^1.0.0-pre.3"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "typescript": "^5.0.0",
    "vitest": "^4.0.8",
    "kenmon": "1.0.0-pre.3"
  },
  "scripts": {
    "test": "vitest run",
    "tsc": "tsc --noEmit",
    "build": "tsdown",
    "clean": "rm -rf dist"
  }
}