@michelabboud/visual-forge-mcp 0.5.6 → 0.6.0
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.
- package/CHANGELOG.md +814 -0
- package/dist/types/generation.d.ts +7 -1
- package/dist/types/generation.d.ts.map +1 -1
- package/dist/utils/image-optimizer.d.ts +91 -0
- package/dist/utils/image-optimizer.d.ts.map +1 -0
- package/dist/utils/image-optimizer.js +241 -0
- package/dist/utils/image-optimizer.js.map +1 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +1 -0
- package/dist/utils/index.js.map +1 -1
- package/dist/workflow/workflow-orchestrator.d.ts.map +1 -1
- package/dist/workflow/workflow-orchestrator.js +34 -1
- package/dist/workflow/workflow-orchestrator.js.map +1 -1
- package/docs/guides/README.md +24 -0
- package/docs/guides/backup-system-flow.md +511 -0
- package/docs/guides/backup-system.md +688 -0
- package/docs/guides/development-testing.md +338 -0
- package/docs/guides/html-support.md +548 -0
- package/docs/guides/image-optimization.md +370 -0
- package/docs/guides/testing.md +279 -0
- package/docs/guides/usage-examples.md +101 -0
- package/docs/guides/vf-workflow.md +112 -0
- package/docs/guides/workflow-with-backups.md +471 -0
- package/package.json +15 -3
- package/dist/.gitkeep +0 -0
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@michelabboud/visual-forge-mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for AI image generation from markdown and HTML with multi-provider support",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "MCP server for AI image generation from markdown and HTML with multi-provider support and automatic web optimization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"visual-forge-mcp": "dist/index.js"
|
|
10
|
+
},
|
|
8
11
|
"repository": {
|
|
9
12
|
"type": "git",
|
|
10
13
|
"url": "git+https://github.com/michelabboud/visual-forge-mcp.git"
|
|
@@ -22,6 +25,7 @@
|
|
|
22
25
|
"test:watch": "jest --watch",
|
|
23
26
|
"lint": "eslint src --ext .ts",
|
|
24
27
|
"clean": "rm -rf dist",
|
|
28
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
25
29
|
"pricing:show": "node scripts/update-pricing.js show",
|
|
26
30
|
"pricing:update": "node scripts/update-pricing.js update",
|
|
27
31
|
"pricing:check": "node scripts/update-pricing.js check",
|
|
@@ -32,12 +36,18 @@
|
|
|
32
36
|
"mcp-server",
|
|
33
37
|
"ai",
|
|
34
38
|
"image-generation",
|
|
39
|
+
"image-optimization",
|
|
40
|
+
"webp",
|
|
41
|
+
"sharp",
|
|
35
42
|
"dall-e",
|
|
36
43
|
"stable-diffusion",
|
|
37
44
|
"flux",
|
|
38
45
|
"leonardo",
|
|
39
46
|
"replicate",
|
|
40
|
-
"
|
|
47
|
+
"gemini",
|
|
48
|
+
"technical-documentation",
|
|
49
|
+
"markdown",
|
|
50
|
+
"documentation-tools"
|
|
41
51
|
],
|
|
42
52
|
"author": "Michel Abboud",
|
|
43
53
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -76,7 +86,9 @@
|
|
|
76
86
|
"config/pricing.json",
|
|
77
87
|
"config/pricing-schema.json",
|
|
78
88
|
"scripts/update-pricing.js",
|
|
89
|
+
"docs/guides/*.md",
|
|
79
90
|
"README.md",
|
|
91
|
+
"CHANGELOG.md",
|
|
80
92
|
"LICENSE"
|
|
81
93
|
],
|
|
82
94
|
"publishConfig": {
|
package/dist/.gitkeep
DELETED
|
File without changes
|