-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 925 Bytes
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
{
"name": "xmcp-server",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"inspect": "bunx @modelcontextprotocol/inspector bun run src/server.ts",
"type-check": "tsc --noEmit",
"lint-staged": "lint-staged",
"lint-check": "biome lint --write ./src ./inspector",
"format": "biome format --write ./src ./inspector",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write --no-errors-on-unmatched ./src"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.3",
"express": "5.1.0",
"zod": "3.25.64"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/express": "5.0.3",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"typescript": "5.8.3"
}
}