{
  "name": "core-zipcode-br",
  "version": "1.0.3",
  "description": "A Brazilian ZIP code validation and lookup library. Provides address lookup from various Brazilian CEP services and validates ZIP codes based on the Brazilian format.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "dev": "ts-node-dev --respawn src/index.ts",
    "start": "ts-node-dev src/index.ts",
    "build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint 'src/**/*.{ts,tsx}' --fix"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "cep",
    "brazilian-cep",
    "zipcode",
    "brasil",
    "cep-validation",
    "address-lookup",
    "typescript",
    "nodejs"
  ],
  "author": "Luan Gustavo <https://github.com/luangustavofm>",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/luangustavofm/core-zipcode-br.git"
  },
  "dependencies": {
    "axios": "^1.7.7",
    "typescript": "^5.6.3"
  },
  "devDependencies": {
    "@types/jest": "^29.5.13",
    "@types/node": "^22.7.5",
    "@typescript-eslint/eslint-plugin": "^8.9.0",
    "@typescript-eslint/parser": "^8.9.0",
    "eslint": "^9.12.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "ts-node-dev": "^2.0.0"
  }
}