{
  "name": "ed25519-hd-key",
  "version": "2.0.0",
  "type": "module",
  "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/alepop/ed25519-hd-key.git"
  },
  "bugs": {
    "url": "https://github.com/alepop/ed25519-hd-key/issues"
  },
  "homepage": "https://github.com/alepop/ed25519-hd-key",
  "scripts": {
    "prepublish": "npm run build",
    "build": "tsc -p ./",
    "test": "NODE_OPTIONS='--experimental-vm-modules' jest",
    "format": "prettier --write 'src/**/*.{js,ts}'"
  },
  "keywords": [
    "ed25519",
    "bip32",
    "slip-0010",
    "crypto",
    "trezor",
    "hierarchical",
    "deterministic",
    "hd key"
  ],
  "author": "Aleksey Popov",
  "license": "MIT",
  "dependencies": {
    "@noble/ed25519": "3.1.0",
    "@noble/hashes": "2.2.0"
  },
  "devDependencies": {
    "@types/jest": "30.0.0",
    "@types/node": "25.6.0",
    "jest": "30.3.0",
    "jest-cli": "30.3.0",
    "ts-jest": "29.4.9",
    "typescript": "6.0.3",
    "prettier": "3.8.3"
  }
}
