{
  "name": "@exortek/passkey",
  "version": "1.1.0",
  "description": "WebAuthn / FIDO2 server verification for Node.js 22+ — registration + authentication with an in-house CBOR + COSE + ASN.1 stack, all seven attestation formats (none, packed, fido-u2f, tpm, android-key, android-safetynet, apple), challenge store via @exortek/challenge. Zero non-@exortek/* runtime dependencies.",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./mds": {
      "types": "./dist/mds.d.ts",
      "import": "./dist/mds.mjs",
      "require": "./dist/mds.cjs"
    },
    "./aaguid": {
      "types": "./dist/aaguid.d.ts",
      "import": "./dist/aaguid.mjs",
      "require": "./dist/aaguid.cjs"
    }
  },
  "files": [
    "dist",
    "/README.md",
    "/CHANGELOG.md",
    "/LICENSE"
  ],
  "scripts": {
    "build": "rm -rf dist tsconfig.tsbuildinfo && rollup -c rollup.config.js && tsc -p tsconfig.json && rollup -c ../../rollup.dts.config.mjs",
    "build:watch": "rollup -c rollup.config.js --watch",
    "build:types": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "node --test 'tests/**/*.test.js'",
    "test:coverage": "node --test --experimental-test-coverage 'tests/**/*.test.js'",
    "clean": "rm -rf dist tsconfig.tsbuildinfo",
    "prepack": "cp ../../LICENSE ./LICENSE"
  },
  "keywords": [
    "backend",
    "security",
    "auth",
    "webauthn",
    "fido2",
    "passkey",
    "passwordless",
    "authentication",
    "server-only",
    "node-crypto"
  ],
  "license": "MIT",
  "homepage": "https://github.com/ExorTek/auth/tree/master/packages/passkey#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ExorTek/auth.git",
    "directory": "packages/passkey"
  },
  "bugs": {
    "url": "https://github.com/ExorTek/auth/issues"
  },
  "dependencies": {
    "@exortek/challenge": "^1.1.3",
    "@exortek/crypto": "^1.1.1"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}