{
  "name": "validador-cnpj-cpf",
  "version": "1.3.0",
  "description": "Brazilian CPF/CNPJ validator (supports alphanumeric CNPJ / CNPJ alfanumerico) - validador de CPF/CNPJ (suporta CNPJ alfanumérico)",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "bin": {
    "validate-cnpj": "./src/validate-cnpj.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "scripts": {
    "build": "node build.js",
    "build:verify": "npm run build && node -e \"const p = require('./package.json'); const fs = require('fs'); const has = (f) => fs.existsSync(f); if(!has(p.main) || !has(p.module) || !has(p.types)) throw new Error('Missing build artifacts');\"",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "lint": "eslint 'src/**/*.ts'",
    "lint:fix": "eslint 'src/**/*.ts' --fix",
    "format": "prettier --write 'src/**/*.ts'",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "validador",
    "cpf",
    "cpf-validator",
    "cnpj",
    "cnpj-validator",
    "cnpj-alfanumerico",
    "alfanumerico",
    "alphanumeric",
    "validator",
    "brasil",
    "brazil",
    "brazilian",
    "pt-br",
    "document",
    "validation",
    "typescript"
  ],
  "author": "Christopher Pinto - @chrisJSeng",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chrisJSeng/validador-cpf-cnpj.git"
  },
  "bugs": {
    "url": "https://github.com/chrisJSeng/validador-cpf-cnpj/issues"
  },
  "homepage": "https://github.com/chrisJSeng/validador-cpf-cnpj#readme",
  "engines": {
    "node": ">=24.13.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.11",
    "@types/node": "^24.10.13",
    "@typescript-eslint/eslint-plugin": "^6.17.0",
    "@typescript-eslint/parser": "^6.17.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  },
  "files": [
    "dist"
  ]
}
