@mcp-graph-workflow/mcp-graph 5.29.1 → 5.30.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-graph-workflow/mcp-graph",
3
- "version": "5.29.1",
3
+ "version": "5.30.0",
4
4
  "description": "MCP local-first PRD to task graph — transforms text into executable structure",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -16,7 +16,8 @@
16
16
  "dashboard:install": "cd src/web/dashboard && npm install",
17
17
  "dashboard:dev": "cd src/web/dashboard && npm run dev",
18
18
  "dashboard:build": "cd src/web/dashboard && npm run build",
19
- "build": "tsc && npm run copy-assets && npm run dashboard:build && npm run copy-dashboard",
19
+ "build": "tsc && npm run copy-assets && npm run generate-docs-manifest && npm run dashboard:build && npm run copy-dashboard",
20
+ "generate-docs-manifest": "node dist/core/docs/generate-docs-manifest.js",
20
21
  "copy-assets": "node -e \"const fs=require('fs');fs.cpSync('src/core/translation/ucr/construct-seed-data.json','dist/core/translation/ucr/construct-seed-data.json')\"",
21
22
  "copy-dashboard": "node -e \"const fs=require('fs');if(fs.existsSync('dist/web/dashboard/dist')){fs.rmSync('dist/web/dashboard/dist',{recursive:true})};fs.cpSync('src/web/dashboard/dist','dist/web/dashboard/dist',{recursive:true})\"",
22
23
  "start": "node dist/mcp/server.js",