52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "n8n-nodes-xmpp",
|
|
"version": "1.0.0",
|
|
"description": "n8n node for XMPP (Prosody) communication",
|
|
"keywords": [
|
|
"n8n-community-node-package"
|
|
],
|
|
"license": "MIT",
|
|
"homepage": "",
|
|
"author": {
|
|
"name": "Ben de Wit",
|
|
"email": "ben@bendwit.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": ""
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "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 -s"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"n8n": {
|
|
"n8nNodesApiVersion": 1,
|
|
"credentials": [
|
|
"dist/credentials/XmppApi.credentials.js"
|
|
],
|
|
"nodes": [
|
|
"dist/nodes/Xmpp/Xmpp.node.js",
|
|
"dist/nodes/XmppTrigger/XmppTrigger.node.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "^5.45.0",
|
|
"eslint-plugin-n8n-nodes-base": "^1.11.0",
|
|
"n8n-workflow": "*",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"dependencies": {
|
|
"@xmpp/client": "^0.13.1",
|
|
"@xmpp/xml": "^0.13.1",
|
|
"@xmpp/jid": "^0.13.1"
|
|
}
|
|
}
|