@fre4x/comfyui 1.0.57

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 (3) hide show
  1. package/README.md +47 -0
  2. package/dist/index.js +31086 -0
  3. package/package.json +27 -0
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@fre4x/comfyui",
3
+ "version": "1.0.57",
4
+ "description": "MCP server for ComfyUI. Execute workflows and probe server state remotely.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "comfyui": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "build": "node ../scripts/build-package.mjs",
15
+ "dev": "tsx watch src/index.ts",
16
+ "typecheck": "node --max-old-space-size=4096 ../node_modules/typescript/bin/tsc --noEmit",
17
+ "prepublishOnly": "npm run typecheck && npm run build",
18
+ "test": "vitest run --exclude dist",
19
+ "test:watch": "vitest",
20
+ "test:e2e": "cross-env COMFYUI_E2E=true vitest run src/e2e.test.ts",
21
+ "inspector": "node ../scripts/run-official-inspector.mjs node dist/index.js"
22
+ },
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.27.1",
25
+ "zod": "4.3.6"
26
+ }
27
+ }