{
  "name": "@otplib/preset-v11",
  "version": "13.4.0",
  "description": "v11 compatibility preset for otplib",
  "license": "MIT",
  "author": "Gerald Yeo <support@yeojz.dev>",
  "homepage": "https://otplib.yeojz.dev",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yeojz/otplib.git",
    "directory": "packages/v11-adapter"
  },
  "bugs": {
    "url": "https://github.com/yeojz/otplib/issues"
  },
  "keywords": [
    "otp",
    "hotp",
    "totp",
    "2fa",
    "mfa",
    "authenticator",
    "migration",
    "v11",
    "adapter"
  ],
  "sideEffects": false,
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@scure/base": "^2.0.0",
    "@otplib/hotp": "13.4.0",
    "@otplib/core": "13.4.0",
    "@otplib/totp": "13.4.0",
    "@otplib/uri": "13.4.0",
    "@otplib/plugin-base32-scure": "13.4.0",
    "@otplib/plugin-crypto-noble": "13.4.0"
  },
  "devDependencies": {
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18",
    "@repo/testing": "13.0.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "test:ci": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/",
    "clean": "rm -rf dist .tsbuildinfo"
  }
}