package.json•1.71 kB
{
"name": "whatap-mxql-cli",
"version": "1.0.0",
"description": "WhaTap MXQL CLI and MCP Server - Query and manage WhaTap monitoring data",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"whatap-mxql": "./bin/whatap-mxql",
"whatap-mxql-mcp": "./bin/whatap-mxql-mcp"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPatterns='test/.*\\.test\\.ts$'",
"test:integration": "jest --testPathPatterns='test/.*\\.integration\\.test\\.ts$'",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "eslint src/**/*.ts test/**/*.ts --fix",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"clean": "rm -rf dist coverage"
},
"keywords": [
"whatap",
"mxql",
"cli",
"mcp",
"monitoring",
"apm"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.1",
"axios": "^1.13.2",
"axios-cookiejar-support": "^6.0.4",
"chalk": "^4.1.2",
"cheerio": "^1.1.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"inquirer": "^8.2.7",
"tough-cookie": "^5.1.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"axios-mock-adapter": "^2.1.0",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}