-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 860 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 860 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
{
"name": "interactive-shell-mcp",
"version": "1.0.0",
"description": "MCP server for interactive shell sessions",
"main": "dist/src/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"dev": "tsc && node dist/src/server.js",
"test": "node --test dist/tests/screen.test.js dist/tests/enhancements.test.js",
"test:integration": "node --test dist/tests/integration.test.js",
"test:all": "node --test dist/tests/**/*.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@xterm/headless": "^6.0.0",
"node-pty": "^1.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/uuid": "^9.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"shell",
"pty",
"interactive"
],
"author": "",
"license": "MIT"
}