-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.53 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
{
"name": "n8n-nodes-polydoc",
"version": "0.1.6",
"description": "n8n community node for PolyDoc - HTML/URL to PDF, screenshots, and EU e-invoices (Factur-X / ZUGFeRD).",
"keywords": [
"n8n-community-node-package",
"polydoc",
"pdf",
"html-to-pdf",
"screenshot",
"e-invoice",
"factur-x",
"zugferd"
],
"license": "MIT",
"homepage": "https://polydoc.tech",
"author": {
"name": "PolyDoc",
"email": "hello@polydoc.tech"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polydoc-tech/n8n-nodes-polydoc.git"
},
"bugs": {
"url": "https://github.com/polydoc-tech/n8n-nodes-polydoc/issues"
},
"engines": {
"node": ">=20.15"
},
"scripts": {
"build": "tsc && node scripts/copy-icons.mjs",
"dev": "tsc --watch",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"test": "vitest run",
"test:integration": "vitest run test/integration.test.ts"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/PolyDocApi.credentials.js"
],
"nodes": [
"dist/nodes/PolyDoc/PolyDoc.node.js"
]
},
"peerDependencies": {
"n8n-workflow": "*"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"n8n-workflow": "*",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^2.1.8"
}
}