package.json•1.32 kB
{
"name": "d2l-mcp-server",
"version": "1.0.1",
"description": "MCP server for D2L Brightspace API with automated authentication",
"type": "module",
"main": "dist/index.js",
"bin": {
"d2l-mcp": "dist/index.js",
"d2l-mcp-auth": "dist/auth-cli.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"d2l",
"brightspace",
"lms",
"education",
"claude",
"ai"
],
"author": "Bence Redmond",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/general-mudkip/d2l-mcp-server"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"auth": "node dist/auth-cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "D2L_INTEGRATION_TESTS=true D2L_COURSE_ID=68929 vitest run --config vitest.integration.config.ts",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"postinstall": "playwright install chromium"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"mammoth": "^1.11.0",
"playwright": "^1.40.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.0.14",
"typescript": "^5.3.0",
"vitest": "^4.0.14"
}
}