n8n-nodes-agnicwallet 1.0.11 → 1.0.13
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/README.md +51 -6
- package/dist/credentials/AgnicWalletApi.credentials.js +70 -41
- package/dist/credentials/AgnicWalletOAuth2Api.credentials.js +120 -91
- package/dist/nodes/AgnicAI/AgnicAI.node.js +1160 -411
- package/dist/nodes/AgnicAILanguageModel/AgnicAILanguageModel.node.js +1016 -355
- package/dist/nodes/AgnicMCPTool/AgnicMCPTool.node.js +12330 -336
- package/dist/nodes/X402HttpRequest/X402HttpRequest.node.js +345 -310
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-agnicwallet",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "n8n community node for AgnicWallet - automated Web3 payments for X402 APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"main": "index.js",
|
|
37
37
|
"scripts": {
|
|
38
|
-
"build": "
|
|
38
|
+
"build": "node esbuild.config.js && gulp build:icons",
|
|
39
39
|
"dev": "tsc --watch",
|
|
40
40
|
"format": "prettier nodes credentials --write",
|
|
41
41
|
"format:check": "prettier nodes credentials --check",
|
|
@@ -57,26 +57,27 @@
|
|
|
57
57
|
"dist/nodes/AgnicMCPTool/AgnicMCPTool.node.js"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"@modelcontextprotocol/sdk": "^1.24.0",
|
|
62
|
-
"@n8n/json-schema-to-zod": "^1.6.0",
|
|
63
|
-
"zod": "^3.23.0"
|
|
64
|
-
},
|
|
65
60
|
"devDependencies": {
|
|
66
61
|
"@langchain/core": "^0.3.68",
|
|
67
62
|
"@langchain/openai": "^0.6.16",
|
|
63
|
+
"@modelcontextprotocol/sdk": "^1.24.0",
|
|
64
|
+
"@n8n/json-schema-to-zod": "^1.6.0",
|
|
68
65
|
"@types/node": "^20.10.0",
|
|
69
66
|
"@typescript-eslint/parser": "^6.13.0",
|
|
67
|
+
"esbuild": "^0.27.2",
|
|
70
68
|
"eslint": "^8.54.0",
|
|
71
69
|
"eslint-plugin-n8n-nodes-base": "^1.16.1",
|
|
70
|
+
"glob": "^13.0.0",
|
|
72
71
|
"gulp": "^4.0.2",
|
|
73
72
|
"langchain": "^0.3.33",
|
|
74
73
|
"n8n-workflow": "^1.40.0",
|
|
75
74
|
"prettier": "^3.1.0",
|
|
76
|
-
"typescript": "^5.3.0"
|
|
75
|
+
"typescript": "^5.3.0",
|
|
76
|
+
"zod": "^3.23.0"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"@langchain/core": ">=0.2.0",
|
|
80
|
+
"@n8n/json-schema-to-zod": "*",
|
|
80
81
|
"n8n-workflow": "*"
|
|
81
82
|
}
|
|
82
83
|
}
|