n8n-nodes-agent-chat-interface
Version:
N8N custom node that serves a React chat interface as static content
50 lines (49 loc) • 1.19 kB
JSON
{
"name": "n8n-nodes-agent-chat-interface",
"version": "0.0.56",
"description": "N8N custom node that serves a React chat interface as static content",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/lelemm/n8n-nodes-agent-chat-interface.git"
},
"scripts": {
"build": "npm run bundle-assets && tsc && npm run copy-assets-to-dist",
"bundle-assets": "node scripts/bundle-assets.js",
"copy-assets-to-dist": "cp -r assets dist/ && cp chatInterface.svg dist/",
"clean": "rm -rf dist && rm -rf assets",
"dev": "tsc --watch",
"prebuild": "npm run bundle-assets",
"lint": "tsc --noEmit"
},
"n8n": {
"nodes": [
"dist/ChatInterfaceNode.node.js"
],
"credentials": []
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"keywords": [
"n8n",
"n8n-nodes-base",
"chat",
"interface",
"react"
],
"dependencies": {
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^18.0.0",
"n8n-workflow": "latest",
"typescript": "^4.9.0"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}