{
  "name": "@address-book/sdk",
  "version": "0.1.2",
  "description": "The sdk package provides a simple and efficient way to resolve email addresses into their corresponding Ethereum addresses (0x) using the Address Book protocol. This SDK is designed to integrate seamlessly into decentralized applications (dApps) and blockchain-based systems, enabling developers to streamline the process of mapping emails to blockchain identities.",
  "main": "./lib/index.js",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "release": "node scripts/release.js",
    "clean": "rm -rf ./lib/",
    "lint": "eslint ./src/ --fix",
    "prepare": "husky install",
    "test:watch": "jest --watchAll",
    "test": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "license": "MIT",
  "author": "Address Book",
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "address-book",
    "sdk",
    "ethereum",
    "email",
    "address",
    "protocol"
  ],
  "homepage": "",
  "devDependencies": {
    "@types/jest": "^27.5.2",
    "@types/node": "^12.20.11",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "eslint": "^7.25.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^6.0.0",
    "inquirer": "^10.1.8",
    "jest": "^27.2.0",
    "lint-staged": "^13.2.1",
    "prettier": "^2.2.1",
    "shelljs": "^0.8.5",
    "ts-jest": "^27.0.5",
    "ts-node": "^10.2.1",
    "typescript": "^4.2.4"
  },
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  }
}