28 lines
635 B
JSON
28 lines
635 B
JSON
{
|
|
"name": "iai-mcp-wrapper",
|
|
"version": "0.1.0",
|
|
"description": "TypeScript MCP wrapper for IAI-MCP Python core (D-03)",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"iai-mcp-wrapper": "dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "node --import tsx --test test/*.test.ts"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.0",
|
|
"typescript": "^5.4.0",
|
|
"tsx": "^4.7.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|