@intlayer/mcp 7.2.0 → 7.2.2
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.
|
@@ -6,12 +6,16 @@ var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
8
|
var __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from === "object" || typeof from === "function")
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
+
key = keys[i];
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
13
|
+
__defProp(to, key, {
|
|
14
|
+
get: ((k) => from[k]).bind(null, key),
|
|
15
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
}
|
|
15
19
|
}
|
|
16
20
|
return to;
|
|
17
21
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/mcp",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.2",
|
|
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": [
|
|
@@ -95,27 +95,27 @@
|
|
|
95
95
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
|
-
"@intlayer/cli": "7.2.
|
|
99
|
-
"@intlayer/config": "7.2.
|
|
100
|
-
"@intlayer/docs": "7.2.
|
|
101
|
-
"@intlayer/types": "7.2.
|
|
98
|
+
"@intlayer/cli": "7.2.2",
|
|
99
|
+
"@intlayer/config": "7.2.2",
|
|
100
|
+
"@intlayer/docs": "7.2.2",
|
|
101
|
+
"@intlayer/types": "7.2.2",
|
|
102
102
|
"@modelcontextprotocol/sdk": "1.21.1",
|
|
103
103
|
"dotenv": "16.6.1",
|
|
104
104
|
"express": "5.1.0",
|
|
105
105
|
"zod": "3.25.76"
|
|
106
106
|
},
|
|
107
107
|
"devDependencies": {
|
|
108
|
-
"@intlayer/types": "7.2.
|
|
108
|
+
"@intlayer/types": "7.2.2",
|
|
109
109
|
"@modelcontextprotocol/inspector": "0.17.2",
|
|
110
110
|
"@types/express": "5.0.5",
|
|
111
111
|
"@types/node": "24.10.1",
|
|
112
112
|
"@utils/ts-config": "1.0.4",
|
|
113
113
|
"@utils/ts-config-types": "1.0.4",
|
|
114
114
|
"@utils/tsdown-config": "1.0.4",
|
|
115
|
-
"rimraf": "6.1.
|
|
116
|
-
"tsdown": "0.16.
|
|
115
|
+
"rimraf": "6.1.2",
|
|
116
|
+
"tsdown": "0.16.6",
|
|
117
117
|
"typescript": "5.9.3",
|
|
118
|
-
"vitest": "4.0.
|
|
118
|
+
"vitest": "4.0.12"
|
|
119
119
|
},
|
|
120
120
|
"engines": {
|
|
121
121
|
"node": ">=14.18"
|