-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 819 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 819 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
34
{
"name": "todo-list-mcp",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "npm run build && npm start",
"test": "npm run build && node dist/client.js",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js"
},
"keywords": [
"mcp",
"todo",
"api"
],
"author": "",
"license": "ISC",
"description": "Todo list MCP server",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"better-sqlite3": "^9.4.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.5.1",
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20.11.28",
"@types/uuid": "^9.0.8"
}
}