{
  "name": "@odysseon/whoami-adapter-argon2",
  "version": "16.0.0",
  "private": false,
  "description": "Argon2 password hashing adapter for Odysseon Whoami",
  "keywords": [
    "argon2",
    "authentication",
    "hashing",
    "odysseon",
    "password",
    "security",
    "whoami"
  ],
  "homepage": "https://github.com/odysseon/whoami/tree/main/packages/adapter-argon2#readme",
  "bugs": {
    "url": "https://github.com/odysseon/whoami/issues"
  },
  "license": "ISC",
  "author": "Hammed Anuoluwapo Pelumi",
  "repository": {
    "type": "git",
    "url": "https://github.com/odysseon/whoami.git",
    "directory": "packages/adapter-argon2"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "argon2": "^0.44.0"
  },
  "devDependencies": {
    "@odysseon/whoami-core": "13.1.0"
  },
  "peerDependencies": {
    "@odysseon/whoami-core": "13.1.0"
  },
  "engines": {
    "node": ">=24.0.0"
  },
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "lint": "eslint \"src/**/*.ts\"",
    "test": "node --import tsx --test src/**/*.spec.ts",
    "test:cov": "node --import tsx --experimental-test-coverage --test-coverage-exclude=\"**/dist/**\" --test src/**/*.spec.ts"
  }
}