package.json•1.16 kB
{
"name": "undo-mcp",
"version": "1.0.0",
"description": "Smart checkpoint-based version control MCP server for Claude Code with automatic deduplication",
"main": "dist/index.js",
"type": "module",
"bin": {
"undo-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"claude-code",
"undo",
"version-control",
"checkpoint",
"ai-assistant",
"file-tracking",
"deduplication"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/khalilbalaree/undo-mcp.git"
},
"bugs": {
"url": "https://github.com/khalilbalaree/undo-mcp/issues"
},
"homepage": "https://github.com/khalilbalaree/undo-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"chokidar": "^4.0.3"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}