UNPKG

@nodecfdi/csf-pdf-scraper

Version:

Obtiene la constancia fiscal actual de una persona moral o física

121 lines 3.03 kB
{ "name": "@nodecfdi/csf-pdf-scraper", "description": "Obtiene la constancia fiscal actual de una persona moral o física", "version": "0.0.2", "type": "module", "module": "./dist/esm/index.js", "files": [ "dist" ], "exports": { ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.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/credentials": "^3.2.0", "@nodecfdi/eslint-config": "^2.2.3", "@nodecfdi/image-captcha-resolver": "0.0.1-0", "@nodecfdi/prettier-config": "^1.2.0", "@nodecfdi/sat-scrapers-auth": "^0.1.1", "@nodecfdi/tsconfig": "^1.7.2", "@types/luxon": "^3.4.2", "@types/node": "^22.8.7", "@vitest/coverage-istanbul": "^2.1.4", "auto-changelog": "^2.5.0", "eslint": "^9.14.0", "husky": "^9.1.6", "is-in-ci": "^1.0.0", "np": "^10.0.7", "prettier": "^3.3.3", "tshy": "^3.0.2", "typedoc": "^0.26.11", "typescript": "^5.6.3", "vitest": "^2.1.4" }, "peerDependencies": { "@nodecfdi/credentials": "^3.2.0", "@nodecfdi/image-captcha-resolver": "0.0.1-0", "@nodecfdi/sat-scrapers-auth": "^0.1.1" }, "author": "Fernando Isidro <luffynando@gmail.com>", "license": "MIT", "homepage": "https://github.com/nodecfdi/csf-pdf-scraper", "repository": { "type": "git", "url": "git+https://github.com/nodecfdi/csf-pdf-scraper.git" }, "bugs": { "url": "https://github.com/nodecfdi/csf-pdf-scraper/issues" }, "keywords": [ "sat", "mexican", "scraper", "mexico", "csf", "pdf" ], "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", "yolo": true }, "tshy": { "selfLink": false, "dialects": [ "esm" ], "exports": { ".": "./src/index.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" } }