{
  "name": "@noble/hashes",
  "version": "2.2.0",
  "description": "Audited & minimal 0-dependency JS implementation of SHA, RIPEMD, BLAKE, HMAC, HKDF, PBKDF & Scrypt",
  "files": [
    "*.js",
    "*.js.map",
    "*.d.ts",
    "*.d.ts.map",
    "src"
  ],
  "devDependencies": {
    "@paulmillr/jsbt": "0.5.0",
    "@types/node": "25.3.0",
    "fast-check": "4.2.0",
    "prettier": "3.6.2",
    "typescript": "6.0.2"
  },
  "scripts": {
    "bench": "node test/benchmark/noble.ts",
    "bench:compare": "MBENCH_DIMS='algorithm,buffer,library' node test/benchmark/hashes.ts",
    "bench:compare-scrypt": "MBENCH_DIMS='iters,library' MBENCH_FILTER='async' node test/benchmark/scrypt.ts",
    "bench:install": "cd test/benchmark; npm install",
    "build": "tsc",
    "build:release": "npx --no @paulmillr/jsbt esbuild test/build",
    "check": "npm run check:readme && npm run check:treeshake && npm run check:jsdoc",
    "check:readme": "npx --no @paulmillr/jsbt readme package.json",
    "check:treeshake": "npx --no @paulmillr/jsbt treeshake package.json test/build/out-treeshake",
    "check:jsdoc": "npx --no @paulmillr/jsbt tsdoc package.json",
    "build:clean": "rm *.{js,js.map,d.ts,d.ts.map} 2> /dev/null",
    "format": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
    "test": "node test/index.ts",
    "test:bun": "bun test/index.ts",
    "test:deno": "deno --allow-env --allow-read test/index.ts",
    "test:node20": "cd test; npx tsc; node compiled/test/index.js",
    "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"
}
