@elizaos/plugin-n8n 2.0.0-alpha.2 → 2.0.0-alpha.4

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.
Files changed (1) hide show
  1. package/package.json +25 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-n8n",
3
- "version": "2.0.0-alpha.2",
3
+ "version": "2.0.0-alpha.4",
4
4
  "description": "N8n workflow integration plugin with AI-powered plugin creation for ElizaOS",
5
5
  "type": "module",
6
6
  "main": "dist/node/index.js",
@@ -27,13 +27,15 @@
27
27
  ],
28
28
  "sideEffects": false,
29
29
  "dependencies": {
30
- "@elizaos/core": "2.0.0-alpha.2",
30
+ "@elizaos/core": "2.0.0-alpha.3",
31
+ "drizzle-orm": "^0.45.1",
31
32
  "fs-extra": "^11.2.0",
32
- "zod": "^4.3.5"
33
+ "zod": "^4.3.6"
33
34
  },
34
35
  "devDependencies": {
35
36
  "@anthropic-ai/sdk": "^0.40.1",
36
37
  "@biomejs/biome": "^2.3.11",
38
+ "@types/bun": "^1.3.5",
37
39
  "@types/fs-extra": "^11.0.4",
38
40
  "@types/node": "^25.0.3",
39
41
  "dotenv": "^17.2.3",
@@ -93,8 +95,27 @@
93
95
  "description": "Claude model to use",
94
96
  "required": false,
95
97
  "default": "claude-3-opus-20240229"
98
+ },
99
+ "N8N_API_KEY": {
100
+ "type": "string",
101
+ "description": "n8n API key for authentication (required for workflow features)",
102
+ "required": false,
103
+ "sensitive": true
104
+ },
105
+ "N8N_HOST": {
106
+ "type": "string",
107
+ "description": "n8n instance URL (e.g., https://your.n8n.cloud) (required for workflow features)",
108
+ "required": false
96
109
  }
97
110
  }
98
111
  },
99
- "gitHead": "bc6cac8d36845d7cbde51a64307c6a57c16378ad"
112
+ "milaidy": {
113
+ "platforms": [
114
+ "node"
115
+ ],
116
+ "runtime": "node",
117
+ "platformDetails": {
118
+ "node": "Node.js build available via exports.node"
119
+ }
120
+ }
100
121
  }