-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "redocmx",
"version": "0.0.7",
"description": "Conversión CFDI a PDF",
"main": "cjs/redoc.cjs.js",
"types": "types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"default": {
"import": "./esm/redoc.esm.js",
"require": "./cjs/redoc.cjs.js"
}
},
"type": "module",
"private": false,
"engines": {
"node": ">= 18.0.0"
},
"keywords": [
"cfdi a pdf",
"cfdi to pdf",
"sat mexico",
"conversión cfdi a pdf",
"cfdi",
"personaliza cfdi a pdf",
"redoc.mx",
"redocmx"
],
"scripts": {
"build": "npm run extract-version && npm run build-esm && npm run build-cjs",
"build-esm": "mkdir -p esm && tsc -p tsconfig.esm.json && echo '{\"type\":\"module\"}' > esm/package.json",
"build-cjs": "mkdir -p cjs && tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > cjs/package.json",
"extract-version": "jq -r '.version' package.json | awk '{print \"export const version = \\\"\"$0\"\\\";\"}' > src/version.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "redoc.mx"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/redocmx/client-node.git"
},
"homepage": "https://github.com/redocmx/client-node#readme",
"bugs": {
"url": "https://github.com/redocmx/client-node/issues"
},
"dependencies": {
"@types/node": "^20.14.9"
},
"devDependencies": {
"typescript": "^5.5.3"
}
}