@vitaliy.ustymenko/n8n-node-appsheet 0.6.1
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.
- package/LICENSE +21 -0
- package/README.md +109 -0
- package/dist/credentials/AppSheetApi.credentials.d.ts +6 -0
- package/dist/credentials/AppSheetApi.credentials.js +25 -0
- package/dist/nodes/AppSheet/AIAgentAppSheet.node.d.ts +5 -0
- package/dist/nodes/AppSheet/AIAgentAppSheet.node.js +1123 -0
- package/dist/nodes/AppSheet/AppSheet.node.d.ts +5 -0
- package/dist/nodes/AppSheet/AppSheet.node.js +1123 -0
- package/dist/nodes/AppSheet/AppSheet.node.json +7 -0
- package/dist/nodes/AppSheet/appsheet.png +0 -0
- package/package.json +52 -0
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vitaliy.ustymenko/n8n-node-appsheet",
|
|
3
|
+
"version": "0.6.1",
|
|
4
|
+
"description": "An n8n community node for interacting with the AppSheet API, including an AI Agent tool node",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"README.md",
|
|
9
|
+
"LICENSE",
|
|
10
|
+
"LICENSE.md",
|
|
11
|
+
"package.json"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc && cp src/nodes/AppSheet/appsheet.png dist/nodes/AppSheet/ && cp src/nodes/AppSheet/AppSheet.node.json dist/nodes/AppSheet/",
|
|
16
|
+
"dev:build": "n8n-node-dev build",
|
|
17
|
+
"dev:watch": "n8n-node-dev build --watch",
|
|
18
|
+
"lint": "eslint \"src/**/*.ts\""
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"n8n-community-node-package",
|
|
22
|
+
"n8n",
|
|
23
|
+
"appsheet",
|
|
24
|
+
"automation"
|
|
25
|
+
],
|
|
26
|
+
"author": "Mohammed Rifad <rifadm817@gmail.com>",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^20.0.0",
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
30
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
31
|
+
"eslint": "^8.57.0",
|
|
32
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.4",
|
|
33
|
+
"n8n-node-dev": "^2.2.1",
|
|
34
|
+
"n8n-workflow": "^1.82.0",
|
|
35
|
+
"typescript": "^5.0.0"
|
|
36
|
+
},
|
|
37
|
+
"n8n": {
|
|
38
|
+
"credentials": [
|
|
39
|
+
"dist/credentials/AppSheetApi.credentials.js"
|
|
40
|
+
],
|
|
41
|
+
"nodes": [
|
|
42
|
+
"dist/nodes/AppSheet/AppSheet.node.js"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/rifadm817/n8n-nodes-rifad-appsheet.git"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
51
|
+
}
|
|
52
|
+
}
|