-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "fiscalapi",
"version": "4.0.360",
"description": "SDK de Node.js para Fiscalapi",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist/",
"README.md",
"fiscalapi.ico",
"fiscalapi.png",
"LICENSE.txt"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:package-json",
"build:esm": "tsc -p tsconfig.esm.json && node scripts/fix-esm-imports.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:package-json": "node -e \"require('fs').writeFileSync('dist/cjs/package.json','{\\\"type\\\":\\\"commonjs\\\"}');require('fs').writeFileSync('dist/esm/package.json','{\\\"type\\\":\\\"module\\\"}')\"",
"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": {
".": {
"types": "./dist/cjs/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"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",
"form-data": "^4.0.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.3"
}
}