stellar-mcp-cli
Version:
CLI tool that transforms any Soroban Smart Contract into an AI-ready Model Context Protocol (MCP) server
25 lines • 624 B
JSON
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"sac-sdk": ["node_modules/sac-sdk/src/index.ts"],
"sac-sdk/*": ["node_modules/sac-sdk/src/*"]
}
},
"include": [
"src/**/*",
"node_modules/sac-sdk/src/**/*"
],
"exclude": ["node_modules/**/*", "!node_modules/sac-sdk/**/*"]
}