@whyuds/coding-converse
Version:
An MCP server that enables interactive conversations between AI code editors and users for collaborative problem-solving
62 lines (61 loc) • 1.46 kB
JSON
{
"name": "@whyuds/coding-converse",
"version": "1.0.1",
"description": "An MCP server that enables interactive conversations between AI code editors and users for collaborative problem-solving",
"type": "module",
"main": "dist/index.js",
"bin": {
"coding-converse": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"code-editor",
"cursor",
"windsurf",
"trae",
"interactive",
"conversation"
],
"author": "whyuds",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"readline": "^1.3.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/whyuds/CodingConverse.git"
},
"bugs": {
"url": "https://github.com/whyuds/CodingConverse/issues"
},
"homepage": "https://github.com/whyuds/CodingConverse#readme"
}