@nodecfdi/sat-ws-descarga-masiva
Version:
Librería para usar el servicio web del SAT de Descarga Masiva
128 lines • 3.4 kB
JSON
{
"name": "@nodecfdi/sat-ws-descarga-masiva",
"description": "Librería para usar el servicio web del SAT de Descarga Masiva",
"version": "2.0.0",
"type": "module",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js"
},
"imports": {
"#src/*": "./src/*.js",
"#tests/*": "./tests/*.js"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@nodecfdi/eslint-config": "^3.3.0",
"@nodecfdi/prettier-config": "^1.1.1",
"@nodecfdi/tsconfig": "^1.5.0",
"@peculiar/webcrypto": "^1.5.0",
"@types/jsrsasign": "^10.5.14",
"@types/luxon": "^3.6.2",
"@types/node": "^22.15.29",
"@vitest/coverage-istanbul": "^3.1.4",
"auto-changelog": "^2.5.0",
"del-cli": "^6.0.0",
"eslint": "^9.27.0",
"husky": "^9.0.11",
"is-in-ci": "^1.0.0",
"jest-xml-matcher": "^1.2.0",
"np": "^10.2.0",
"prettier": "^3.3.0",
"tsup": "^8.0.2",
"typedoc": "^0.28.5",
"typedoc-github-theme": "^0.3.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4",
"vitest-mock-extended": "^3.1.0",
"xadesjs": "^2.4.4",
"xpath": "^0.0.34"
},
"dependencies": {
"@nodecfdi/credentials": "^3.2.0",
"@nodecfdi/rfc": "^2.0.3",
"jszip": "^3.10.1"
},
"peerDependencies": {
"@nodecfdi/cfdi-core": "^1.0.0",
"luxon": "^3.6.1"
},
"author": "Misael Limon <misael.limon@dinfatec.com>",
"license": "MIT",
"homepage": "https://github.com/nodecfdi/sat-ws-descarga-masiva",
"repository": {
"type": "git",
"url": "git+https://github.com/nodecfdi/sat-ws-descarga-masiva"
},
"bugs": {
"url": "https://github.com/nodecfdi/sat-ws-descarga-masiva/issues"
},
"keywords": [
"sat",
"cfdi",
"download",
"descarga",
"webservice"
],
"engines": {
"node": ">=18"
},
"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"
},
"tsup": {
"entry": [
"./index.ts",
"./src/types.ts"
],
"outDir": "./build",
"clean": false,
"format": "esm",
"dts": true,
"target": "esnext",
"platform": "node"
},
"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",
"tool:code": "pnpm run lint:check && pnpm run format:check && pnpm run typecheck",
"tool:build": "pnpm run tool:code && pnpm run test:run",
"clean": "del-cli build",
"gen:docs": "typedoc --options typedoc.json",
"changelog": "auto-changelog -p && git add CHANGELOG.md",
"prebuild": "pnpm run lint:check && pnpm run typecheck",
"build": "pnpm run clean && tsup",
"postbuild": "pnpm run gen:docs && git add docs/*",
"release": "np",
"version": "pnpm run build && pnpm run changelog"
}
}