{
  "name": "@lacussoft/cpf-fmt",
  "version": "3.0.0",
  "description": "Utility to format CPF (Brazilian Individual's Taxpayer ID)",
  "license": "MIT",
  "author": {
    "name": "Julio L. Muller",
    "url": "https://github.com/juliolmuller"
  },
  "keywords": [
    "cpf",
    "format",
    "formatting",
    "formatar",
    "mascara",
    "mask",
    "pt-br",
    "br"
  ],
  "homepage": "https://cpf-utils.vercel.app/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LacusSolutions/br-utils-js.git"
  },
  "bugs": {
    "url": "https://github.com/LacusSolutions/br-utils-js/issues"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "README.pt.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "module": "./dist/index.mjs",
  "main": "./dist/index.cjs",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "scripts": {
    "build": "rollup --config",
    "type-check": "tsc",
    "lint": "bun run lint:ci --fix",
    "lint:ci": "eslint src/ tests/ rollup.config.mjs",
    "test": "bun run test:ci --coverage --coverage-reporter=lcov --coverage-dir=tests/__coverage__",
    "test:ci": "bun test --only-failures"
  },
  "dependencies": {
    "@lacussoft/utils": "1.0.0"
  }
}
