-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "@eyalm321/hyperpanes-mcp",
"version": "0.1.10",
"description": "MCP server for hyperpanes (Electron terminal-workspace app) — compose, validate, and launch workspace layouts, and drive a running instance (read/spawn/layout panes, stream output, guarded input)",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"hyperpanes-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"clean": "node --eval \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"hyperpanes",
"terminal",
"electron",
"workspace",
"panes"
],
"author": "Eyalm321",
"repository": {
"type": "git",
"url": "https://github.com/Eyalm321/hyperpanes-mcp.git"
},
"homepage": "https://github.com/Eyalm321/hyperpanes-mcp#readme",
"bugs": {
"url": "https://github.com/Eyalm321/hyperpanes-mcp/issues"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}