-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
{
"name": "claude-dev-memory",
"version": "1.0.0",
"description": "MCP Server for Claude Code project memory - multi-block Core Memory (project/learnings/decisions) via Letta Cloud",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"claude-dev-memory": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"claude",
"claude-code",
"letta",
"memory",
"ai",
"long-term-memory",
"development"
],
"author": "miles990",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/miles990/claude-dev-memory.git"
},
"bugs": {
"url": "https://github.com/miles990/claude-dev-memory/issues"
},
"homepage": "https://github.com/miles990/claude-dev-memory#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1"
},
"devDependencies": {
"@types/node": "^20.19.27",
"typescript": "^5.3.0",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=18.0.0"
}
}