{
  "name": "hd-key-ed25519",
  "version": "2.0.0",
  "description": "BIP-0032 like derivation for ed25519 curve",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/christsim/ed25519-hd-key"
  },
  "bugs": {
    "url": "https://github.com/christsim/ed25519-hd-key/issues"
  },
  "homepage": "https://github.com/christsim/ed25519-hd-key",
  "scripts": {
    "prepublish": "yarn build",
    "build": "tsc -p ./",
    "test": "jest"
  },
  "jest": {
    "verbose": true,
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "(/spec/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "globals": {
      "window": {},
      "ts-jest": {
        "tsConfig": "./tsconfig.json"
      }
    }
  },
  "keywords": [
    "ed25519",
    "bip32",
    "slip-0010",
    "crypto",
    "trezor"
  ],
  "license": "MIT",
  "dependencies": {
    "bip39": "^3.0.4",
    "bs58check": "^2.1.2",
    "create-hmac": "^1.1.7",
    "tweetnacl": "^1.0.3"
  },
  "devDependencies": {
    "@types/jest": "^27.0.2",
    "@types/node": "^16.11.6",
    "jest": "^27.3.1",
    "jest-cli": "^27.3.1",
    "ts-jest": "^27.0.7",
    "typescript": "^4.4.4"
  }
}
