-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 831 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
33
{
"name": "mcp-typescript",
"version": "1.0.0",
"description": "MCP server and client implementation in TypeScript",
"type": "module",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"build": "npm run build --workspaces",
"dev:server": "npm run dev -w server",
"dev:client": "npm run dev -w client",
"test": "npm test --workspaces",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{ts,json,md}\""
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
}
}