{
  "name": "@l8d/viem-account-yubikey",
  "version": "0.1.2",
  "description": "Helper library to use YubiKey hardware security keys with viem",
  "main": "dist/cjs/index.js",
  "module": "dist/mjs/index.js",
  "types": "dist/mjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/mjs/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/mjs/index.d.ts"
    }
  },
  "files": [
    "dist/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "author": "Tenor Biel (@l8d)",
  "license": "MIT",
  "homepage": "https://github.com/mezosphere/viem-account-yubikey",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mezosphere/viem-account-yubikey.git"
  },
  "keywords": [
    "yubikey",
    "viem",
    "ethereum",
    "hardware-wallet",
    "signing",
    "openpgp"
  ],
  "scripts": {
    "build": "npm run clean && npm run build:cjs && npm run build:mjs",
    "build:cjs": "tsc -p tsconfig-cjs.json",
    "build:mjs": "tsc -p tsconfig.json",
    "clean": "rm -rf dist",
    "lint": "prettier --check \"src/**/*.ts\"",
    "lint:fix": "prettier --write \"src/**/*.ts\"",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "peerDependencies": {
    "viem": "^2.0.0"
  },
  "optionalDependencies": {
    "pcsclite": "*"
  },
  "dependencies": {
    "@ethereumjs/util": "^9.1.0",
    "@noble/curves": "^1.7.0",
    "@noble/hashes": "^1.6.1",
    "debug": "^4.4.0"
  },
  "devDependencies": {
    "@types/debug": "^4.1.12",
    "@types/node": "^22.10.2",
    "pcsclite": "^1.0.1",
    "prettier": "^3.4.2",
    "typescript": "^5.7.2",
    "viem": "^2.33.2"
  },
  "engines": {
    "node": ">=18"
  }
}
