n8n-nodes-adeu 1.7.1
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/README.md +73 -0
- package/dist/nodes/Adeu/Adeu.node.js +23121 -0
- package/dist/nodes/Adeu/Adeu.node.json +13 -0
- package/dist/nodes/Adeu/adeu.svg +4 -0
- package/package.json +60 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="241" height="241" viewBox="0 0 241 241" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="241" height="241" fill="#1E2028"/>
|
|
3
|
+
<path d="M173.505 155.679C175.621 155.674 177.531 154.795 178.894 153.384C180.257 151.974 181 150.195 181 148.169V93.9063C181 91.8323 180.16 89.9548 178.802 88.5966C177.444 87.2369 175.566 86.3964 173.492 86.3964C171.764 86.3964 168.079 86.3964 164.644 86.3964C162.569 86.3964 160.692 85.5543 159.332 84.1946C157.972 82.8348 157.134 80.9557 157.135 78.8801L157.143 67.4971C157.14 65.4263 156.298 63.552 154.938 62.1954C153.58 60.8389 151.705 60 149.634 60H72.97V86.3916H143.115C145.186 86.3916 145.791 89.215 143.905 90.065L81.7717 116.337C70.1324 121.265 61 132.732 61 147.369C61 166.563 76.5025 181 94.5932 181H149.632C151.888 181 153.911 180.006 155.287 178.432C156.442 177.112 157.142 175.384 157.142 173.492V163.187C157.142 161.113 157.984 159.237 159.342 157.878C160.701 156.518 162.58 155.677 164.656 155.677H173.507L173.505 155.679ZM99.757 154.546C94.4159 154.546 91.1662 150.246 91.1662 146.105C91.1662 142.227 93.6298 139.4 96.2021 138.29L149.112 115.349C150.262 114.833 151.487 115.017 152.408 115.651C153.272 116.247 153.865 117.243 153.866 118.428L153.869 147.036C153.869 149.11 153.029 150.988 151.671 152.347C150.313 153.707 148.434 154.548 146.36 154.548H99.757V154.546Z" fill="#F0F0F0"/>
|
|
4
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-adeu",
|
|
3
|
+
"version": "1.7.1",
|
|
4
|
+
"description": "n8n community node for Adeu — apply AI-driven tracked changes, generate diffs, and sanitize Microsoft Word (.docx) documents.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"n8n",
|
|
8
|
+
"adeu",
|
|
9
|
+
"docx",
|
|
10
|
+
"word",
|
|
11
|
+
"redline",
|
|
12
|
+
"track-changes",
|
|
13
|
+
"diff",
|
|
14
|
+
"openxml"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"homepage": "https://adeu.ai",
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "Mikko Korpela",
|
|
20
|
+
"email": "mikko@adeu.ai"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/dealfluence/adeu.git",
|
|
25
|
+
"directory": "node/packages/n8n-nodes-adeu"
|
|
26
|
+
},
|
|
27
|
+
"main": "dist/nodes/Adeu/Adeu.node.js",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsup && npm run copy-assets",
|
|
30
|
+
"copy-assets": "copyfiles -u 1 \"nodes/**/*.svg\" \"nodes/**/*.json\" dist/nodes/",
|
|
31
|
+
"dev": "tsup --watch",
|
|
32
|
+
"lint": "eslint nodes/**/*.ts",
|
|
33
|
+
"lintfix": "eslint nodes/**/*.ts --fix",
|
|
34
|
+
"test": "vitest run"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"n8n": {
|
|
40
|
+
"n8nNodesApiVersion": 1,
|
|
41
|
+
"nodes": [
|
|
42
|
+
"dist/nodes/Adeu/Adeu.node.js"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"n8n-workflow": "*"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@adeu/core": "^1.7.1",
|
|
50
|
+
"@n8n/eslint-plugin-community-nodes": "^0.15.0",
|
|
51
|
+
"@types/node": "^25.6.2",
|
|
52
|
+
"@typescript-eslint/parser": "^8.35.0",
|
|
53
|
+
"copyfiles": "^2.4.1",
|
|
54
|
+
"eslint": "^9.0.0",
|
|
55
|
+
"n8n-workflow": "^1.0.0",
|
|
56
|
+
"tsup": "^8.0.2",
|
|
57
|
+
"typescript": "^6.0.3",
|
|
58
|
+
"vitest": "^4.1.5"
|
|
59
|
+
}
|
|
60
|
+
}
|