n8n-nodes-graphiti-memory
Version:
Community node for self-hosted Graphiti (Zep) memory
52 lines • 1.14 kB
JSON
{
"name": "n8n-nodes-graphiti-memory",
"version": "0.1.2",
"description": "Community node for self-hosted Graphiti (Zep) memory",
"author": "Seu Nome",
"license": "MIT",
"keywords": [
"n8n-community-node-package",
"n8n-nodes",
"graphiti",
"zep",
"memory"
],
"engines": {
"node": ">=20.15"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/GraphitiApi.credentials.js"
],
"nodes": [
"dist/nodes/GraphitiMemory.node.js"
]
},
"scripts": {
"build": "rimraf dist && tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^1.6.0"
},
"peerDependencies": {
"n8n-workflow": "^1.82.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"n8n-workflow": "1.82.0",
"rimraf": "^5.0.0",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/seu-usuario/n8n-nodes-graphiti-memory.git"
}
}