-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.63 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "facturapi",
"version": "4.15.0",
"description": "SDK oficial de Facturapi para Node.js y navegadores. Integra facturación electrónica en México (CFDI) de forma simple y obtén una perspectiva fiscal completa de tu operación, con búsquedas indexadas, envío de documentos y trazabilidad.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "npm@10.9.2",
"scripts": {
"precommit": "lint-staged",
"build": "vite build && tsc --emitDeclarationOnly",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test:node": "vitest run --config vitest.node.config.ts",
"test:web": "vitest run --config vitest.web.config.ts",
"test:browser": "npm run build && playwright test",
"test:unit": "npm run test:node && npm run test:web",
"test:types": "tsd",
"test": "npm run build && npm run test:unit && npm run test:types",
"ci": "npm run test"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FacturAPI/facturapi-node.git"
},
"keywords": [
"cfdi",
"factura",
"factura-electronica",
"facturacion-electronica",
"comprobante-fiscal-digital",
"sat-mexico",
"mexico",
"sat",
"facturación",
"facturapi"
],
"author": "Facturación Espacial <contacto@facturapi.io>",
"contributors": [
{
"name": "Raúl Sánchez"
},
{
"name": "Javier Rosas"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/facturapi/facturapi-node/issues"
},
"homepage": "https://github.com/facturapi/facturapi-node#readme",
"lint-staged": {
"*.{js,cjs,mjs,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsd": "^0.33.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}