package.json•1.52 kB
{
"name": "m365-core-server",
"version": "1.0.0",
"description": "Microsoft 365 Core MCP Server for managing distribution lists, security groups, M365 groups, and Exchange settings",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"start:http": "USE_HTTP=true node build/index.js",
"start:stdio": "node build/index.js",
"dev": "ts-node-esm src/index.ts",
"dev:http": "USE_HTTP=true ts-node-esm src/index.ts",
"dev:stateless": "USE_HTTP=true STATELESS=true ts-node-esm src/index.ts",
"test:http": "USE_HTTP=true PORT=8080 ts-node-esm src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"dependencies": {
"@azure/identity": "^4.2.1",
"@azure/msal-node": "^2.0.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@modelcontextprotocol/sdk": "^1.12.3",
"csv-writer": "^1.6.0",
"express": "^5.1.0",
"handlebars": "^4.7.8",
"html-pdf-node": "^1.0.7",
"isomorphic-fetch": "^3.0.0",
"moment": "^2.29.4",
"puppeteer": "^23.8.0",
"xlsx": "^0.18.5",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/isomorphic-fetch": "^0.0.39",
"@types/node": "^18.19.112",
"@types/puppeteer": "^5.4.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.9.0"
}
}