forked from southleft/harvest-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "harvest-mcp",
"version": "0.1.0",
"description": "The Beyond Group's hosted Harvest MCP server — connects TBG teammates to Harvest time tracking via claude.ai Connectors. Forked from southleft/harvest-mcp.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TheBeyondGroup/harvest-mcp.git"
},
"homepage": "https://github.com/TheBeyondGroup/harvest-mcp",
"scripts": {
"build": "npx wrangler deploy --dry-run --outdir dist",
"dev": "npx wrangler dev",
"deploy": "npx wrangler deploy",
"deploy:staging": "npx wrangler deploy --env staging",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage"
},
"keywords": [
"mcp",
"model-context-protocol",
"harvest",
"time-tracking",
"ai"
],
"author": "The Beyond Group",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.4",
"hono": "^4.11.1",
"lru-cache": "^11.2.4",
"zod": "^3.23.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251217.0",
"@types/node": "^20.10.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}