-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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": "recall",
"version": "0.5.0",
"description": "RECALL - Persistent memory system for coding agents",
"type": "module",
"bin": {
"mem": "./dist/index.js",
"mem-mcp": "./dist/mcp-server.js"
},
"scripts": {
"build": "tsup src/index.ts src/mcp-server.ts --format esm --dts --clean --external bun:sqlite && bun -e \"const fs=require('fs');['dist/index.js','dist/mcp-server.js'].forEach(f=>{const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!/usr/bin/env node'))throw new Error(f+' missing expected shebang');fs.writeFileSync(f,c.replace('#!/usr/bin/env node','#!/usr/bin/env bun'))})\"",
"dev": "tsup src/index.ts src/mcp-server.ts --format esm --watch --external bun:sqlite",
"test": "bun test",
"lint": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"commander": "^12.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/edheltzel/Recall"
},
"keywords": [
"claude-code",
"ai-memory",
"sqlite",
"fts5",
"mcp"
],
"author": "edheltzel",
"license": "MIT"
}