package.json•972 B
{
"name": "@modelcontextprotocol/server-backup",
"version": "1.0.0",
"description": "MCP server for file backup and restoration",
"license": "MIT",
"type": "module",
"bin": {
"@modelcontextprotocol/server-backup": "dist/index.js",
"mcp-server-backup": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"prepare": "npm run build",
"start": "node dist/index.js",
"watch": "tsc --watch",
"test": "node \"test scripts/test_client.js\""
},
"keywords": [
"mcp",
"backup",
"modelcontextprotocol"
],
"author": "Rob MCGlade",
"dependencies": {
"@modelcontextprotocol/sdk": "0.5.0",
"@types/minimatch": "^5.1.2",
"minimatch": "^10.0.1",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@types/node": "^22",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}