-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 948 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 948 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": "selfhub-mcp-server",
"version": "0.1.0",
"description": "A Model Context Protocol server",
"main": "build/index.js",
"type": "module",
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"dev": "tsx watch src/index.ts",
"start": "node build/index.js",
"prepare": "pnpm run build",
"typecheck": "tsc --noEmit",
"setup": "tsx src/setup.ts",
"seed": "tsx src/seed.ts",
"clean": "rimraf build",
"reset": "pnpm clean && pnpm build",
"quick-start": "pnpm build && pnpm seed && pnpm start"
},
"keywords": [
"mcp",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"dotenv": "^17.2.3",
"mongoose": "^9.0.0"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}