{
  "name": "card-bin-db",
  "version": "1.0.2",
  "description": "A fast and lightweight library for querying bank card information (issuer, brand, type, country) based on BIN (Bank Identification Number).",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "files": [
    "dist/**/*",
    "bindb/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup",
    "build:watch": "tsup --watch",
    "test": "bun test",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/checkv4/card-bin-db.git"
  },
  "homepage": "https://github.com/checkv4/card-bin-db#readme",
  "bugs": {
    "url": "https://github.com/checkv4/card-bin-db/issues"
  },
  "keywords": [
    "bin",
    "bank-identification-number",
    "card-lookup",
    "bank-card",
    "credit-card",
    "debit-card",
    "payment-card",
    "card-info",
    "issuer",
    "card-brand",
    "visa",
    "mastercard",
    "amex",
    "discover"
  ],
  "author": {
    "name": "checkv4",
    "url": "https://github.com/checkv4"
  },
  "license": "MIT",
  "engines": {
    "node": ">=14.0.0"
  },
  "devDependencies": {
    "@types/async": "^3.2.25",
    "@types/bun": "latest",
    "@types/node": "^20.0.0",
    "tsup": "^8.5.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "world-countries": "^5.1.0"
  }
}
