package.json•1.71 kB
{
"name": "basecamp-mcp",
"version": "1.0.1",
"description": "Model Context Protocol (MCP) server for Basecamp integration. Enables LLMs to interact with Basecamp projects, messages, todos, comments, people, and kanban boards.",
"type": "module",
"main": "dist/index.js",
"bin": {
"basecamp-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"clean": "rm -rf dist",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --write .",
"lint:check": "biome lint .",
"check": "biome check --write .",
"check:ci": "biome check .",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo 'All good'"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"model-context-protocol",
"basecamp",
"basecamp-api",
"llm",
"ai",
"integration",
"project-management"
],
"author": "Stefano Verna <stefano.verna@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stefanoverna/basecamp-mcp.git"
},
"bugs": {
"url": "https://github.com/stefanoverna/basecamp-mcp/issues"
},
"homepage": "https://github.com/stefanoverna/basecamp-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"basecamp-client": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.67.0",
"@biomejs/biome": "2.3.0",
"@types/node": "^22.10.0",
"dotenv": "^17.2.3",
"np": "^10.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"xml2js": "^0.6.2"
}
}