-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@simonb97/server-win-cli",
"version": "0.1.8",
"description": "MCP server for Windows CLI interactions",
"type": "module",
"bin": {
"server-win-cli": "./dist/index.js"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Simon Benedict",
"homepage": "https://github.com/SimonB97/win-cli-mcp-server",
"repository": {
"type": "git",
"url": "git+https://github.com/SimonB97/win-cli-mcp-server.git"
},
"bugs": {
"url": "https://github.com/SimonB97/win-cli-mcp-server/issues"
},
"keywords": [
"mcp",
"claude",
"cli",
"windows",
"modelcontextprotocol",
"mcp-server",
"ssh"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"@types/ssh2": "^1.15.1",
"ssh2": "^1.16.0",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/yargs": "^17.0.33",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}