-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 966 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 966 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
{
"name": "repomemory",
"version": "0.1.0",
"description": "Repo-aware memory layer for coding agents. Capture sessions, share context across Claude/Codex/OpenHands via MCP.",
"type": "module",
"bin": { "repomemory": "./dist/cli/index.js" },
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"dependencies": {
"commander": "^12.1.0",
"better-sqlite3": "^11.7.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"chalk": "^5.3.0",
"nanoid": "^5.0.0",
"yaml": "^2.6.0",
"glob": "^11.0.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"vitest": "^2.1.0",
"@types/node": "^22.0.0",
"@types/better-sqlite3": "^7.6.0"
},
"engines": { "node": ">=20" },
"license": "MIT",
"keywords": ["memory", "agent", "mcp", "context", "repo", "coding-agent", "claude", "codex", "typescript"]
}