mcp-wordpress 2.10.2 → 2.10.3

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 (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-wordpress",
3
- "version": "2.10.2",
3
+ "version": "2.10.3",
4
4
  "description": "Comprehensive Model Context Protocol server for WordPress management with composition-based architecture, 59 tools, SEO toolkit, performance monitoring, intelligent caching, and production-ready authentication",
5
5
  "keywords": [
6
6
  "mcp",
@@ -78,15 +78,15 @@
78
78
  "test": "npm run test:batch",
79
79
  "test:auth": "node scripts/test-auth.js",
80
80
  "test:batch": "npm run test:batch:1 && npm run test:batch:2 && npm run test:batch:3 && npm run test:batch:4",
81
- "test:batch:1": "npm run build && NODE_OPTIONS=\"--max-old-space-size=4096\" vitest run tests/security/ tests/cache/ tests/server/",
82
- "test:batch:2": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/client/ tests/config/ tests/utils/ --reporter=basic",
83
- "test:batch:3": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/tools/ tests/performance/ --reporter=basic",
84
- "test:batch:4": "npm run build && NODE_OPTIONS=\"--max-old-space-size=6144\" vitest run tests/*.test.js tests/docs/ --reporter=basic",
81
+ "test:batch:1": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/security/ tests/cache/ tests/server/ --no-coverage --reporter=basic",
82
+ "test:batch:2": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/client/ tests/config/ tests/utils/ --no-coverage --reporter=basic",
83
+ "test:batch:3": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/tools/ tests/performance/ --no-coverage --reporter=basic",
84
+ "test:batch:4": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/*.test.js tests/docs/ --no-coverage --reporter=basic",
85
85
  "test:ci": "npm run build && CI=true NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run --reporter=basic",
86
86
  "test:ci:safe": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx vitest run --config vitest.ci.config.ts",
87
87
  "test:compatibility": "npm run build && vitest run tests/compatibility/ || echo 'No compatibility tests found'",
88
88
  "test:config": "npm run build && vitest run tests/config/",
89
- "test:coverage": "npm run build && NODE_OPTIONS=\"--max-old-space-size=6144\" vitest run --coverage",
89
+ "test:coverage": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run --coverage",
90
90
  "test:coverage:report": "npm run test:coverage && node scripts/coverage-guardrail.js",
91
91
  "test:memory-config": "npm run build && NODE_OPTIONS=\"--max-old-space-size=6144\" vitest run --config vitest.memory-safe.config.ts",
92
92
  "test:memory-safe": "npm run build && NODE_OPTIONS=\"--max-old-space-size=6144 --max-semi-space-size=256\" vitest run --no-coverage --reporter=basic",