package.jsonā¢1.1 kB
{
"name": "keyboard-shortcuts-mcp",
"version": "0.1.0",
"description": "MCP server providing keyboard shortcuts for OS, desktop environments, and applications to support Claude's computer use feature",
"type": "module",
"main": "dist/index.js",
"bin": {
"keyboard-shortcuts-mcp": "dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepare": "pnpm build"
},
"keywords": [
"mcp",
"model-context-protocol",
"keyboard-shortcuts",
"computer-use",
"claude",
"anthropic"
],
"author": "jenova",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@modelcontextprotocol/sdk": "^1.19.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.6.2",
"@vitest/ui": "^3.2.4",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}