{
  "name": "scrypt-kdf",
  "description": "Scrypt Key Derivation Function",
  "keywords": [ "crypto", "scrypt", "kdf", "password", "hash", "login", "authenticate", "verify" ],
  "author": "Chris Veness",
  "repository": {
    "type": "git",
    "url": "https://github.com/chrisveness/scrypt-kdf"
  },
  "version": "4.0.0",
  "license": "MIT",
  "main": "scrypt.js",
  "type": "module",
  "types": "scrypt.d.ts",
  "engines": {
    "node": ">=19.0.0",
    "deno": ">=2.5.0"
  },
  "scripts": {
    "test": "npm run test-node && npm run test-deno",
    "test-node": "node --test test/tests-node.js",
    "test-deno": "deno test -NES test/tests-deno.js",
    "lint": "eslint scrypt.js test/tests-*.js",
    "cover": "c8 npm test"
  },
  "devDependencies": {
    "@eslint/js": "^9",
    "@types/node": "^24",
    "c8": "^10",
    "eslint-plugin-jsdoc": "^61",
    "globals": "^16"
  }
}
