package.json•1.77 kB
{
"name": "mac-shell-mcp",
"version": "1.1.0",
"description": "MCP server for executing macOS terminal commands with ZSH",
"type": "module",
"main": "build/index.js",
"bin": {
"mac-shell-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"prepare": "npm run build",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "npm run build && NODE_OPTIONS='--experimental-vm-modules' jest",
"test:ci": "npm run build && NODE_OPTIONS='--experimental-vm-modules' jest",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.js'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.js'",
"lint-and-format": "npm run lint:fix && npm run format"
},
"keywords": [
"mcp",
"shell",
"macos",
"zsh",
"terminal"
],
"author": "Rob Sherman",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cfdude/mac-shell-mcp.git"
},
"bugs": {
"url": "https://github.com/cfdude/mac-shell-mcp/issues"
},
"homepage": "https://github.com/cfdude/mac-shell-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}