just-bash-mcp / package.json
victor's picture
victor HF Staff
Initial deploy of just-bash MCP server
548a458 verified
Raw
History Blame Contribute Delete
622 Bytes
{
"name": "just-bash-mcp",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node --enable-source-maps dist/server.js",
"dev": "tsx src/server.ts",
"test": "node --test --import tsx --test-reporter=spec tests/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"just-bash": "3.0.0",
"zod": "3.25.76"
},
"devDependencies": {
"@types/node": "22.10.5",
"tsx": "4.19.2",
"typescript": "5.7.3"
}
}