@vybit/n8n-nodes-vybit 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vybit/n8n-nodes-vybit",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Push notifications with personalized sounds - n8n community nodes for Vybit",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"author": "Flatirontek LLC",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://gitlab.com/flatirontek/vybit-sdk.git",
|
|
12
|
+
"directory": "packages/n8n-nodes"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"n8n-community-node-package",
|
|
16
|
+
"n8n",
|
|
17
|
+
"vybit",
|
|
18
|
+
"push",
|
|
19
|
+
"notifications",
|
|
20
|
+
"audio",
|
|
21
|
+
"alerts",
|
|
22
|
+
"workflow",
|
|
23
|
+
"automation"
|
|
24
|
+
],
|
|
25
|
+
"n8n": {
|
|
26
|
+
"n8nNodesApiVersion": 1,
|
|
27
|
+
"credentials": [
|
|
28
|
+
"dist/credentials/VybitApi.credentials.js",
|
|
29
|
+
"dist/credentials/VybitOAuth2Api.credentials.js"
|
|
30
|
+
],
|
|
31
|
+
"nodes": [
|
|
32
|
+
"dist/nodes/Vybit/Vybit.node.js"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "npm run clean && rollup -c && npm run copy-assets",
|
|
37
|
+
"clean": "rm -rf dist",
|
|
38
|
+
"copy-assets": "mkdir -p dist/nodes/Vybit && cp src/nodes/Vybit/vybit.png dist/nodes/Vybit/ 2>/dev/null || true",
|
|
39
|
+
"dev": "rollup -c -w",
|
|
40
|
+
"lint": "eslint src --ext .ts",
|
|
41
|
+
"test": "echo \"Run 'npm run test:integration' for integration tests\"",
|
|
42
|
+
"test:integration": "node test/integration/test-runner.js",
|
|
43
|
+
"prepublishOnly": "npm run build"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist",
|
|
47
|
+
"README.md"
|
|
48
|
+
],
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
51
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
52
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
53
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
54
|
+
"@types/node": "^20.0.0",
|
|
55
|
+
"@vybit/api-sdk": "^1.0.0",
|
|
56
|
+
"@vybit/core": "^1.0.0",
|
|
57
|
+
"@vybit/oauth2-sdk": "^1.0.0",
|
|
58
|
+
"rollup": "^4.0.0",
|
|
59
|
+
"rollup-plugin-esbuild": "^6.1.0",
|
|
60
|
+
"tslib": "^2.6.0",
|
|
61
|
+
"typescript": "^5.0.0"
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"n8n-workflow": "*"
|
|
65
|
+
}
|
|
66
|
+
}
|