-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "memoryvault",
"version": "1.11.0",
"description": "MemoryVault MCP server on Cloudflare Workers + D1 with OAuth and graph-based memory tools.",
"scripts": {
"test": "npm run type-check",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"type-check": "tsc",
"smoke:oauth-isolation": "bash scripts/smoke_oauth_isolation.sh"
},
"keywords": [
"mcp",
"memory",
"cloudflare-workers",
"d1",
"oauth",
"second-brain"
],
"author": "Pierre Guirguis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guirguispierre/memoryvault.git"
},
"bugs": {
"url": "https://github.com/guirguispierre/memoryvault/issues"
},
"homepage": "https://github.com/guirguispierre/memoryvault",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"overrides": {
"@hono/node-server": ">=1.19.10"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260329.1",
"typescript": "^6.0.2",
"wrangler": "^4.78.0"
}
}