n8n-nodes-pdfbro 0.1.0 → 0.1.2

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.
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#ff0000" width="24px" height="24px"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z"/></svg>
package/package.json CHANGED
@@ -1,10 +1,15 @@
1
1
  {
2
2
  "name": "n8n-nodes-pdfbro",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Offline PDF utility node for n8n",
5
5
  "keywords": [
6
6
  "n8n-community-node"
7
7
  ],
8
+ "n8n": {
9
+ "nodes": [
10
+ "dist/nodes/PdfUtils/PdfUtils.node.js"
11
+ ]
12
+ },
8
13
  "license": "MIT",
9
14
  "author": "Blankarray",
10
15
  "repository": {
@@ -13,7 +18,7 @@
13
18
  },
14
19
  "main": "dist/index.js",
15
20
  "scripts": {
16
- "build": "tsc",
21
+ "build": "tsc && copyfiles -u 1 nodes/**/*.svg dist",
17
22
  "dev": "tsc --watch"
18
23
  },
19
24
  "files": [
@@ -24,8 +29,9 @@
24
29
  "pdf-parse": "^1.1.1"
25
30
  },
26
31
  "devDependencies": {
32
+ "@types/node": "^16.0.0",
33
+ "copyfiles": "^2.4.1",
27
34
  "n8n-workflow": "*",
28
- "typescript": "^5.0.0",
29
- "@types/node": "^16.0.0"
35
+ "typescript": "^5.0.0"
30
36
  }
31
37
  }