{
  "name": "brainvault",
  "version": "1.0.1",
  "description": "Memory-hard deterministic key derivation from human-memorable credentials",
  "keywords": [
    "cryptocurrency",
    "wallet",
    "bip39",
    "mnemonic",
    "argon2",
    "key-derivation",
    "deterministic",
    "brain-wallet",
    "cold-storage",
    "post-quantum"
  ],
  "author": "Boris Adimov <boris@adimov.ru>",
  "contributors": [
    {
      "name": "Egor Homakov",
      "url": "https://github.com/homakov"
    }
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adimov-eth/brainvault.git"
  },
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "browser": "./dist/index.js",
      "import": "./dist/index.js"
    },
    "./crypto": {
      "types": "./dist/core/crypto/index.d.ts",
      "browser": {
        "types": "./dist/core/crypto/browser.d.ts",
        "import": "./dist/core/crypto/browser.js"
      },
      "node": {
        "types": "./dist/core/crypto/node.d.ts",
        "import": "./dist/core/crypto/node.js"
      },
      "import": "./dist/core/crypto/index.js"
    },
    "./worker": {
      "types": "./dist/worker/index.d.ts",
      "import": "./dist/worker/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "brainvault": "dist/cli/generate.js",
    "brainvault-verify": "dist/cli/verify.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build && npm run test"
  },
  "dependencies": {
    "@noble/hashes": "^1.7.1",
    "@noble/post-quantum": "0.5.2",
    "argon2": "0.41.1",
    "argon2-browser": "^1.18.0",
    "bip39": "3.1.0",
    "zxcvbn": "4.4.2"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/zxcvbn": "^4.4.5",
    "typescript": "^5.7.0",
    "vitest": "^2.1.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "browser": {
    "./dist/core/crypto/node.js": "./dist/core/crypto/browser.js"
  }
}