package.json•1.18 kB
{
"name": "@audibleblink/tmux-mcp-server",
"version": "1.0.0",
"description": "MCP server for local tmux session management",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tmux-mcp-server": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"tmux",
"terminal",
"session-management",
"ai",
"llm",
"claude"
],
"author": "audibleblink",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git+https://github.com/audibleblink/tmux-mcp-server.git"
},
"bugs": {
"url": "https://github.com/audibleblink/tmux-mcp-server/issues"
},
"homepage": "https://github.com/audibleblink/tmux-mcp-server#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}