-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 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
{
"name": "workflow-mcp",
"version": "1.0.0",
"description": "MCP server for custom workflow",
"main": "dist/index.js",
"type": "module",
"bin": {
"workflow": "./dist/index.js"
},
"scripts": {
"build": "npm run clean && tsc",
"start": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js",
"clean": "rimraf dist",
"web:dev": "concurrently \"npm run web:server\" \"npm run web:client\"",
"web:server": "cd web-app/server && npm run dev",
"web:client": "cd web-app/client && npm run dev",
"web:build": "npm run web:server:build && npm run web:client:build",
"web:server:build": "cd web-app/server && npm run build",
"web:client:build": "cd web-app/client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neil-liu7/vibe-workflow.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Neil-liu7/vibe-workflow/issues"
},
"homepage": "https://github.com/Neil-liu7/vibe-workflow#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.16.6",
"@types/node": "^24.3.1",
"concurrently": "^9.2.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.2"
}
}