fiscalapi
Version:
SDK de Node.js para FiscalAPI
65 lines (64 loc) • 1.53 kB
JSON
{
"name": "fiscalapi",
"version": "4.0.141",
"description": "SDK de Node.js para FiscalAPI",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"fiscalapi.ico",
"fiscalapi.png",
"LICENSE.txt"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"test": "jest",
"lint": "eslint 'src/**/*.ts'",
"prepare": "npm run build",
"main": "ts-node examples/main.ts"
},
"keywords": [
"fiscalapi",
"cfdi",
"factura",
"facturación",
"sat",
"mexico"
],
"author": "FISCAL API S DE R.L DE C.V",
"license": "MPL-2.0",
"engines": {
"node": ">=12.0.0"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/FiscalAPI/fiscalapi-node"
},
"homepage": "https://www.fiscalapi.com",
"bugs": {
"url": "https://github.com/FiscalAPI/fiscalapi-node/issues"
},
"dependencies": {
"axios": "^1.8.4",
"luxon": "^3.6.0"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.14",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}