-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
60
61
62
63
{
"name": "comfyui-mcp-server",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "npx tsx ./src/index.ts",
"dev:stdio": "npx tsx ./src/server-stdio.ts",
"inspector": "npx @modelcontextprotocol/inspector --config ./configs/inspector/dev.json --server default-server",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"type-check": "tsc --noEmit",
"lint": "echo 'No linter configured yet. Consider adding ESLint.'",
"check": "npm run type-check && npm run test",
"prepare": "husky"
},
"keywords": [
"mcp",
"comfyui",
"model-context-protocol",
"ai-agent",
"image-generation",
"typescript",
"claude",
"cursor",
"dify",
"workflow",
"stable-diffusion"
],
"author": "LaiFQZzr",
"license": "MIT",
"description": "MCP Server that transforms ComfyUI workflows into AI-callable tools for Claude, Cursor, Dify and more",
"lint-staged": {
"*.{ts,tsx}": [
"jest --findRelatedTests --passWithNoTests"
]
},
"devDependencies": {
"@types/i18next": "^12.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.19.3",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.4.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"axios": "^1.13.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"i18next": "^25.8.13",
"i18next-fs-backend": "^2.6.1",
"ws": "^8.19.0"
}
}