package.json•900 B
{
"name": "openai-mcp",
"version": "1.1.0",
"description": "MCP server that enables Roo Code to make OpenAI API calls, with full support for DALL-E image generation",
"main": "build/index.js",
"bin": {
"openai-mcp": "build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js serve",
"dev": "ts-node src/index.ts serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"openai",
"dalle",
"roo-code",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.1.0",
"axios": "^1.6.7",
"commander": "^12.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.11.19",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"type": "module"
}