-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.72 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "n8n-nodes-robinreach",
"version": "1.0.7",
"description": "An n8n community node for the RobinReach API - the AI-powered social media management platform",
"keywords": [
"n8n-community-node-package",
"n8n",
"robinreach",
"social-media",
"automation",
"ai-content",
"scheduling",
"api",
"twitter",
"instagram",
"facebook",
"linkedin",
"tiktok",
"youtube",
"publishing",
"ai",
"content-generation"
],
"license": "MIT",
"homepage": "https://github.com/RobinReach/RobinReach-N8N#readme",
"author": {
"name": "RobinReach Team",
"email": "support@robinreach.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinReach/RobinReach-N8N.git"
},
"bugs": {
"url": "https://github.com/RobinReach/RobinReach-N8N/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" --fix",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/RobinReachApi.credentials.js"
],
"nodes": [
"dist/nodes/RobinReach/RobinReach.node.js"
]
},
"devDependencies": {
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.41.0",
"gulp": "^4.0.2",
"n8n-workflow": "^1.2.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}