-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.33 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@doist/todoist-mcp",
"version": "11.0.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"mcpName": "net.todoist/mcp",
"bin": {
"todoist-mcp": "dist/main.js",
"todoist-mcp-http": "dist/main-http.js"
},
"files": [
"dist",
"!dist/dev",
"scripts",
"package.json",
"LICENSE",
"README.md"
],
"license": "MIT",
"description": "The official Todoist MCP server",
"repository": {
"type": "git",
"url": "https://github.com/Doist/todoist-mcp"
},
"keywords": [
"todoist",
"mcp",
"ai",
"tools"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "npm run build:lib && npm run build:apps",
"build:lib": "vite build",
"build:apps": "vite build --config src/mcp-apps/vite.config.ts",
"postbuild": "chmod +x dist/main.js && chmod +x dist/main-http.js",
"start": "npm run build && npx @modelcontextprotocol/inspector node dist/main.js",
"dev": "concurrently \"npm run build:lib -- --watch\" \"npm run build:apps -- --watch\" \"npx @modelcontextprotocol/inspector npx nodemon --quiet --watch dist --ext js,html --exec node dist/main.js\"",
"dev:http": "concurrently \"npm run build:lib -- --watch\" \"npm run build:apps -- --watch\" \"npx nodemon --quiet --watch dist --ext js,html --exec node dist/main-http.js\"",
"start:http": "npm run build && node dist/main-http.js",
"dev:apps": "vite build --watch --config src/mcp-apps/vite.config.ts",
"dev:widget": "npm run dev:apps",
"setup": "cp .env.example .env && npm install && npm run build",
"tool": "tsx scripts/run-tool.ts",
"tool:list": "tsx scripts/run-tool.ts --list",
"test:executable": "npm run build && node scripts/test-executable.cjs",
"type-check": "npx tsc --noEmit",
"format:check": "oxlint src scripts && oxfmt --check",
"format:fix": "oxlint src scripts --fix && oxfmt",
"lint:schemas": "npm run build && npx tsx scripts/validate-schemas.ts",
"check": "oxlint src scripts && oxfmt --check && npm run lint:schemas",
"prepublishOnly": "npm run build && npm test",
"prepare": "husky"
},
"dependencies": {
"@doist/todoist-sdk": "10.5.0",
"@modelcontextprotocol/ext-apps": "1.2.2",
"date-fns": "4.1.0",
"dompurify": "3.3.3",
"dotenv": "17.3.1",
"express": "5.2.1",
"zod": "4.3.6"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.25.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "0.22.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@types/dompurify": "3.2.0",
"@types/express": "5.0.6",
"@types/morgan": "1.9.10",
"@types/node": "22.20.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.2.0",
"concurrently": "9.2.3",
"conventional-changelog-conventionalcommits": "9.3.1",
"gpt-tokenizer": "3.4.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"morgan": "1.11.0",
"nodemon": "3.1.14",
"oxfmt": "0.55.0",
"oxlint": "1.70.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"rimraf": "6.1.3",
"semantic-release": "25.0.5",
"snarkdown": "2.0.0",
"tsx": "4.22.4",
"typescript": "6.0.3",
"vite": "7.3.5",
"vite-plugin-dts": "4.5.4",
"vite-plugin-singlefile": "2.3.3",
"vitest": "4.1.9"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxlint --fix",
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{md,yml,yaml,css,json}": [
"oxfmt --no-error-on-unmatched-pattern"
],
"src/tools/!(*.test).ts": [
"npm run lint:schemas"
],
"src/index.ts": [
"npm run lint:schemas"
],
"scripts/validate-schemas.ts": [
"npm run lint:schemas"
]
}
}