n8n-nodes-h2i 1.0.0
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/LICENSE +21 -0
- package/README.md +144 -0
- package/dist/credentials/DavixH2IApi.credentials.d.ts +6 -0
- package/dist/credentials/DavixH2IApi.credentials.js +25 -0
- package/dist/nodes/DavixH2I/DavixH2I.node.d.ts +5 -0
- package/dist/nodes/DavixH2I/DavixH2I.node.js +572 -0
- package/dist/nodes/DavixH2I/GenericFunctions.d.ts +7 -0
- package/dist/nodes/DavixH2I/GenericFunctions.js +37 -0
- package/dist/nodes/DavixH2I/davixH2I.svg +394 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-h2i",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Davix H2I (PixLab) community node for n8n: H2I, Image, PDF, Tools endpoints",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"n8n",
|
|
9
|
+
"davix",
|
|
10
|
+
"pixlab",
|
|
11
|
+
"h2i"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://h2i.davix.dev",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Davix"
|
|
16
|
+
},
|
|
17
|
+
"main": "dist/index.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "n8n-node build && npm run copy:icons",
|
|
24
|
+
"copy:icons": "node -e \"const fs=require('fs'); const path=require('path'); const src='nodes/DavixH2I/davixH2I.svg'; const dst='dist/nodes/DavixH2I/davixH2I.svg'; fs.mkdirSync(path.dirname(dst), {recursive:true}); fs.copyFileSync(src,dst); console.log('Copied icon:', src, '->', dst);\"",
|
|
25
|
+
"dev": "n8n-node dev",
|
|
26
|
+
"lint": "n8n-node lint",
|
|
27
|
+
"lint:fix": "n8n-node lint --fix"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@n8n/node-cli": "^0.17.0",
|
|
31
|
+
"@types/node": "^20.0.0",
|
|
32
|
+
"typescript": "^5.5.0"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"n8n-workflow": "*"
|
|
36
|
+
},
|
|
37
|
+
"n8n": {
|
|
38
|
+
"credentials": [
|
|
39
|
+
"dist/credentials/DavixH2IApi.credentials.js"
|
|
40
|
+
],
|
|
41
|
+
"nodes": [
|
|
42
|
+
"dist/nodes/DavixH2I/DavixH2I.node.js"
|
|
43
|
+
]
|
|
44
|
+
}
|
|
45
|
+
}
|