@lrtherond/n8n-nodes-falkordb
Version:
n8n community node for FalkorDB graph database with AI integration
71 lines (70 loc) • 2.02 kB
JSON
{
"name": "@lrtherond/n8n-nodes-falkordb",
"version": "1.0.2",
"description": "n8n community node for FalkorDB graph database with AI integration",
"keywords": [
"n8n-community-node-package",
"n8n",
"falkordb",
"graph",
"database",
"cypher",
"ai",
"memory",
"vector-store",
"langchain"
],
"license": "MIT",
"homepage": "https://github.com/lrtherond/n8n-nodes-falkordb",
"author": {
"name": "Laurent Therond",
"email": "lrtherond@a7ar.com"
},
"repository": {
"type": "git",
"url": "https://github.com/lrtherond/n8n-nodes-falkordb.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/FalkorDbApi.credentials.js"
],
"nodes": [
"dist/nodes/FalkorDb/FalkorDbKnowledgeGraph.node.js"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~8.32.0",
"@typescript-eslint/parser": "~8.32.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"n8n-workflow": "*",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.2"
},
"dependencies": {
"@langchain/core": "^0.3.0",
"@langchain/community": "^0.3.0",
"langchain": "^0.3.0"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}