-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 866 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 866 Bytes
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
{
"name": "hacknplan-mcp",
"version": "7.2.0",
"description": "HacknPlan MCP Server for Claude Code",
"type": "module",
"main": "dist/index.js",
"bin": {
"hacknplan-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "npm run build && node dist/index.js",
"dev": "tsx src/index.ts",
"test": "npm run build && node --test dist/index.test.js",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"hacknplan",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"async-mutex": "^0.5.0",
"form-data": "^4.0.5",
"mime-types": "^3.0.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/mime-types": "^3.0.1",
"@types/node": "^25.0.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}