UNPKG

code-time-machine-mcp-server

Version:

Revolutionary MCP server that analyzes code evolution, predicts bugs, and provides historical insights about code patterns and development trends

84 lines (83 loc) 2.07 kB
{ "name": "code-time-machine-mcp-server", "version": "1.0.1", "description": "Revolutionary MCP server that analyzes code evolution, predicts bugs, and provides historical insights about code patterns and development trends", "main": "dist/index.js", "type": "module", "bin": { "code-time-machine": "./dist/index.js" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsc && node dist/index.js", "watch": "tsc --watch", "test": "node dist/test.js", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "mcp-server", "model-context-protocol", "copilot-mcp", "vscode-mcp", "github-copilot", "code-analysis", "bug-prediction", "code-evolution", "technical-debt", "code-entropy", "developer-analytics", "ai-tools", "claude-desktop", "vscode-extension" ], "author": "Your Name <your.email@example.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/yourusername/code-time-machine-mcp-server.git" }, "homepage": "https://github.com/yourusername/code-time-machine-mcp-server#readme", "bugs": { "url": "https://github.com/yourusername/code-time-machine-mcp-server/issues" }, "files": [ "dist/**/*", "README.md", "LICENSE", "package.json", "mcp-manifest.json" ], "engines": { "node": ">=18.0.0" }, "mcp": { "manifest": "./mcp-manifest.json", "version": "2024-11-05" }, "copilot": { "mcp": { "enabled": true, "server": "code-time-machine", "manifest": "./mcp-manifest.json" } }, "dependencies": { "@modelcontextprotocol/sdk": "^0.4.0", "crypto-js": "^4.2.0", "diff2html": "^3.4.47", "eslint": "^8.57.0", "fast-levenshtein": "^3.0.0", "glob": "^10.3.10", "jshint": "^2.13.6", "semver": "^7.5.4", "simple-git": "^3.20.0", "zod": "^3.22.4" }, "devDependencies": { "@types/fast-levenshtein": "^0.0.4", "@types/node": "^20.17.51", "typescript": "^5.3.0" } }