{
  "name": "telegram-chat-bot-mcp",
  "version": "0.1.17",
  "description": "MCP server for Telegram Bot API with Markdown support",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "telegram-chat-bot-mcp": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "prepublishOnly": "npm run build",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "lint": "eslint src/**/*.ts scripts/**/*.ts",
    "lint:fix": "eslint src/**/*.ts scripts/**/*.ts --fix",
    "test": "npm run build && echo 'Build successful - MCP server ready'",
    "test:mcp:server": "tsx scripts/test-mcp-server.ts",
    "test:telegram:text": "tsx scripts/test-telegram-text.ts",
    "test:telegram:markdown": "tsx scripts/test-telegram-markdown.ts",
    "test:clean:logs": "npm run build && tsx scripts/test-clean-old-logs.ts",
    "test:table": "npm run build && tsx scripts/test-table-conversion.ts",
    "test:logger:fallback": "npm run build && tsx scripts/test-logger-fallback.ts",
    "test:integration": "npm run build && tsx scripts/test-integration.ts"
  },
  "keywords": [
    "mcp",
    "telegram",
    "telegram-bot",
    "bot-api",
    "markdown",
    "html",
    "model-context-protocol"
  ],
  "author": "ice3x2",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ice3x2/telegram-chat-bot-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/ice3x2/telegram-chat-bot-mcp/issues"
  },
  "homepage": "https://github.com/ice3x2/telegram-chat-bot-mcp#readme",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.20.0",
    "@rollup/rollup-win32-x64-msvc": "^4.59.0",
    "axios": "^1.0.0",
    "marked": "^16.4.1",
    "zod": "^3.21.4"
  },
  "devDependencies": {
    "@types/express": "^4.17.25",
    "@types/node": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^8.46.2",
    "@typescript-eslint/parser": "^8.46.2",
    "dotenv": "^17.3.1",
    "eslint": "^9.38.0",
    "express": "^4.21.2",
    "ts-node": "^10.0.0",
    "tsx": "^4.20.6",
    "typescript": "^5.0.0",
    "vitest": "^4.1.0"
  }
}
