{
  "name": "@leapwallet/leap-keychain",
  "version": "0.3.8",
  "description": "A javascript library for crypto key management",
  "scripts": {
    "test:coverage": "nyc mocha",
    "test": "mocha",
    "lint:prettier": "yarn prettier .",
    "lint:prettier:check": "yarn lint:prettier -c",
    "lint:prettier:fix": "yarn lint:prettier -w",
    "lint:eslint": "eslint .",
    "lint:eslint:check": "yarn lint:eslint",
    "lint:eslint:fix": "yarn lint:eslint --fix",
    "lint:tsc": "tsc --noEmit",
    "lint:typedoc": "typedoc src/index.ts --includeVersion --readme none --treatWarningsAsErrors",
    "lint:check": "yarn lint:eslint:check && yarn lint:prettier:check && yarn lint:tsc",
    "lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix && yarn lint:tsc",
    "doc": "typedoc",
    "doc:build": "yarn doc",
    "doc:watch": "yarn doc --watch",
    "prepublish": "yarn build",
    "build": "tsc -p tsconfig-browser.json && tsc -p tsconfig-node.json"
  },
  "types": "dist/browser/index.d.ts",
  "license": "MIT",
  "repository": "leapwallet/leap-keychain",
  "keywords": [
    "leap wallet"
  ],
  "engines": {
    "node": "22"
  },
  "author": "Leap Wallet <admin@leapwallet.io> (https://leapwallet.io)",
  "bugs": "https://github.com/leapwallet/leap-keychain/issues",
  "homepage": "https://github.com/leapwallet/leap-keychain#readme",
  "files": [
    "dist/browser/",
    "dist/node/"
  ],
  "main": "dist/node/index.js",
  "browser": "dist/browser/index.js",
  "dependencies": {
    "@ethersproject/bytes": "5.8.0",
    "@ethersproject/hdnode": "5.8.0",
    "@ethersproject/wallet": "5.8.0",
    "@ethersproject/address": "5.8.0",
    "@ethersproject/keccak256": "5.8.0",
    "@noble/ciphers": "1.3.0",
    "@noble/hashes": "1.7.1",
    "@noble/secp256k1": "2.3.0",
    "@scure/base": "1.1.6",
    "@scure/bip32": "1.6.2",
    "@scure/bip39": "1.5.4",
    "@scure/btc-signer": "1.7.0",
    "base64-js": "1.5.1",
    "bech32": "2.0.0",
    "typedi": "0.10.0",
    "uuid": "9.0.0"
  },
  "devDependencies": {
    "@types/crypto-js": "4.1.1",
    "@types/expect.js": "^0.3.32",
    "@types/jest": "28.1.4",
    "@types/mocha": "^10.0.9",
    "@types/uuid": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "8.38.0",
    "@typescript-eslint/parser": "8.38.0",
    "eslint": "9.31.0",
    "expect.js": "0.3.1",
    "mocha": "11.7.1",
    "nyc": "17.1.0",
    "prettier": "2.5.1",
    "tsx": "4.20.3",
    "typedoc": "0.28.7",
    "typedoc-plugin-missing-exports": "1.0.0",
    "typescript": "5.8.3",
    "cosmjs-types": "0.8.0"
  },
  "prettier": {
    "printWidth": 120,
    "singleQuote": true,
    "jsxSingleQuote": true,
    "trailingComma": "all"
  },
  "resolutions": {
    "protobufjs": "6.11.4",
    "semver": "7.6.0",
    "braces": "3.0.3",
    "secp256k1": "4.0.4"
  }
}
