n8n-nodes-rag
Version:
Advanced RAG (Retrieval-Augmented Generation) knowledge base nodes for n8n
73 lines (72 loc) • 1.77 kB
JSON
{
"name": "n8n-nodes-rag",
"version": "1.0.0",
"description": "Advanced RAG (Retrieval-Augmented Generation) knowledge base nodes for n8n",
"keywords": [
"n8n-community-node-package",
"rag",
"knowledge-base",
"vector-database",
"embedding",
"retrieval",
"ai",
"nlp"
],
"license": "MIT",
"homepage": "https://github.com/QixYuanmeng/n8n-nodes-rag#readme",
"author": {
"name": "QixYuanmeng",
"email": "3286046540@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/QixYuanmeng/n8n-nodes-rag.git"
},
"engines": {
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
"build": "npx rimraf dist && tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/OpenAiEmbeddingApi.credentials.js",
"dist/credentials/QdrantApi.credentials.js"
],
"nodes": [
"dist/nodes/RagKnowledgeBase/RagKnowledgeBase.node.js",
"dist/nodes/RagRetrieval/RagRetrieval.node.js"
]
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "~8.32.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"dependencies": {
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"crypto": "^1.0.1",
"csv-parser": "^3.0.0",
"mammoth": "^1.6.0",
"pdf-parse": "^1.1.1",
"uuid": "^9.0.1"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}