{
  "name": "@countrystatecity/postalcodes",
  "version": "1.0.2",
  "description": "Official postal/ZIP code database with locality search, existence-based validation, and lazy loading",
  "keywords": [
    "country-state-city",
    "postal-code",
    "postcode",
    "zip-code",
    "zipcode",
    "postal codes database",
    "country",
    "state",
    "location",
    "geography",
    "iso",
    "typescript",
    "lazy-loading"
  ],
  "author": "dr5hn",
  "license": "ODbL-1.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dr5hn/countrystatecity-npm.git"
  },
  "homepage": "https://github.com/dr5hn/countrystatecity-npm/tree/main/packages/postalcodes#readme",
  "bugs": {
    "url": "https://github.com/dr5hn/countrystatecity-npm/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./data/*": "./dist/data/*"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "devDependencies": {
    "@types/node": "^20.19.19",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.16"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "generate-data": "node scripts/generate-data.cjs"
  }
}