@alexssmusica/node-pdf-nfe 1.2.10 → 1.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/application/helpers/generate-pdf/nfe/cria-layout.js +3 -2
- package/lib/application/helpers/generate-pdf/nfe/gerar-itens.js +3 -3
- package/lib/application/helpers/generate-pdf/nfe/get-fatura-duplicata.js +61 -39
- package/lib/application/helpers/generate-pdf/nfe/get-homologacao.d.ts +1 -1
- package/lib/application/helpers/generate-pdf/nfe/get-homologacao.js +11 -4
- package/lib/application/helpers/generate-pdf/nfe/get-imposto.js +40 -40
- package/lib/application/helpers/generate-pdf/nfe/get-menu-itens.js +33 -32
- package/lib/application/helpers/generate-pdf/nfe/get-nota-cancelada.d.ts +1 -1
- package/lib/application/helpers/generate-pdf/nfe/get-nota-cancelada.js +5 -2
- package/lib/domain/use-cases/pdf/pdf-NFCe.js +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/generate-pdf.d.ts +2 -0
- package/package.json +76 -76
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@alexssmusica/node-pdf-nfe",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "Modulo que auxilia na geração da Danfe NFe e NFCe.",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"types": "lib/index.d.ts",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"author": {
|
|
9
|
-
"name": "Alex Santos de Souza",
|
|
10
|
-
"url": "https://github.com/Alexssmusica/node-pdf-nfe/#readme",
|
|
11
|
-
"email": "alexssmusica@gmail.com"
|
|
12
|
-
},
|
|
13
|
-
"files": [
|
|
14
|
-
"/lib",
|
|
15
|
-
"package.json",
|
|
16
|
-
"README.md"
|
|
17
|
-
],
|
|
18
|
-
"keywords": [
|
|
19
|
-
"NFe",
|
|
20
|
-
"NFCe",
|
|
21
|
-
"Danfe"
|
|
22
|
-
],
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/Alexssmusica/node-pdf-nfe.git"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://danfenfeonline.com.br/gerar-danfe",
|
|
28
|
-
"scripts": {
|
|
29
|
-
"release": "npm run prettier && npm run build && node release.js",
|
|
30
|
-
"clean-lib": "npx rimraf lib",
|
|
31
|
-
"build": "npm run clean-lib && tsc -p tsconfig.json && npm run copy-fonts",
|
|
32
|
-
"prettier": "prettier src/**/*.{js,ts} --write",
|
|
33
|
-
"publish": "
|
|
34
|
-
"type": "tsc --project tsconfig.json",
|
|
35
|
-
"copy-fonts": "copyfiles src/**/*.ttf lib/ -u 1",
|
|
36
|
-
"test-pdf": "nodemon --watch src ./tests/pdf.test.ts",
|
|
37
|
-
"test": "ts-node ./tests/pdf.test.ts"
|
|
38
|
-
},
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"@bwip-js/node": "4.8.0",
|
|
41
|
-
"date-fns": "4.1.0",
|
|
42
|
-
"pdfkit": "0.18.0",
|
|
43
|
-
"qrcode": "1.5.4",
|
|
44
|
-
"xml2js": "0.6.2"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@eslint/eslintrc": "^3.3.3",
|
|
48
|
-
"@eslint/js": "^9.39.2",
|
|
49
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
50
|
-
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
51
|
-
"@semantic-release/git": "^10.0.1",
|
|
52
|
-
"@semantic-release/github": "^12.0.6",
|
|
53
|
-
"@semantic-release/npm": "^13.1.5",
|
|
54
|
-
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
55
|
-
"@types/date-fns": "^2.6.3",
|
|
56
|
-
"@types/node": "^24.10.4",
|
|
57
|
-
"@types/pdfkit": "^0.17.5",
|
|
58
|
-
"@types/qrcode": "^1.5.6",
|
|
59
|
-
"@types/xml2js": "^0.4.14",
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
61
|
-
"@typescript-eslint/parser": "^8.57.1",
|
|
62
|
-
"dotenv": "^17.3.1",
|
|
63
|
-
"eslint": "^9.39.2",
|
|
64
|
-
"eslint-config-prettier": "^10.1.8",
|
|
65
|
-
"eslint-plugin-prettier": "^5.5.5",
|
|
66
|
-
"globals": "^17.4.0",
|
|
67
|
-
"native-copyfiles": "^2.0.1",
|
|
68
|
-
"nodemon": "^3.1.14",
|
|
69
|
-
"prettier": "^3.8.1",
|
|
70
|
-
"rimraf": "^6.1.3",
|
|
71
|
-
"semantic-release": "^25.0.3",
|
|
72
|
-
"ts-node": "^10.9.2",
|
|
73
|
-
"typescript": "^5.9.3",
|
|
74
|
-
"typescript-eslint": "^8.54.0"
|
|
75
|
-
}
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@alexssmusica/node-pdf-nfe",
|
|
3
|
+
"version": "1.2.12",
|
|
4
|
+
"description": "Modulo que auxilia na geração da Danfe NFe e NFCe.",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": {
|
|
9
|
+
"name": "Alex Santos de Souza",
|
|
10
|
+
"url": "https://github.com/Alexssmusica/node-pdf-nfe/#readme",
|
|
11
|
+
"email": "alexssmusica@gmail.com"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"/lib",
|
|
15
|
+
"package.json",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"NFe",
|
|
20
|
+
"NFCe",
|
|
21
|
+
"Danfe"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Alexssmusica/node-pdf-nfe.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://danfenfeonline.com.br/gerar-danfe",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"release": "npm run prettier && npm run build && node release.js",
|
|
30
|
+
"clean-lib": "npx rimraf lib",
|
|
31
|
+
"build": "npm run clean-lib && tsc -p tsconfig.json && npm run copy-fonts",
|
|
32
|
+
"prettier": "prettier src/**/*.{js,ts} --write",
|
|
33
|
+
"publish": "node publish.js",
|
|
34
|
+
"type": "tsc --project tsconfig.json",
|
|
35
|
+
"copy-fonts": "copyfiles src/**/*.ttf lib/ -u 1",
|
|
36
|
+
"test-pdf": "nodemon --watch src ./tests/pdf.test.ts",
|
|
37
|
+
"test": "ts-node ./tests/pdf.test.ts"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@bwip-js/node": "4.8.0",
|
|
41
|
+
"date-fns": "4.1.0",
|
|
42
|
+
"pdfkit": "0.18.0",
|
|
43
|
+
"qrcode": "1.5.4",
|
|
44
|
+
"xml2js": "0.6.2"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@eslint/eslintrc": "^3.3.3",
|
|
48
|
+
"@eslint/js": "^9.39.2",
|
|
49
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
50
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
51
|
+
"@semantic-release/git": "^10.0.1",
|
|
52
|
+
"@semantic-release/github": "^12.0.6",
|
|
53
|
+
"@semantic-release/npm": "^13.1.5",
|
|
54
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
55
|
+
"@types/date-fns": "^2.6.3",
|
|
56
|
+
"@types/node": "^24.10.4",
|
|
57
|
+
"@types/pdfkit": "^0.17.5",
|
|
58
|
+
"@types/qrcode": "^1.5.6",
|
|
59
|
+
"@types/xml2js": "^0.4.14",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
61
|
+
"@typescript-eslint/parser": "^8.57.1",
|
|
62
|
+
"dotenv": "^17.3.1",
|
|
63
|
+
"eslint": "^9.39.2",
|
|
64
|
+
"eslint-config-prettier": "^10.1.8",
|
|
65
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
66
|
+
"globals": "^17.4.0",
|
|
67
|
+
"native-copyfiles": "^2.0.1",
|
|
68
|
+
"nodemon": "^3.1.14",
|
|
69
|
+
"prettier": "^3.8.1",
|
|
70
|
+
"rimraf": "^6.1.3",
|
|
71
|
+
"semantic-release": "^25.0.3",
|
|
72
|
+
"ts-node": "^10.9.2",
|
|
73
|
+
"typescript": "^5.9.3",
|
|
74
|
+
"typescript-eslint": "^8.54.0"
|
|
75
|
+
}
|
|
76
|
+
}
|