{
  "name": "secure-password-kit",
  "version": "1.0.2",
  "description": "All-in-one secure password toolkit: generation, validation, scoring, hashing, and verification",
  "license": "MIT",
  "author": "Ayobami Babalola",
  "homepage": "https://github.com/haewhybabs/secure-password-kit",
  "repository": {
    "type": "git",
    "url": "https://github.com/haewhybabs/secure-password-kit.git"
  },
  "bugs": {
    "url": "https://github.com/haewhybabs/secure-password-kit/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "browser": "./dist/index.browser.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.browser.js",
      "browser": "./dist/index.browser.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsup src/index.ts src/index.browser.ts --format cjs,esm",
    "build:dts": "tsc -p tsconfig.json --emitDeclarationOnly",
    "test": "vitest run",
    "prepublishOnly": "npm run clean && npm run test && npm run build && npm run build:dts"
  },
  "keywords": [
    "password",
    "security",
    "authentication",
    "argon2",
    "crypto",
    "hashing",
    "password-strength",
    "password-generator",
    "react",
    "react-native",
    "node",
    "browser",
    "typescript",
    "cross-platform",
    "secure-password"
  ],
  "dependencies": {
    "argon2": "^0.44.0"
  },
  "devDependencies": {
    "@types/node": "^25.0.3",
    "eslint": "^9.39.2",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.16"
  }
}
