-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 789 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 789 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
{
"name": "mcp-todo-server",
"version": "1.0.0",
"description": "MCP server for todo list management",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build-mcp": "tsc",
"build": "npm run build-mcp && concurrently \"npm install --prefix web && npm run build --prefix web\" \"npm install --prefix cli && npm run build --prefix cli\" && npm link --prefix cli",
"start": "concurrently \"./pocketbase/pocketbase serve\" \"npm run dev --prefix web\""
},
"keywords": [
"mcp",
"todo",
"server"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"pocketbase": "^0.26.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"concurrently": "^9.1.2",
"typescript": "^5.0.0"
}
}