-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.23 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
{
"name": "productive-mcp",
"version": "1.1.3",
"type": "module",
"main": "./build/index.js",
"bin": {
"productive-mcp": "./build/index.js"
},
"files": [
"build",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"dev": "tsc --watch",
"start": "node build/index.js",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"productive",
"productive.io",
"api",
"claude",
"model-context-protocol",
"ai",
"project-management"
],
"author": "jayat3dn",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/berwickgeek/productive-mcp.git"
},
"bugs": {
"url": "https://github.com/berwickgeek/productive-mcp/issues"
},
"homepage": "https://github.com/berwickgeek/productive-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"description": "MCP server for Productive.io API integration",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"dotenv": "^16.6.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^24.0.4",
"typescript": "^5.8.3",
"vitest": "^4.1.6"
}
}