{
  "name": "facturas",
  "version": "0.16.0",
  "description": "SDK de facturación electrónica con ARCA / AFIP para Node.js: facturas, notas de crédito y débito, y Padrón con una sola API.",
  "type": "module",
  "license": "Apache-2.0",
  "author": "Lapyme",
  "homepage": "https://github.com/LaPyme/facturas#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LaPyme/facturas.git"
  },
  "bugs": {
    "url": "https://github.com/LaPyme/facturas/issues"
  },
  "keywords": [
    "arca",
    "afip",
    "argentina",
    "wsaa",
    "wsfe",
    "wsmtxca",
    "padron",
    "facturacion-electronica"
  ],
  "engines": {
    "node": ">=22"
  },
  "sideEffects": false,
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "bin": {
    "facturas": "./bin/facturas.mjs"
  },
  "files": [
    "bin",
    "dist",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.mjs"
    },
    "./errors": {
      "types": "./dist/errors.d.ts",
      "default": "./dist/errors.mjs"
    },
    "./constants": {
      "types": "./dist/constants.d.ts",
      "default": "./dist/constants.mjs"
    },
    "./types": {
      "types": "./dist/types.d.ts",
      "default": "./dist/types.mjs"
    },
    "./wsfe": {
      "types": "./dist/wsfe.d.ts",
      "default": "./dist/wsfe.mjs"
    },
    "./wsmtxca": {
      "types": "./dist/wsmtxca.d.ts",
      "default": "./dist/wsmtxca.mjs"
    },
    "./padron": {
      "types": "./dist/padron.d.ts",
      "default": "./dist/padron.mjs"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "fast-xml-parser": "^5.11.1",
    "node-forge": "^1.4.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.13",
    "@types/node": "^22.20.2",
    "@types/node-forge": "^1.3.14",
    "@vitest/coverage-v8": "^5.0.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "ultracite": "7.11.1",
    "vitest": "^5.0.0"
  },
  "scripts": {
    "build": "tsup --config tsup.config.ts",
    "pack:check": "npm pack --dry-run",
    "typecheck": "tsc --project tsconfig.json --noEmit",
    "test": "vitest run --config vitest.config.ts",
    "test:coverage": "vitest run --config vitest.config.ts --coverage",
    "check": "ultracite check",
    "check:exports": "pnpm build && node scripts/check-package-exports.mjs && tsc --project scripts/tsconfig.package-consumer.json --noEmit",
    "fix": "ultracite fix"
  }
}