-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 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
{
"name": "dyspatch-mcp",
"version": "0.0.9",
"description": "MCP server for the Dyspatch API for www.dyspatch.io",
"type": "module",
"main": "dist/index.js",
"bin": {
"dyspatch-mcp": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"model-context-protocol",
"dyspatch",
"email",
"templates",
"claude",
"ai"
],
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"version": "node scripts/sync-manifest-version.mjs && git add manifest.json",
"clean": "rm -rf dist && rm -rf mcpb-dist && rm *.mcpb",
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/http.ts",
"start": "node dist/index.js",
"start:http": "node dist/http.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.config.integration.ts",
"build:mcpb": "node scripts/build-mcpb.mjs",
"pack:mcpb": "pnpm build:mcpb && node scripts/pack-mcpb.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/getdyspatch/dyspatch-mcp.git"
},
"author": "sendwithus",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/node": "^22.19.15",
"esbuild": "^0.28.0",
"msw": "^2.12.14",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}