n8n-nodes-docuparse 0.1.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/README.md +92 -0
- package/dist/nodes/DocuParse/DocuParse.node.js +607 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-docuparse",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Full-featured document parsing node for n8n — PDF, DOCX, XLSX, PPTX, images, OCR, markdown output. No native dependencies.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"n8n",
|
|
8
|
+
"pdf",
|
|
9
|
+
"parser",
|
|
10
|
+
"ocr",
|
|
11
|
+
"document-parsing",
|
|
12
|
+
"markdown",
|
|
13
|
+
"text-extraction",
|
|
14
|
+
"docx",
|
|
15
|
+
"xlsx"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "raevon",
|
|
19
|
+
"main": "dist/index.js",
|
|
20
|
+
"n8n": {
|
|
21
|
+
"nodes": [
|
|
22
|
+
"dist/nodes/DocuParse/DocuParse.node.js"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "esbuild nodes/DocuParse/DocuParse.node.ts --bundle --platform=node --format=cjs --outfile=dist/nodes/DocuParse/DocuParse.node.js --external:n8n-workflow --external:tesseract.js --external:pdfjs-dist --external:canvas --minify --target=node18",
|
|
27
|
+
"dev": "npm run build -- --watch",
|
|
28
|
+
"prepublishOnly": "npm run build"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"README.md"
|
|
33
|
+
],
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"n8n-workflow": "*"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"canvas": "^3.2.3",
|
|
39
|
+
"cheerio": "^1.0.0",
|
|
40
|
+
"csv-parse": "^5.5.0",
|
|
41
|
+
"mammoth": "^1.8.0",
|
|
42
|
+
"pdf-lib": "^1.17.1",
|
|
43
|
+
"pdfjs-dist": "^4.0.0",
|
|
44
|
+
"tesseract.js": "^5.0.0",
|
|
45
|
+
"xlsx": "^0.18.5"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^22.0.0",
|
|
49
|
+
"esbuild": "^0.25.0",
|
|
50
|
+
"n8n-workflow": "*",
|
|
51
|
+
"typescript": "~5.9.2"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=18.0.0"
|
|
55
|
+
}
|
|
56
|
+
}
|