cea8a7e994
- Add the n8n community node package with credentials, command mapping, direct serve TCP client, and browser-cli protocol crypto helpers. - Cover Ed25519 signing, canonical JSON, PQ transport encryption, request mapping, and security behavior with unit tests. - Harden serve-http with per-address rate limiting, an 8 MB request body cap, and clear warnings when binding plain HTTP beyond loopback. - Stop one-shot --key overrides from being persisted automatically; document explicit remote trust and keep key-management behind the keys policy tier. - Make HTML-to-Markdown conversion safer by bounding tree depth and dropping unsafe link/image URL schemes. - Bump package and extension release metadata to 0.16.3.
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "n8n-nodes-browser-cli",
|
|
"version": "0.2.4",
|
|
"description": "n8n community node that controls a remote browser by talking directly to a browser-cli serve endpoint (Ed25519 + post-quantum encrypted)",
|
|
"keywords": [
|
|
"n8n-community-node-package",
|
|
"browser-cli",
|
|
"browser",
|
|
"automation",
|
|
"n8n"
|
|
],
|
|
"license": "PolyForm-Noncommercial-1.0.0",
|
|
"homepage": "https://chromewebstore.google.com/detail/browser-cli/hekaebjhbhhdbmakimmaklbblbmccahp",
|
|
"author": "Daniel Dolezal",
|
|
"scripts": {
|
|
"build": "tsc && node scripts/copy-assets.mjs",
|
|
"dev": "tsc --watch",
|
|
"test": "node scripts/run-tests.mjs",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"n8n": {
|
|
"n8nNodesApiVersion": 1,
|
|
"credentials": [
|
|
"dist/credentials/BrowserCliApi.credentials.js"
|
|
],
|
|
"nodes": [
|
|
"dist/nodes/BrowserCli/BrowserCli.node.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"esbuild": "^0.28.0",
|
|
"n8n-workflow": "*",
|
|
"typescript": "^5.6.0"
|
|
},
|
|
"peerDependencies": {
|
|
"n8n-workflow": "*"
|
|
},
|
|
"dependencies": {
|
|
"@noble/post-quantum": "^0.6.1"
|
|
}
|
|
}
|