-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.48 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "aiterm-mcp",
"version": "0.37.3",
"mcpName": "io.github.kitepon/aiterm-mcp",
"description": "Persistent terminal MCP with one harness-based launcher for Claude Code, Codex CLI, Grok CLI, and Cursor Agent CLI, plus durable PTYs for SSH, containers, and REPLs.",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"terminal",
"tmux",
"pty",
"ssh",
"claude",
"claude-code",
"cursor",
"ai-agent",
"agent",
"codex",
"codex-cli",
"grok",
"devtools",
"terminal-mcp",
"persistent-terminal",
"interactive-cli"
],
"license": "MIT",
"author": {
"name": "Quo / クオ at kitepon.dev",
"url": "https://kitepon.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitepon/aiterm-mcp.git"
},
"bugs": {
"url": "https://github.com/kitepon/aiterm-mcp/issues"
},
"homepage": "https://github.com/kitepon/aiterm-mcp#readme",
"type": "module",
"bin": {
"aiterm-mcp": "dist/index.js",
"aiterm-setup": "dist/setup-cli.js",
"aiterm-runtime-errors": "dist/runtime-errors-cli.js",
"aiterm-wait": "dist/aiterm-wait-cli.js"
},
"files": [
"dist/*.js",
"dist/harnesses/*.js",
"README.md",
"CHANGELOG.md",
"docs/00_overview.md",
"docs/DESIGN.md",
"docs/RELEASE.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "node scripts/clean-build.mjs && tsc",
"mcpb:build": "npm run build && node scripts/build-mcpb.mjs && npm ci --omit=dev --ignore-scripts --no-audit --no-fund --prefix dist/mcpb-stage/server && npx --yes @anthropic-ai/mcpb@2.1.2 validate dist/mcpb-stage/manifest.json && npx --yes @anthropic-ai/mcpb@2.1.2 pack dist/mcpb-stage dist/aiterm-mcp.mcpb",
"verify:release-commit": "node scripts/verify-release-commit.mjs",
"release": "node scripts/release.mjs",
"test:docs": "node --test test/repository-contract.test.mjs",
"prepublishOnly": "npm run verify:release-commit && npm run build",
"start": "node dist/index.js",
"test": "npm run build && node --test scripts/verify-release-commit.test.mjs test/*.test.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"ws": "8.21.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/ws": "^8.18.1",
"parse-srcset": "1.0.2",
"parse5": "^7.3.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"typescript": "^6.0.3",
"unified": "^11.0.5"
}
}