generated from n8n-io/n8n-nodes-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.46 KB
/
package.json
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
{
"name": "n8n-nodes-carbonejs",
"version": "1.1.2",
"description": "A Carbone JS node that renders Word templates on n8n.io",
"keywords": [
"n8n-community-node-package"
],
"license": "SEE LICENSE IN LICENSE_CARBONE.md AND SEE LICENSE IN LICENSE_N8N.md",
"homepage": "https://github.com/jreyesr/n8n-nodes-carbonejs",
"author": {
"name": "jreyesr",
"url": "https://github.com/jreyesr"
},
"repository": {
"type": "git",
"url": "https://github.com/jreyesr/n8n-nodes-carbonejs.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes --write",
"lint": "eslint nodes package.json",
"lintfix": "eslint nodes package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes package.json"
},
"files": [
"dist",
"images"
],
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/CarboneNode/CarboneNode.node.js",
"dist/nodes/PdfMerge/PdfMerge.node.js"
]
},
"devDependencies": {
"@types/carbone": "^3.2.1",
"@types/express": "^4.17.6",
"@types/request-promise-native": "~1.0.15",
"@typescript-eslint/parser": "~5.45",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-core": "*",
"n8n-workflow": "*",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"dependencies": {
"carbone": "^3.5.5",
"pdf-lib": "^1.17.1"
}
}