{
  "name": "bcrypt-ts",
  "version": "8.0.1",
  "description": "bcrypt written in typescript",
  "keywords": [
    "bcrypt",
    "bcryptjs"
  ],
  "bugs": {
    "url": "https://github.com/Mister-Hope/bcrypt-ts/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Mr.Hope",
    "email": "mister-hope@outlook.com",
    "url": "https://mister-hope.com"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/Mister-Hope/bcrypt-ts.git"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "browser": "./dist/browser.js",
  "types": "./dist/node.d.ts",
  "exports": {
    ".": {
      "types": "./dist/node.d.ts",
      "browser": "./dist/browser.js",
      "node": "./dist/node.js",
      "default": "./dist/node.js"
    },
    "./browser": {
      "types": "./dist/browser.d.ts",
      "default": "./dist/browser.js"
    },
    "./node": {
      "types": "./dist/node.d.ts",
      "default": "./dist/node.js"
    }
  },
  "devDependencies": {
    "@codecov/rollup-plugin": "1.9.1",
    "@commitlint/cli": "20.3.1",
    "@commitlint/config-conventional": "20.3.1",
    "@types/node": "25.0.10",
    "@vitest/coverage-istanbul": "4.0.18",
    "husky": "9.1.7",
    "nano-staged": "0.9.0",
    "oxfmt": "0.26.0",
    "oxlint": "1.41.0",
    "oxlint-tsgolint": "0.11.1",
    "rimraf": "6.1.2",
    "tsdown": "0.20.1",
    "typescript": "5.9.3",
    "vitest": "4.0.18"
  },
  "nano-staged": {
    "**/*": "oxfmt --no-error-on-unmatched-pattern",
    "*.{js,ts}": "oxlint --fix"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "bench": "vitest bench",
    "build": "tsdown",
    "clean": "rimraf dist",
    "dev": "tsdown -w",
    "lint": "pnpm oxlint --fix && pnpm oxfmt",
    "prepublish": "pnpm clean && pnpm build",
    "test": "vitest --coverage"
  }
}