{
  "name": "@noble/hashes",
  "version": "2.3.0",
  "description": "Audited & minimal 0-dependency JS implementation of SHA, RIPEMD, BLAKE, HMAC, HKDF, PBKDF & Scrypt",
  "files": [
    "*.js",
    "*.d.ts",
    "src"
  ],
  "devDependencies": {
    "@paulmillr/jsbt": "0.6.5",
    "@types/node": "25.3.0",
    "fast-check": "4.2.0",
    "prettier": "3.6.2",
    "typescript": "6.0.2"
  },
  "scripts": {
    "benchmark": "node benchmark/hashes.ts",
    "benchmark:thirdparty": "cd benchmark/thirdparty; npm ci; JSBT_BENCHMARK_DIMENSIONS='algorithm,buffer,library' node hashes.ts",
    "benchmark:thirdparty-scrypt": "cd benchmark/thirdparty; npm ci; JSBT_BENCHMARK_DIMENSIONS='iters,library' JSBT_BENCHMARK_FILTER='async' node scrypt.ts",
    "build": "tsc",
    "build:clean": "rm *.{js,d.ts} 2> /dev/null",
    "check": "jsbt-check",
    "format": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
    "test": "node test/index.ts",
    "test:dos": "node test/slow-dos.test.ts",
    "test:slow": "node test/slow-big.test.ts",
    "test:acvp": "node test/slow-acvp.test.ts",
    "test:kdf": "node test/slow-kdf.test.ts"
  },
  "exports": {
    ".": "./index.js",
    "./_md.js": "./_md.js",
    "./argon2.js": "./argon2.js",
    "./blake1.js": "./blake1.js",
    "./blake2.js": "./blake2.js",
    "./blake3.js": "./blake3.js",
    "./eskdf.js": "./eskdf.js",
    "./hkdf.js": "./hkdf.js",
    "./hmac.js": "./hmac.js",
    "./legacy.js": "./legacy.js",
    "./pbkdf2.js": "./pbkdf2.js",
    "./scrypt.js": "./scrypt.js",
    "./sha2.js": "./sha2.js",
    "./sha3-addons.js": "./sha3-addons.js",
    "./sha3.js": "./sha3.js",
    "./webcrypto.js": "./webcrypto.js",
    "./utils.js": "./utils.js"
  },
  "engines": {
    "node": ">= 20.19.0"
  },
  "keywords": [
    "sha1",
    "sha2",
    "sha3",
    "blake",
    "blake2",
    "blake3",
    "hmac",
    "hkdf",
    "pbkdf2",
    "scrypt",
    "sha256",
    "sha512",
    "keccak",
    "ripemd160",
    "kdf",
    "hash",
    "cryptography",
    "security",
    "noble"
  ],
  "homepage": "https://paulmillr.com/noble/",
  "funding": "https://paulmillr.com/funding/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/paulmillr/noble-hashes.git"
  },
  "type": "module",
  "main": "index.js",
  "module": "index.js",
  "types": "index.d.ts",
  "sideEffects": false,
  "author": "Paul Miller (https://paulmillr.com)",
  "license": "MIT"
}
