@toolsdk.ai/registry 1.0.89 → 1.0.91

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/dist/helper.js CHANGED
@@ -139,6 +139,12 @@ function updatePackageJsonDependencies({ packageDeps, enableValidation = false,
139
139
  newDeps[depName] = depVer || 'latest';
140
140
  }
141
141
  }
142
+ const blacklistDeps = new Set(['@mcp-server/google-search-mcp', '@executeautomation/playwright-mcp-server']);
143
+ for (const dep of blacklistDeps) {
144
+ if (newDeps[dep]) {
145
+ delete newDeps[dep];
146
+ }
147
+ }
142
148
  const packageJSON = JSON.parse(packageJSONStr);
143
149
  packageJSON.dependencies = newDeps;
144
150
  fs_1.default.writeFileSync(packageJsonFile, JSON.stringify(packageJSON, null, 2), 'utf-8');