Initial commit: Setting up OpenRouter MCP server for multimodal capabilities

This commit is contained in:
stabgan
2025-03-26 22:57:06 +05:30
commit 57eb800f9a
17 changed files with 1895 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "es2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"strict": true,
"outDir": "dist",
"declaration": true,
"sourceMap": true,
"skipLibCheck": true
},
"include": ["src/**/*"]
}