-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 876 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 876 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
{
"name": "@modelcontextprotocol/ext-tasks",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "MCP Tasks Extension - extension for task management in the Model Context Protocol",
"license": "Apache-2.0",
"scripts": {
"generate:schemas": "tsx scripts/generate-schemas.ts",
"check:schema": "npm run check:schema:ts && npm run check:schema:json",
"check:schema:ts": "tsc --noEmit",
"check:schema:json": "tsx scripts/generate-schemas.ts --check",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"mermaid": "^11.15.0",
"ts-to-zod": "^5.1.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"zod": "^4.4.3"
}
}