{
  "name": "@samouraiwallet/auth47",
  "version": "1.2.1",
  "description": "A JS implementation of the Auth47 protocol",
  "keywords": [
    "bitcoin",
    "bip47",
    "bip-47",
    "auth47",
    "auth-47",
    "paynym"
  ],
  "type": "module",
  "engines": {
    "node": ">=20.x.x"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Dojo-Open-Source-Project/auth47.git"
  },
  "bugs": {
    "url": "https://github.com/Dojo-Open-Source-Project/auth47/issues"
  },
  "author": "Katana Cryptographic Ltd.",
  "license": "LGPL-3.0",
  "homepage": "https://github.com/Dojo-Open-Source-Project/auth47",
  "dependencies": {
    "@samouraiwallet/bip47": "^1.1.0",
    "@samouraiwallet/bitcoinjs-message": "^3.1.1"
  },
  "devDependencies": {
    "@types/node": "^20.17.57",
    "@typescript-eslint/eslint-plugin": "^8.4.0",
    "@typescript-eslint/parser": "^8.4.0",
    "@vitest/coverage-v8": "^3.1.4",
    "eslint": "^8.57.0",
    "eslint-import-resolver-typescript": "^3.6.3",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-unicorn": "^55.0.0",
    "tiny-secp256k1": "^2.2.3",
    "typescript": "^5.5.4",
    "vitest": "^3.1.4"
  },
  "scripts": {
    "test": "vitest run",
    "test:watch": "vitest watch",
    "coverage": "vitest run --coverage",
    "typescript": "tsc --noEmit",
    "lint": "eslint --ext .ts src/ test/",
    "build:clean": "rm -rf dist",
    "build:esm": "tsc -p tsconfig.build.json",
    "build": "npm run build:clean && npm run build:esm"
  }
}