-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
55
56
57
58
{
"name": "@rstrblstr/n8n-nodes-nxrender",
"version": "0.1.1",
"description": "NxRender n8n Node",
"keywords": [
"n8n-community-node-package",
"n8n-node",
"n8n-plugin"
],
"license": "MIT",
"homepage": "https://ccroww.com",
"author": {
"name": "ccroww",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/rstrblstr/n8n-nodes-nxrender.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"prepare": "npm run build"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/NxrenderCredentialsApi.credentials.js",
"dist/credentials/HttpBinApi.credentials.js"
],
"nodes": [
"dist/nodes/Nxrender/Nxrender.node.js"
]
},
"devDependencies": {
"@nexrender/api": "^1.50.1",
"@nexrender/types": "^1.45.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "~5.45",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-workflow": "*",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"peerDependencies": {
"@nexrender/api": "^1.50.1",
"@nexrender/types": "^1.45.6",
"n8n-workflow": "*"
}
}