-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "n8n-agent-cli",
"version": "0.1.0",
"description": "AI agent CLI + MCP server for n8n — zero-trust webhook tool platform, workflow synthesis, and deterministic automation for OpenClaw agents",
"keywords": [
"n8n",
"mcp",
"ai-agent",
"automation",
"webhook",
"openclaw",
"zero-trust",
"workflow"
],
"author": "Brandon Charleson",
"license": "MIT",
"homepage": "https://github.com/bcharleson/n8n-agent-cli",
"repository": {
"type": "git",
"url": "https://github.com/bcharleson/n8n-agent-cli"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"n8n-agent": "dist/index.js",
"n8n-agent-cli": "dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"mcp": "node dist/mcp.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@inquirer/prompts": "^8.3.0",
"commander": "^14.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0"
},
"tsup": {
"entry": {
"index": "src/index.ts",
"mcp": "src/mcp.ts"
},
"format": ["esm"],
"target": "node20",
"clean": true,
"splitting": false
},
"engines": {
"node": ">=20.0.0"
}
}