Files
formbricks-formbricks/packages/n8n/package.json
T
Pratik aa79c4c319 Add n8n Integration to Formbricks (#733)
* add n8n integration

* add n8n inside packages

* added documentation for n8n setup

* add formbricks scope to package

* add changeset config for automatic package deployment

* remove old docs navigation

* add new package README

* update prettier config & reformat

---------

Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2023-09-04 12:14:31 +09:00

56 lines
1.4 KiB
JSON

{
"name": "@formbricks/n8n-nodes-formbricks",
"version": "0.1.0",
"description": "A n8n node to connect Formbricks and send survey data to hundreds of other apps.",
"keywords": [
"n8n-community-node-package",
"n8n",
"trigger",
"Formbricks",
"n8n-node",
"surveys",
"experience management"
],
"license": "MIT",
"homepage": "https://formbricks.com",
"author": {
"name": "PratikAwaik",
"email": "pratikawaik125@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/formbricks/formbricks"
},
"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/FormbricksApi.credentials.js"
],
"nodes": [
"dist/nodes/Formbricks/Formbricks.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/request-promise-native": "~1.0.15",
"@typescript-eslint/parser": "~5.45",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-core": "*",
"n8n-workflow": "*",
"typescript": "~4.8.4"
}
}