From 15d41f52674de26bbcc0e027463b012fba4dff85 Mon Sep 17 00:00:00 2001 From: Kaustabh Ganguly Date: Wed, 26 Mar 2025 22:19:15 +0530 Subject: [PATCH] Add package.json --- package.json | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..474d5cc --- /dev/null +++ b/package.json @@ -0,0 +1,60 @@ +{ + "name": "@stabgan/openrouter-mcp-multimodal", + "version": "1.0.0", + "description": "MCP server for OpenRouter providing text chat and image analysis tools", + "type": "module", + "main": "dist/index.js", + "bin": { + "openrouter-multimodal": "dist/index.js" + }, + "files": [ + "dist", + "README.md", + "LICENSE" + ], + "scripts": { + "build": "tsc && shx chmod +x dist/*.js", + "prepare": "npm run build", + "start": "node dist/index.js", + "watch": "tsc --watch" + }, + "keywords": [ + "mcp", + "openrouter", + "ai", + "llm", + "vision", + "image-analysis", + "modelcontextprotocol" + ], + "author": "stabgan", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/stabgan/openrouter-mcp-multimodal.git" + }, + "bugs": { + "url": "https://github.com/stabgan/openrouter-mcp-multimodal/issues" + }, + "homepage": "https://github.com/stabgan/openrouter-mcp-multimodal#readme", + "engines": { + "node": ">=18.0.0" + }, + "dependencies": { + "@modelcontextprotocol/sdk": "^1.4.1", + "axios": "^1.7.9", + "node-fetch": "^3.3.2", + "openai": "^4.83.0", + "sharp": "^0.33.3" + }, + "devDependencies": { + "@types/node": "^22.13.1", + "@types/sharp": "^0.32.0", + "shx": "^0.3.4", + "typescript": "^5.7.3" + }, + "overrides": { + "uri-js": "npm:uri-js-replace", + "whatwg-url": "^14.1.0" + } +} \ No newline at end of file