-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.34 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.34 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
{
"name": "macos-shell-mcp",
"version": "3.2.0",
"description": "AI-Optimized MCP server for macOS shell with command caching, deduplication, and error recovery",
"main": "build/server.js",
"type": "module",
"scripts": {
"build": "esbuild src/server.ts --bundle --outdir=build --platform=node --format=esm --target=es2020 --sourcemap --external:@modelcontextprotocol/sdk --external:execa --external:node-pty --external:ssh2 --external:uuid --external:zod --external:lru-cache --external:better-sqlite3 --external:sqlite-vss --external:voyageai",
"start": "node build/server.js",
"dev": "ts-node --esm src/server.ts",
"test": "jest",
"test:check": "tsc -p tsconfig.test.json --noEmit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=50% --forceExit",
"test:unit": "jest --testMatch='**/*.test.ts' --testPathIgnorePatterns='integration'",
"test:integration": "jest --testMatch='**/*.integration.test.ts'",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"typecheck": "echo 'Note: Full project type checking with tsc --noEmit causes OOM due to MCP SDK 1.18.0 type complexity. Type safety enforced via: (1) isolatedModules in tsconfig, (2) ts-jest compilation (797 passing tests), (3) runtime Zod validation'",
"lint": "eslint src --ext .ts",
"clean": "rm -rf build coverage"
},
"keywords": [
"mcp",
"model-context-protocol",
"shell",
"terminal",
"macos",
"command",
"session",
"environment"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"@types/ssh2": "^1.15.5",
"better-sqlite3": "^12.5.0",
"execa": "^9.5.2",
"lru-cache": "^11.1.0",
"node-pty": "^1.0.0",
"sqlite-vss": "^0.1.2",
"ssh2": "^1.16.0",
"uuid": "^11.1.0",
"voyageai": "^0.1.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.11.18",
"@types/uuid": "^10.0.0",
"esbuild": "^0.27.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/quanticsoul4772/macos-shell.git"
}
}