package.json•1.51 kB
{
"name": "zendao-mcp",
"version": "1.0.0",
"description": "MCP 服务器,用于让 LLM 操作禅道项目管理系统的 API",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageReporters=text --coverageReporters=html",
"test:startup": "jest --testPathPattern=startup",
"test:token": "jest --testPathPattern=token",
"test:tools": "jest --testPathPattern='tools/'",
"test:errors": "jest --testPathPattern=errors",
"test:performance": "jest --testPathPattern=performance",
"test:integration": "jest --testPathPattern=integration",
"test:all": "./tests/run-all-tests.sh",
"test:clean": "rimraf coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist"
},
"keywords": ["mcp", "llm", "zendao", "project-management"],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"dotenv": "^16.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}