-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"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"
}
}