package.json•2.88 kB
{
"name": "greptile-mcp-server",
"version": "3.0.4",
"description": "Modern TypeScript MCP server for AI-powered code search and querying with Greptile API",
"type": "module",
"bin": {
"greptile-mcp-server": "./dist/cli.js"
},
"main": "./dist/index.js",
"module": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": {
"import": "./dist/cli.js",
"types": "./dist/cli.d.ts"
},
"./smithery": {
"import": "./dist/smithery.js",
"types": "./dist/smithery.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev",
"build:legacy": "tsup && chmod +x dist/cli.js",
"dev:legacy": "tsx src/cli.ts",
"dev:server": "tsx src/server.ts",
"test": "ts-mocha tests/**/*.test.ts",
"test:watch": "ts-mocha tests/**/*.test.ts --watch",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write src tests",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepack": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"start": "node dist/cli.js",
"smithery:build": "docker build -f Dockerfile.smithery -t greptile-mcp:smithery .",
"smithery:validate": "smithery validate smithery.yaml",
"smithery:deploy": "smithery deploy",
"smithery:logs": "smithery logs",
"smithery:status": "smithery status"
},
"keywords": [
"mcp",
"model-context-protocol",
"greptile",
"ai",
"code-search",
"typescript",
"cli",
"npx",
"repository-analysis"
],
"author": "Greptile MCP Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sosacrazy126/greptile-mcp.git"
},
"bugs": {
"url": "https://github.com/sosacrazy126/greptile-mcp/issues"
},
"homepage": "https://github.com/sosacrazy126/greptile-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"ora": "^8.0.1",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.17",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}