package.json•1.31 kB
{
"name": "@dillip285/mcp-terminal",
"version": "1.0.1",
"description": "MCP Terminal Server - Execute commands within allowed paths",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"mcp-terminal": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"prepare": "npm run build",
"test": "jest --passWithNoTests",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"terminal",
"cli",
"command-line",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/dillip285/mcp-terminal.git"
},
"homepage": "https://github.com/dillip285/mcp-terminal#readme",
"bugs": {
"url": "https://github.com/dillip285/mcp-terminal/issues"
},
"author": "dillip285",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}