UNPKG

n8n-nodes-helixdb

Version:

n8n community node to integrate with HelixDB - the time-series database for modern applications

61 lines (60 loc) 1.74 kB
{ "name": "n8n-nodes-helixdb", "version": "0.1.3", "description": "n8n community node to integrate with HelixDB - the time-series database for modern applications", "keywords": [ "n8n-community-node-package", "helixdb", "time-series", "database", "tsdb" ], "license": "MIT", "homepage": "https://github.com/piotrlebryk/n8n-nodes-helixdb", "author": { "name": "Piotr Lebryk", "email": "piotr.lebryk@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/piotrlebryk/n8n-nodes-helixdb.git" }, "engines": { "node": ">=20.15" }, "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 -c .eslintrc.prepublish.js nodes credentials package.json" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/HelixDbApi.credentials.js" ], "nodes": [ "dist/nodes/HelixDb/HelixDb.node.js" ] }, "dependencies": { "helix-ts": "github:HelixDB/helix-ts" }, "devDependencies": { "@typescript-eslint/parser": "^8.32.1", "eslint": "^8.57.1", "eslint-plugin-n8n-nodes-base": "^1.16.3", "gulp": "^5.0.0", "prettier": "^3.5.3", "typescript": "^5.8.3" }, "peerDependencies": { "n8n-workflow": "^1.82.0" } }