package.json•1.72 kB
{
"name": "agent-rules-mcp",
"version": "1.4.1",
"description": "Model Context Protocol server that enables AI agents to fetch coding rules on-demand from GitHub repositories",
"main": "dist/index.js",
"bin": {
"agent-rules-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"build:prod": "npm run clean && tsc --project tsconfig.build.json",
"build:watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --run --coverage",
"clean": "if exist dist rmdir /s /q dist",
"prepack": "npm run build:prod",
"lint": "echo 'TypeScript compilation serves as linting' && npm run typecheck",
"typecheck": "tsc --noEmit",
"prepare": "npm run build:prod"
},
"keywords": [
"mcp",
"model-context-protocol",
"rules",
"development",
"best-practices",
"github",
"ai-agents",
"coding-standards",
"claude"
],
"author": "4regab",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/4regab/agent-rules-mcp.git"
},
"homepage": "https://github.com/4regab/agent-rules-mcp#readme",
"bugs": {
"url": "https://github.com/4regab/agent-rules-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"README-mcp.md",
"CONTRIBUTING.md",
"DEPLOYMENT.md",
"LICENSE",
"docs/**/*.md"
]
}