package.json•1.49 kB
{
"name": "iterm-mcp",
"version": "1.2.6",
"description": "A Model Context Protocol server that provides access to the currently active tab of iTerm",
"homepage": "https://github.com/ferrislucas/iterm-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ferrislucas/iterm-mcp.git"
},
"author": "Ferris Lucas",
"bugs": {
"url": "https://github.com/ferrislucas/iterm-mcp/issues"
},
"type": "module",
"license": "MIT",
"bin": {
"iterm-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepublishOnly": "yarn run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=jest.config.cjs",
"e2e": "ts-node --esm test/e2e/CommandExecutor.test.ts",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=jest.config.cjs --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=jest.config.cjs --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}