{
  "name": "@mycrypto/wallets",
  "version": "1.5.1",
  "description": "Wallet abstractions to be used throughout the MyCrypto product suite.",
  "repository": "MyCryptoHQ/wallets",
  "author": "MyCrypto",
  "license": "MIT",
  "main": "lib/cjs/index.js",
  "module": "lib/es/index.js",
  "types": "typings/src/index.d.ts",
  "files": [
    "lib",
    "typings"
  ],
  "sideEffects": false,
  "scripts": {
    "clean": "rimraf lib",
    "build": "yarn run clean && yarn run build:source && yarn run build:declarations",
    "build:source": "yarn run build:source:cjs && yarn run build:source:es",
    "build:source:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src --extensions '.ts,.tsx' --source-maps --out-dir lib/cjs",
    "build:source:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src --extensions '.ts,.tsx' --source-maps --out-dir lib/es",
    "build:declarations": "tsc -p tsconfig.build.json",
    "test": "jest",
    "lint": "yarn run lint:types && yarn run lint:source && yarn run lint:format",
    "lint:types": "tsc --noEmit",
    "lint:source": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
    "lint:format": "prettier --check --ignore-path .gitignore \"**/*.{ts,tsx,js,json,yml}\"",
    "format": "prettier --write --ignore-path .gitignore \"**/*.{ts,tsx,js,json,yml}\"",
    "prepare": "simple-git-hooks",
    "prepack": "yarn build"
  },
  "resolutions": {
    "npmlog": "6.0.0"
  },
  "dependencies": {
    "@ethersproject/abstract-provider": "5.5.1",
    "@ethersproject/address": "5.5.0",
    "@ethersproject/basex": "5.5.0",
    "@ethersproject/bytes": "5.5.0",
    "@ethersproject/hdnode": "5.5.0",
    "@ethersproject/json-wallets": "5.5.0",
    "@ethersproject/sha2": "5.5.0",
    "@ethersproject/signing-key": "5.5.0",
    "@ethersproject/strings": "5.5.0",
    "@ethersproject/transactions": "5.5.0",
    "@ethersproject/wallet": "5.5.0",
    "@ledgerhq/hw-app-eth": "6.23.0",
    "@ledgerhq/hw-transport": "6.20.0",
    "@ledgerhq/hw-transport-node-hid-noevents": "6.20.0",
    "@ledgerhq/hw-transport-u2f": "5.36.0-deprecated",
    "@ledgerhq/hw-transport-webhid": "6.20.0",
    "@ledgerhq/hw-transport-webusb": "6.20.0",
    "ethereumjs-wallet": "1.0.2",
    "gridplus-sdk": "1.3.4",
    "superstruct": "0.15.3",
    "trezor-connect": "8.2.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.13.14",
    "@babel/core": "^7.13.14",
    "@babel/plugin-proposal-nullish-coalescing-operator": "7.13.8",
    "@babel/plugin-proposal-optional-chaining": "7.13.12",
    "@babel/preset-env": "^7.13.12",
    "@babel/preset-typescript": "^7.13.0",
    "@ledgerhq/hw-transport-mocker": "6.20.0",
    "@types/jest": "^26.0.22",
    "@types/ledgerhq__hw-transport-u2f": "4.21.2",
    "@typescript-eslint/eslint-plugin": "^4.18.0",
    "@typescript-eslint/parser": "^4.18.0",
    "babel-jest": "^26.6.3",
    "babel-loader": "^8.2.2",
    "cross-env": "^7.0.3",
    "eslint": "^7.22.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.3.2",
    "jest": "^26.6.3",
    "lint-staged": "^10.5.4",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "simple-git-hooks": "^2.3.1",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.3",
    "utility-types": "3.10.0"
  },
  "simple-git-hooks": {
    "pre-commit": "yarn lint-staged",
    "pre-push": "yarn test"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --fix"
    ],
    "*.{js,jsx,ts,tsx,json,md}": [
      "prettier --write"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
