package.json•1.41 kB
{
"name": "eurekalabo-mcp-server",
"version": "1.0.0",
"description": "MCP server for Eureka Labo task management with change tracking",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"build:mcp": "tsc",
"build:cli": "npm --prefix cli run build",
"build:all": "npm run build:mcp && npm run build:cli",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"setup:deps": "npm install && npm --prefix cli install",
"setup:build": "npm run build:all",
"setup:cli": "npm --prefix cli link",
"setup:hooks": "node cli/dist/index.js hooks install --mode guidance",
"setup:hooks:strict": "node cli/dist/index.js hooks install --mode strict --force",
"setup:skills": "node cli/dist/index.js skills install all",
"setup:all": "npm run setup:deps && npm run setup:build && npm run setup:cli && npm run setup:hooks && npm run setup:skills",
"postinstall": "npm --prefix cli install"
},
"keywords": [
"mcp",
"model-context-protocol",
"task-management",
"eureka-labo"
],
"author": "Eureka Labo Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}