n8n-nodes-semantic-splitter-with-context
Version:
Semantic Splitter with Context for n8n with LangChain integration
74 lines (73 loc) • 1.93 kB
JSON
{
"name": "n8n-nodes-semantic-splitter-with-context",
"version": "0.4.1",
"description": "Semantic Splitter with Context for n8n with LangChain integration",
"keywords": [
"n8n-community-node-package",
"text-splitter",
"semantic",
"contextual",
"langchain",
"ai"
],
"license": "MIT",
"homepage": "https://github.com/ResetNetwork/n8n-nodes#readme",
"author": {
"name": "Reset Network",
"url": "https://github.com/ResetNetwork"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ResetNetwork/n8n-nodes.git",
"directory": "n8n-nodes-semantic-splitter-with-context"
},
"bugs": {
"url": "https://github.com/ResetNetwork/n8n-nodes/issues"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes --write",
"lint": "eslint nodes --ext .ts",
"lintfix": "eslint nodes --ext .ts --fix",
"prepublishOnly": "npm run build && npm run lint"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [],
"nodes": [
"dist/nodes/text_splitters/SemanticSplitterWithContext/SemanticSplitterWithContext.node.js"
]
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@langchain/core": "*",
"@langchain/google-genai": "^0.2.12",
"@langchain/textsplitters": "*",
"@types/node": "^22.15.32",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"eslint-plugin-n8n-nodes-base": "^1.16.0",
"globals": "^16.2.0",
"gulp": "^4.0.2",
"n8n-workflow": "*",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@langchain/core": "*",
"@langchain/textsplitters": "*",
"n8n-workflow": "^1.25.1"
},
"engines": {
"node": ">=18.0.0"
}
}