@intlayer/mcp 7.3.1 → 7.3.2-canary.1
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/README.md +0 -2
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -24,8 +24,6 @@
|
|
|
24
24
|
<a href="https://github.com/aymericzip/intlayer/blob/main/LICENSE" target="_blank" rel="noopener noreferrer nofollow"><img src="https://img.shields.io/github/license/aymericzip/intlayer?style=for-the-badge&labelColor=000000&color=FFFFFF&logoColor=000000&cacheSeconds=86400" alt="license"/></a>
|
|
25
25
|
<a href="https://github.com/aymericzip/intlayer/commits/main" target="_blank" rel="noopener noreferrer nofollow"><img src="https://img.shields.io/github/last-commit/aymericzip/intlayer?style=for-the-badge&labelColor=000000&color=FFFFFF&logoColor=000000&cacheSeconds=86400" alt="last commit"/>
|
|
26
26
|
</a>
|
|
27
|
-
<a href="https://bountyhub.dev/bounties?repo=intlayer" target="_blank" rel="noopener noreferrer nofollow"><img src="https://img.shields.io/badge/Bounties-on%20BountyHub-yellow?style=for-the-badge&labelColor=000000&color=FFFFFF&logoColor=000000&cacheSeconds=86400" alt="Bounties on BountyHub"/>
|
|
28
|
-
</a>
|
|
29
27
|
</p>
|
|
30
28
|
|
|
31
29
|

|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/mcp",
|
|
3
|
-
"version": "7.3.1",
|
|
3
|
+
"version": "7.3.2-canary.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Intlayer MCP server. Handle MCP to help IDE to use Intlayer. It build, fill, pull, push, dictionaries",
|
|
6
6
|
"keywords": [
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"./package.json"
|
|
68
68
|
],
|
|
69
69
|
"scripts": {
|
|
70
|
+
"_prepublish": "cp -f ../../../README.md ./README.md",
|
|
70
71
|
"build": "tsdown --config tsdown.config.ts",
|
|
71
72
|
"build:ci": "tsdown --config tsdown.config.ts",
|
|
72
73
|
"clean": "rimraf ./dist .turbo",
|
|
@@ -79,7 +80,7 @@
|
|
|
79
80
|
"manange:permissions:cjs": "node -e \"require('fs').chmodSync('dist/cjs/server/stdio.cjs', 0o755); require('fs').chmodSync('dist/cjs/server/sse.cjs', 0o755)\"",
|
|
80
81
|
"manange:permissions:mjs": "node -e \"require('fs').chmodSync('dist/esm/server/stdio.mjs', 0o755); require('fs').chmodSync('dist/esm/server/sse.mjs', 0o755)\"",
|
|
81
82
|
"process-files": "ts-node src/transpiler/processFilesCLI.ts --dir $npm_config_dir --extension $npm_config_extension --no-node-snapshot",
|
|
82
|
-
"prepublish": "
|
|
83
|
+
"prepublish": "echo prepublish temporally disabled to avoid rewrite readme",
|
|
83
84
|
"publish": "bun publish || true",
|
|
84
85
|
"publish:canary": "bun publish --access public --tag canary || true",
|
|
85
86
|
"publish:latest": "bun publish --access public --tag latest || true",
|
|
@@ -95,17 +96,17 @@
|
|
|
95
96
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
96
97
|
},
|
|
97
98
|
"dependencies": {
|
|
98
|
-
"@intlayer/cli": "7.3.1",
|
|
99
|
-
"@intlayer/config": "7.3.1",
|
|
100
|
-
"@intlayer/docs": "7.3.1",
|
|
101
|
-
"@intlayer/types": "7.3.1",
|
|
99
|
+
"@intlayer/cli": "7.3.2-canary.1",
|
|
100
|
+
"@intlayer/config": "7.3.2-canary.1",
|
|
101
|
+
"@intlayer/docs": "7.3.2-canary.1",
|
|
102
|
+
"@intlayer/types": "7.3.2-canary.1",
|
|
102
103
|
"@modelcontextprotocol/sdk": "1.21.1",
|
|
103
104
|
"dotenv": "16.6.1",
|
|
104
105
|
"express": "5.1.0",
|
|
105
106
|
"zod": "3.25.76"
|
|
106
107
|
},
|
|
107
108
|
"devDependencies": {
|
|
108
|
-
"@intlayer/types": "7.3.1",
|
|
109
|
+
"@intlayer/types": "7.3.2-canary.1",
|
|
109
110
|
"@modelcontextprotocol/inspector": "0.17.2",
|
|
110
111
|
"@types/express": "5.0.5",
|
|
111
112
|
"@types/node": "24.10.1",
|
|
@@ -113,9 +114,9 @@
|
|
|
113
114
|
"@utils/ts-config-types": "1.0.4",
|
|
114
115
|
"@utils/tsdown-config": "1.0.4",
|
|
115
116
|
"rimraf": "6.1.2",
|
|
116
|
-
"tsdown": "0.16.
|
|
117
|
+
"tsdown": "0.16.8",
|
|
117
118
|
"typescript": "5.9.3",
|
|
118
|
-
"vitest": "4.0.
|
|
119
|
+
"vitest": "4.0.14"
|
|
119
120
|
},
|
|
120
121
|
"engines": {
|
|
121
122
|
"node": ">=14.18"
|