-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
executable file
·100 lines (100 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
{
"name": "nfewizard-io",
"repository": {
"type": "git",
"url": "https://github.com/nfewizard-org/nfewizard-io"
},
"version": "0.2.9",
"description": "NFeWizard-io é uma biblioteca Node.js projetada para simplificar a interação com os webservices da SEFAZ, proporcionando uma solução robusta para automação de processos relacionados à Nota Fiscal Eletrônica (NF-e).",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"author": "maurelima",
"license": "GPL-3.0",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Maurelima?frequency=recurring&sponsor=Maurelima"
},
"scripts": {
"dev": "tsx src/testes.ts",
"test": "jest",
"build": "node build.mjs",
"build:rp": "rollup -c",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs-esm": "yarn build:cjs && yarn build:esm"
},
"files": [
"dist"
],
"keywords": [
"nfe",
"nfce",
"nota fiscal eletrônica",
"dfe",
"sefaz",
"danfe",
"recepção de eventos",
"fiscal",
"eventos nfe",
"epec"
],
"dependencies": {
"@types/ini": "^4.1.0",
"@types/node-forge": "^1.3.11",
"@types/pako": "^2.0.3",
"@types/pdfmake": "^0.2.9",
"@types/pem": "^1.14.4",
"@types/xml2js": "^0.4.14",
"@types/xsd-schema-validator": "^0.5.7",
"axios": "^1.7.7",
"bwip-js": "^4.3.2",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"easy-soap-request": "^5.4.0",
"ini": "^4.1.1",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.2",
"libxmljs": "^1.0.11",
"node-fetch": "^3.3.2",
"node-forge": "^1.3.1",
"nodemailer": "^6.9.14",
"pako": "^2.1.0",
"pdfkit": "^0.15.0",
"pdfmake": "^0.2.10",
"pem": "^1.14.8",
"qrcode": "^1.5.4",
"rollup-plugin-node-builtins": "^2.0.0",
"sha1": "^1.1.1",
"soap": "^1.0.0",
"tsc-alias": "^1.8.10",
"xml-crypto": "^6.0.0",
"xml-js": "^1.6.11",
"xml2js": "^0.6.2",
"xsd-assembler": "^0.0.2",
"xsd-schema-validator": "^0.7.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/nodemailer": "^6.4.15",
"@types/qrcode": "^1.5.5",
"@types/sha1": "^1.1.5",
"jest": "^29.7.0",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild-minify": "^1.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.4",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
}
}