-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.65 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dida365-mcp-server",
"mcpName": "io.github.evalor/dida365",
"version": "0.2.2",
"description": "MCP Server for Dida365 (TickTick) Task Management Integration",
"type": "module",
"main": "./build/index.js",
"bin": {
"dida365-mcp": "build/index.js",
"dida365-mcp-server": "build/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"watch": "tsc --watch",
"dev": "npm run build && node build/index.js",
"start": "node build/index.js",
"debug": "npx @modelcontextprotocol/inspector debug-entry.bat",
"serve-public": "npx http-server public -p 8080 -o",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"build",
"public"
],
"keywords": [
"mcp",
"dida365",
"ticktick",
"task-management",
"oauth",
"typescript",
"model-context-protocol"
],
"author": {
"name": "evalor",
"email": "mipon@foxmail.com",
"url": "https://github.com/evalor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evalor/Dida365MCP.git"
},
"homepage": "https://github.com/evalor/Dida365MCP#readme",
"bugs": {
"url": "https://github.com/evalor/Dida365MCP/issues"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.13.2",
"zod": "^3.23.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.17.2",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}