n8n-nodes-roundrobin
Version:
n8n node to store and retrieve messages in a round-robin fashion, particularly for LLM conversation loops with multiple personas
63 lines (62 loc) • 1.91 kB
JSON
{
"name": "n8n-nodes-roundrobin",
"version": "0.18.3",
"description": "n8n node to store and retrieve messages in a round-robin fashion, particularly for LLM conversation loops with multiple personas",
"keywords": [
"n8n",
"n8n-community-node-package",
"n8n-node",
"round-robin",
"llm",
"conversation"
],
"license": "MIT",
"homepage": "https://github.com/JamesFincher/n8n-nodes-roundrobin",
"author": {
"name": "James Fincher",
"email": "heartandkarma@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesFincher/n8n-nodes-roundrobin.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && cp -r nodes/RoundRobin/RoundRobin.node.json dist/nodes/RoundRobin/ && cp -r nodes/RoundRobin/roundrobin.svg dist/nodes/RoundRobin/ && cp -r nodes/RoundRobin/RecallMemory.node.json dist/nodes/RoundRobin/ && cp -r nodes/RoundRobin/recallmemory.svg dist/nodes/RoundRobin/",
"dev": "tsc --watch",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint nodes",
"lintfix": "eslint nodes --fix",
"prepublishOnly": "npm run build",
"upgrade-nodes": "node n8n-nodes-upgrade.js",
"publish-package": "npm run build && npm publish"
},
"files": [
"dist",
"index.js",
"README.md",
"LICENSE"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [],
"nodes": [
"dist/nodes/RoundRobin/RoundRobin.node.js",
"dist/nodes/RoundRobin/RecallMemory.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-n8n-nodes-base": "^1.14.0",
"prettier": "^2.8.8",
"typescript": "~4.9.5"
},
"dependencies": {
"n8n-core": "^1.0.0",
"n8n-workflow": "^1.0.0"
}
}