-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
105 lines (105 loc) · 2.94 KB
/
package.json
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
99
100
101
102
103
104
105
{
"name": "@nodecfdi/sat-ws-descarga-masiva",
"version": "1.0.1",
"description": "Librería para usar el servicio web del SAT de Descarga Masiva",
"type": "module",
"main": "./dist/sat-ws-descarga-masiva.cjs",
"module": "./dist/sat-ws-descarga-masiva.js",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./types": {
"require": "./dist/src/types.cjs",
"import": "./dist/src/types.js"
}
},
"imports": {
"#src/*": "./src/*.js",
"#tests/*": "./tests/*.js"
},
"scripts": {
"clean": "del-cli dist",
"prepare": "is-in-ci || husky",
"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",
"prebuild": "pnpm clean",
"build": "tsup",
"gen:docs": "del-cli docs && typedoc --options typedoc.json",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"postversion": "pnpm format && git add CHANGELOG.md",
"release": "pnpm run build && pnpm changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nodecfdi/eslint-config": "^1.6.7",
"@nodecfdi/prettier-config": "^1.1.1",
"@nodecfdi/tsconfig": "^1.5.0",
"@peculiar/webcrypto": "^1.5.0",
"@types/jsrsasign": "^10.5.14",
"@types/luxon": "^3.4.2",
"@types/node": "^20.13.0",
"@types/node-forge": "^1.3.11",
"@vitest/coverage-istanbul": "^1.6.0",
"conventional-changelog-cli": "^5.0.0",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-define-config": "^2.1.0",
"husky": "^9.0.11",
"is-in-ci": "^0.1.0",
"jest-xml-matcher": "^1.2.0",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"vitest-mock-extended": "^1.3.1",
"xadesjs": "^2.4.4",
"xpath": "^0.0.34"
},
"dependencies": {
"@nodecfdi/credentials": "^2.0.3",
"@nodecfdi/rfc": "^2.0.3",
"jszip": "^3.10.1",
"luxon": "^3.4.4",
"node-forge": "^1.3.1"
},
"peerDependencies": {
"@nodecfdi/cfdi-core": "^0.1.0"
},
"author": "OcelotlStudio <[email protected]>",
"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": "^21 || ^20 || ^19 || ^18 || ^16"
},
"prettier": "@nodecfdi/prettier-config"
}