-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "claude-mcp-workflow",
"version": "0.1.11",
"description": "Structured workflow orchestration for AI agents via finite-state machines",
"author": "AxGord <axgord@gmail.com> (https://github.com/AxGord)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AxGord/claude-workflow.git"
},
"homepage": "https://github.com/AxGord/claude-workflow",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node build/index.js",
"test": "vitest run"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"@modelcontextprotocol/sdk": "^1.12.1",
"express": "^4.21.0",
"proper-lockfile": "^4.1.2",
"yaml": "^2.6.0",
"zod": "^3.24.0"
},
"files": [
"build/",
"templates/",
"scripts/",
"hooks/",
"dashboard/",
".claude-plugin/",
".mcp.json"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"@types/proper-lockfile": "^4.1.4",
"typescript": "^5.7.0",
"vitest": "4.0.18"
}
}