forked from anandmt/deja
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 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
55
56
{
"name": "@anandt/deja",
"version": "0.1.2",
"description": "Claude Code forgets everything between sessions. deja fixes that.",
"type": "module",
"main": "dist/worker/main.js",
"bin": {
"deja": "bin/deja.cjs"
},
"files": [
"bin/",
"dist/",
"hooks.json",
"README.md"
],
"scripts": {
"build": "bun build src/worker/main.ts --outdir dist/worker --target bun && bun build src/cli/main.ts --outdir dist/cli --target bun && bun build src/hooks/session-start.ts src/hooks/session-stop.ts src/hooks/post-tool-use.ts src/hooks/prompt-submit.ts --outdir dist/hooks --target bun && bun build src/mcp/server.ts --outdir dist/mcp --target bun && bun build src/dashboard/serve.ts --outdir dist/dashboard --target bun && cp src/dashboard/index.html dist/dashboard/index.html && cp src/dashboard/logo.png dist/dashboard/logo.png && cp src/dashboard/favicon.png dist/dashboard/favicon.png",
"prepublishOnly": "bun run build",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "bun x tsc --noEmit"
},
"keywords": [
"claude",
"claude-code",
"memory",
"persistent-memory",
"mcp",
"ai",
"context",
"hooks",
"sqlite",
"local",
"privacy",
"offline",
"session",
"agent-memory"
],
"repository": {
"type": "git",
"url": "https://github.com/anandmt/deja.git"
},
"homepage": "https://github.com/anandmt/deja#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.3.6"
},
"license": "MIT"
}