package.json•876 B
{
"name": "moodle-mcp",
"version": "1.0.0",
"description": "MCP server to interact with Moodle via REST.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"fastify": "^4.28.1",
"fastify-cors": "^8.5.0",
"dotenv": "^16.4.5",
"zod": "^3.23.8",
"pino": "^9.4.0"
},
"devDependencies": {
"typescript": "^5.6.3",
"tsx": "^4.19.2",
"@types/node": "^22.5.4",
"eslint": "^9.9.0",
"@eslint/js": "^9.9.0",
"typescript-eslint": "^8.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"@types/jest": "^29.5.13"
},
"engines": {
"node": ">=20"
},
"license": "MIT"
}