eslint-mcp-server
Version:
A comprehensive ESLint MCP Server for AI tools with incremental detection and auto-fix capabilities
76 lines (75 loc) • 1.94 kB
JSON
{
"name": "eslint-mcp-server",
"version": "1.0.1",
"description": "A comprehensive ESLint MCP Server for AI tools with incremental detection and auto-fix capabilities",
"main": "dist/apps/mcp-server/index.js",
"type": "module",
"bin": {
"eslint-mcp-server": "dist/apps/mcp-server/index.js"
},
"keywords": [
"mcp",
"eslint",
"typescript",
"ai-tools",
"code-quality",
"model-context-protocol",
"linting",
"auto-fix"
],
"author": "amsterdam-littlehill",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amsterdam-littlehill/eslint-mcp-server.git"
},
"bugs": {
"url": "https://github.com/amsterdam-littlehill/eslint-mcp-server/issues"
},
"homepage": "https://github.com/amsterdam-littlehill/eslint-mcp-server#readme",
"scripts": {
"build": "nx build mcp-server",
"dev": "nx dev mcp-server",
"serve": "nx serve mcp-server",
"test": "nx test",
"lint": "nx lint",
"start": "node dist/apps/mcp-server/index.js",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"files": [
"dist/apps/mcp-server/",
"README.md",
"LICENSE",
"MCP_USAGE_GUIDE.md",
"AUGMENT_SETUP_GUIDE.md"
],
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "24.2.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@nx/esbuild": "^21.2.1",
"@nx/node": "^21.2.1",
"@nx/workspace": "^21.2.1",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"esbuild": "^0.25.5",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"nodemon": "^3.1.10",
"nx": "^21.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"ignore": "^7.0.5",
"simple-git": "^3.28.0",
"tslib": "^2.8.1"
}
}