@i18n-agent/mcp-client 1.8.39 → 1.8.41
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/install.js +5 -0
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -102,6 +102,11 @@ function copyMcpClientToStableLocation() {
|
|
|
102
102
|
const packageJsonDest = path.join(paths.packageDir, 'package.json');
|
|
103
103
|
fs.copyFileSync(packageJsonSource, packageJsonDest);
|
|
104
104
|
|
|
105
|
+
// Copy namespace-detector.js to stable location (required dependency)
|
|
106
|
+
const namespaceDetectorSource = path.resolve(__dirname, 'namespace-detector.js');
|
|
107
|
+
const namespaceDetectorDest = path.join(paths.packageDir, 'namespace-detector.js');
|
|
108
|
+
fs.copyFileSync(namespaceDetectorSource, namespaceDetectorDest);
|
|
109
|
+
|
|
105
110
|
// Install dependencies
|
|
106
111
|
console.log(` 📦 Installing dependencies...`);
|
|
107
112
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i18n-agent/mcp-client",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.41",
|
|
4
4
|
"description": "🌍 i18n-agent MCP Client - 48 languages, AI-powered translation for Claude, Claude Code, Cursor, VS Code, Codex. Get API key at https://app.i18nagent.ai",
|
|
5
5
|
"main": "mcp-client.js",
|
|
6
6
|
"bin": {
|