{
  "name": "persian-names",
  "version": "2.0.0",
  "description": "Fast, dependency-free Persian and Arabic first-name gender detection for JavaScript and TypeScript",
  "license": "MIT",
  "author": "MohammadReza HejaziRad",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mohammadhejazirad/persian-names.git"
  },
  "bugs": {
    "url": "https://github.com/mohammadhejazirad/persian-names/issues"
  },
  "homepage": "https://github.com/mohammadhejazirad/persian-names#readme",
  "keywords": [
    "persian",
    "farsi",
    "arabic",
    "iranian",
    "name",
    "first-name",
    "gender",
    "gender-detection",
    "typescript"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/index.global.js",
  "jsdelivr": "./dist/index.global.js",
  "exports": {
    ".": {
      "browser": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=14.0.0"
  },
  "packageManager": "npm@11.13.0",
  "scripts": {
    "generate": "node scripts/generate-data.mjs",
    "build": "npm run generate && node scripts/build.mjs && tsc -p tsconfig.build.json && node scripts/create-cjs-types.mjs",
    "test": "npm run build && npm run test:runtime && npm run test:types",
    "test:runtime": "node --test test/*.test.mjs",
    "test:types": "tsc -p test/tsconfig.json",
    "size": "node scripts/check-size.mjs",
    "lint:package": "publint --pack false && attw --pack . --profile node16",
    "check": "npm test && npm run size && npm run lint:package",
    "benchmark": "npm run build && node benchmark/lookup.mjs",
    "prepack": "npm run build",
    "prepublishOnly": "npm run check"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.5",
    "esbuild": "^0.28.2",
    "publint": "^0.3.24",
    "typescript": "^7.0.2"
  }
}
