-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "matrix-mcp-server",
"version": "1.0.0",
"description": "MCP server that fronts a Matrix homeserver",
"main": "dist/http-server.js",
"type": "module",
"scripts": {
"start": "node dist/http-server.js",
"build": "tsc",
"dev": "NODE_OPTIONS=--no-warnings tsx watch src/http-server.ts",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.0",
"matrix-js-sdk": "^37.4.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.1",
"@types/node": "^22.15.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.4",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=20.0.0"
}
}