{
  "name": "worker-password-auth",
  "version": "1.0.0",
  "description": "Password hashing and verifying for cloudflare workers using argon2",
  "main": "nodejs/index.js",
  "types": "nodejs/index.d.ts",
  "exports": {
    ".": {
      "node": {
        "default": "./nodejs/index.js",
        "types": "./nodejs/index.d.ts"
      },
      "browser": {
        "default": "./web/index.js",
        "types": "./web/index.d.ts"
      },
      "default": {
        "default": "./web/index.js",
        "types": "./web/index.d.ts"
      }
    }
  },
  "type": "module",
  "keywords": [
    "argon2",
    "argon2id",
    "password",
    "hashing",
    "cloudflare",
    "workers"
  ],
  "repository": "https://github.com/jamesbirtles/worker-password-auth.git",
  "author": "James Birtles <james@birtles.dev>",
  "license": "MIT OR Apache-2.0",
  "devDependencies": {
    "@rollup/plugin-wasm": "^6.1.3",
    "@wasm-tool/rollup-plugin-rust": "^2.4.0",
    "prettier": "^3.0.0",
    "rollup": "^3.26.3"
  },
  "files": [
    "web/**/*",
    "nodejs/**/*",
    "README.md",
    "LICENSE_APACHE",
    "LICENSE_MIT"
  ],
  "scripts": {
    "build": "wasm-pack build --target web --release --no-pack --out-dir web/pkg && wasm-pack build --target nodejs --release --no-pack --out-dir nodejs/pkg"
  }
}