-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 895 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 895 Bytes
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
{
"name": "n8n-nodes-pdfbro",
"version": "0.1.25",
"description": "Offline PDF utility node for n8n",
"keywords": [
"n8n-community-node"
],
"n8n": {
"nodes": [
"dist/nodes/PdfBro/PdfBro.node.js"
]
},
"license": "MIT",
"author": "Blankarray",
"repository": {
"type": "git",
"url": "https://github.com/blankarrayy/pdfbro"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && copyfiles -u 1 nodes/**/*.svg dist/nodes",
"prepublishOnly": "npm run build",
"dev": "tsc --watch"
},
"files": [
"dist"
],
"dependencies": {
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@types/node": "^16.0.0",
"copyfiles": "^2.4.1",
"n8n-workflow": "*",
"typescript": "^5.0.0"
}
}