@i18n-agent/mcp-client 1.0.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/index.js +8 -0
- package/package.json +30 -0
package/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log('⚠️ Please use: npx i18n-agent-mcp-client install');
|
|
4
|
+
console.log('📖 Documentation: https://github.com/i18n-agent/mcp-client');
|
|
5
|
+
console.log('');
|
|
6
|
+
console.log('This package redirects to the main installer.');
|
|
7
|
+
console.log('The scoped package @i18n-agent/mcp-client is a placeholder.');
|
|
8
|
+
process.exit(1);
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@i18n-agent/mcp-client",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Easy installation and setup of i18n-agent MCP client for AI development environments",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"i18n-agent-mcp": "index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"start": "node index.js"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"i18n",
|
|
14
|
+
"translation",
|
|
15
|
+
"mcp",
|
|
16
|
+
"claude-code",
|
|
17
|
+
"gemini",
|
|
18
|
+
"cursor",
|
|
19
|
+
"ai"
|
|
20
|
+
],
|
|
21
|
+
"author": "i18n Agent Team",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/i18n-agent/mcp-client.git"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
}
|
|
30
|
+
}
|