{
  "name": "check-password-complexity",
  "version": "1.4.15",
  "description": "A simple javascript utility to check password strength and complexity",
  "keywords": [
    "password",
    "password-strength",
    "password-complexity",
    "strong-password",
    "password-validation",
    "zod",
    "yup",
    "password-checker",
    "password-strength",
    "password-validator",
    "strong-password",
    "secure password"
  ],
  "homepage": "https://github.com/tiavina-mika/check-password-complexity",
  "bugs": {
    "url": "https://github.com/tiavina-mika/check-password-complexity/issues"
  },
  "author": {
    "name": "Tiavina Michael Ralainirina",
    "email": "tiavinamika@gmail.com",
    "github": "https://github.com/tiavina-mika"
  },
  "license": "MIT",
  "type": "module",
  "types": "./dist/index.d.ts",
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/esm/index.js"
    }
  },
  "files": [
    "/dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "clean": "rimraf dist",
    "dev": "vite",
    "build": "yarn clean && tsc --project tsconfig.build.json && tsc --project tsconfig.build-esm.json && yarn copy-files && yarn copy-files-esm && yarn fixImportExtension",
    "prepare": "npm run build",
    "preview": "vite preview",
    "type:check": "tsc --noEmit",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint:check": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx src",
    "lint": "npx eslint",
    "md-link:check": "markdown-link-check -v -p README.md -v -p CONTRIBUTING.md -v -p .github/**/*.md -c .markdown-link-check-config.json",
    "spell:check": "cspell \"{README.md,CONTRIBUTING.md,.github/*.md}\"",
    "visualize": "npx vite-bundle-visualizer",
    "publish": "yarn build && yarn npm publish",
    "clean-cache": "yarn cache clean --all",
    "copy-files": "copyfiles -u 1 src/*types.d.ts dist/",
    "copy-files-esm": "copyfiles -u 1 src/*types.d.ts dist/esm",
    "fixImportExtension": "ts-add-js-extension --dir=dist",
    "example": "cd example && yarn upgrade",
    "test": "jest",
    "test:watch": "jest watch",
    "test:coverage": "jest --coverage"
  },
  "peerDependencies": {
    "react": "^16.8.0 || ^17.0.2 || ^18.2.0",
    "react-dom": "^16.8.0 || ^17.0.2 || ^18.2.0"
  },
  "devDependencies": {
    "@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
    "@eslint/compat": "^1.1.0",
    "@eslint/js": "^9.4.0",
    "@types/eslint__js": "^8.42.3",
    "@types/jest": "^29.5.12",
    "@types/react": "^18.2.43",
    "@types/react-dom": "^18.2.17",
    "@typescript-eslint/eslint-plugin": "^7.13.0",
    "@typescript-eslint/parser": "^7.13.0",
    "@vitejs/plugin-react": "^4.2.1",
    "babel-plugin-module-resolver": "^5.0.0",
    "copyfiles": "^2.4.1",
    "cspell": "^6.31.1",
    "eslint": "^9.4.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-airbnb-typescript": "^18.0.0",
    "eslint-config-next": "^14.2.3",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jest": "^28.6.0",
    "eslint-plugin-prefer-arrow-functions": "^3.3.2",
    "eslint-plugin-prettier": "^5.1.3",
    "eslint-plugin-react": "^7.34.2",
    "eslint-plugin-react-hooks": "^4.6.2",
    "eslint-plugin-react-refresh": "^0.4.7",
    "jest": "^29.7.0",
    "markdown-link-check": "^3.12.1",
    "prettier": "^3.2.2",
    "prettier-plugin-organize-imports": "^3.2.4",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^5.0.5",
    "ts-add-js-extension": "^1.6.4",
    "ts-jest": "^29.1.4",
    "typescript": "^5.2.2",
    "typescript-eslint": "8.0.0-alpha.20",
    "vite": "5.0.8",
    "vite-tsconfig-paths": "^4.3.1"
  },
  "packageManager": "yarn@4.2.1"
}