{
  "name": "@nodecfdi/cfdi-cleaner",
  "description": "Librería para limpiar comprobantes fiscales digitales v3.3 y v4.0",
  "version": "2.3.1",
  "type": "module",
  "main": "./dist/commonjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/commonjs/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/commonjs/index.d.ts",
        "default": "./dist/commonjs/index.js"
      }
    },
    "./types": {
      "import": {
        "types": "./dist/esm/types.d.ts",
        "default": "./dist/esm/types.js"
      },
      "require": {
        "types": "./dist/commonjs/types.d.ts",
        "default": "./dist/commonjs/types.js"
      }
    }
  },
  "imports": {
    "#src/*": "./src/*.js"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.5.0",
    "@commitlint/config-conventional": "^19.5.0",
    "@jsprismarine/typedoc-material-theme": "^1.0.4",
    "@nodecfdi/cfdi-core": "^0.6.1",
    "@nodecfdi/eslint-config": "^2.1.2",
    "@nodecfdi/prettier-config": "^1.2.0",
    "@nodecfdi/tsconfig": "^1.7.2",
    "@types/node": "^20.16.11",
    "@vitest/coverage-istanbul": "^2.1.3",
    "auto-changelog": "^2.5.0",
    "eslint": "^9.12.0",
    "husky": "^9.1.6",
    "is-in-ci": "^1.0.0",
    "jest-xml-matcher": "^1.2.0",
    "np": "^10.0.7",
    "prettier": "^3.3.3",
    "tshy": "^3.0.2",
    "typedoc": "^0.26.9",
    "typescript": "^5.6.3",
    "vitest": "^2.1.3"
  },
  "dependencies": {
    "ts-mixer": "^6.0.4",
    "xpath": "^0.0.34"
  },
  "peerDependencies": {
    "@nodecfdi/cfdi-core": ">=0.6.1"
  },
  "author": "Fernando Isidro <luffynando@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/nodecfdi/cfdi-cleaner",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nodecfdi/cfdi-cleaner.git"
  },
  "bugs": {
    "url": "https://github.com/nodecfdi/cfdi-cleaner/issues"
  },
  "keywords": [
    "cfdi",
    "SAT",
    "CFDI",
    "xml",
    "clean"
  ],
  "engines": {
    "node": ">=18 <=22 || ^16"
  },
  "browserslist": [
    "defaults",
    "not IE 11"
  ],
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "prettier": "@nodecfdi/prettier-config",
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "auto-changelog": {
    "template": "keepachangelog",
    "hideCredit": true
  },
  "np": {
    "message": "chore(release): :tada: %s",
    "tag": "latest",
    "branch": "main",
    "testScript": "test:run"
  },
  "tshy": {
    "selfLink": false,
    "exports": {
      ".": "./src/index.ts",
      "./types": "./src/types.ts"
    }
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "lint": "eslint . --fix",
    "lint:check": "eslint .",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "gen:docs": "typedoc --options typedoc.json",
    "changelog": "auto-changelog -p && git add CHANGELOG.md",
    "prebuild": "pnpm lint:check && pnpm typecheck",
    "build": "tshy",
    "postbuild": "pnpm run gen:docs && git add docs/*",
    "release": "np",
    "version": "pnpm run build && pnpm run changelog"
  }
}