package.json•1.23 kB
{
"name": "mcp-outlook-scheduler",
"version": "1.0.0",
"description": "MCP server for Microsoft Outlook meeting scheduling using Microsoft Graph",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p .",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"clean": "rimraf dist"
},
"keywords": ["mcp", "outlook", "microsoft-graph", "meeting-scheduler"],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@azure/identity": "^4.0.1",
"@azure/msal-node": "^2.6.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@modelcontextprotocol/sdk": "^0.4.0",
"dotenv": "^16.3.1",
"pino": "^8.17.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
}
}