package.json•1.61 kB
{
"name": "@247arjun/mcp-grep",
"version": "1.0.0",
"description": "An MCP server that exposes grep functionality with natural language search capabilities",
"main": "build/index.js",
"type": "module",
"bin": {
"mcp-grep": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "tsc --watch",
"test": "echo 'Tests will be implemented in future versions'",
"test:watch": "echo 'Tests will be implemented in future versions'",
"test:coverage": "echo 'Tests will be implemented in future versions'",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint:check && npm run build"
},
"keywords": [
"mcp",
"grep",
"search",
"regex",
"text-search",
"model-context-protocol"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/247arjun/mcp-grep.git"
},
"bugs": {
"url": "https://github.com/247arjun/mcp-grep/issues"
},
"homepage": "https://github.com/247arjun/mcp-grep#readme",
"files": [
"build"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.16.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"zod": "^3.25.76"
}
}