package.json•2.89 kB
{
"name": "@nazruden/clickup-server",
"version": "1.1.5",
"description": "ClickUp MCP Server for LLM integration",
"main": "dist/server.js",
"bin": {
"clickup-server": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"start:env": "cross-env NODE_ENV=production node dist/index.js",
"dev": "ts-node-dev --quiet --no-notify --respawn --transpile-only src/index.ts",
"dev:env": "cross-env NODE_ENV=development ts-node-dev --quiet --no-notify --respawn --transpile-only src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "npm run build && jest --testPathPattern=__integration__",
"test:integration:watch": "jest --testPathPattern=__integration__ --watch",
"test:unit": "jest --testPathPattern=__tests__ --testPathIgnorePatterns=__integration__",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"config:set": "node bin/config-env.js set",
"config:get": "node bin/config-env.js get",
"config:list": "node bin/config-env.js list",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"ci:validate": "npm run lint && npm run type-check && npm run test && npm run build",
"clean": "rm -rf dist coverage .nyc_output"
},
"files": [
"dist",
"bin",
"public",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"clickup",
"mcp",
"llm",
"api",
"server"
],
"author": "MCP Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"axios": "^1.11.0",
"cross-env": "^10.0.0",
"dotenv": "^17.2.1",
"express": "^5.1.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"add-js-extension": "^1.0.4",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"open": "^10.2.0",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=14.0.0"
},
"mcp": {
"type": "server",
"configFile": "src/mcp-config.ts",
"commands": {
"start": "npm start",
"dev": "npm run dev"
},
"capabilities": [
"oauth",
"api-integration",
"rate-limiting"
]
}
}