package.json•1.34 kB
{
"name": "@shaike1/server-ssh",
"version": "1.0.0",
"description": "SSH Server for Model Context Protocol",
"main": "dist/server.js",
"bin": {
"mcp-ssh-install": "./install.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"lint": "eslint src/**/*.ts",
"test": "jest",
"prepare": "npm run build",
"install-server": "node install.js"
},
"keywords": [
"mcp",
"ssh",
"claude",
"anthropic"
],
"author": "Shaike Lukov",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"node-ssh": "^13.1.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/multer": "^1.4.7",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaike1/mcp-server-ssh.git"
},
"bugs": {
"url": "https://github.com/shaike1/mcp-server-ssh/issues"
},
"homepage": "https://github.com/shaike1/mcp-server-ssh#readme"
}