fa-mcp-sdk 0.2.210 → 0.2.211
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,6 +6,7 @@
|
|
|
6
6
|
"lib": ["ES2022"],
|
|
7
7
|
"outDir": "./dist",
|
|
8
8
|
"rootDir": "./",
|
|
9
|
+
"baseUrl": "./",
|
|
9
10
|
"strict": true,
|
|
10
11
|
"esModuleInterop": true,
|
|
11
12
|
"skipLibCheck": true,
|
|
@@ -23,7 +24,8 @@
|
|
|
23
24
|
"allowSyntheticDefaultImports": true,
|
|
24
25
|
"resolveJsonModule": true,
|
|
25
26
|
"isolatedModules": true,
|
|
26
|
-
"
|
|
27
|
+
"experimentalDecorators": true,
|
|
28
|
+
"emitDecoratorMetadata": true
|
|
27
29
|
},
|
|
28
30
|
"include": [
|
|
29
31
|
"src/**/*",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fa-mcp-sdk",
|
|
3
3
|
"productName": "FA MCP SDK",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.211",
|
|
5
5
|
"description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/core/index.js",
|
|
@@ -4,6 +4,5 @@ import path from 'path';
|
|
|
4
4
|
const virusFilePath = path.join(process.env.INIT_CWD || process.cwd(), 'node_modules/es5-ext/_postinstall.js');
|
|
5
5
|
|
|
6
6
|
if (fs.existsSync(virusFilePath)) {
|
|
7
|
-
console.log('Deleting file "es5-ext module _postinstall"');
|
|
8
7
|
fs.unlinkSync(virusFilePath);
|
|
9
8
|
}
|