forked from peedief/n8n-nodes-peedief
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.3 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@peedief/n8n-nodes-peedief",
"version": "1.0.1",
"description": "n8n community node for generating PDFs with Peedief.",
"keywords": [
"n8n-community-node-package",
"n8n",
"peedief",
"pdf",
"html-to-pdf",
"template-to-pdf"
],
"license": "MIT",
"author": {
"name": "Juned Khatri",
"email": "juned.khatri31@gmail.com",
"url": "https://peedief.com"
},
"homepage": "https://peedief.com",
"repository": {
"type": "git",
"url": "git+https://github.com/peedief/n8n-nodes-peedief.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/nodes/Peedief/Peedief.node.js",
"scripts": {
"build": "tsc && node scripts/copy-assets.mjs",
"dev": "n8n-node dev",
"lint": "n8n-node lint",
"lint:fix": "n8n-node lint --fix",
"release": "n8n-node release",
"prepack": "npm run build"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/PeediefApi.credentials.js"
],
"nodes": [
"dist/nodes/Peedief/Peedief.node.js"
]
},
"devDependencies": {
"@n8n/node-cli": "^0.31.0",
"@types/node": "^22.15.21",
"eslint": "^9.39.4",
"n8n-workflow": "^2.16.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}