-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "claude-subconscious",
"version": "2.0.2",
"description": "A subconscious for Claude Code. A Letta agent watches your sessions, accumulates context, and whispers guidance back.",
"author": "Letta <hello@letta.com> (https://letta.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/letta-ai/claude-subconscious.git"
},
"homepage": "https://github.com/letta-ai/claude-subconscious#readme",
"bugs": {
"url": "https://github.com/letta-ai/claude-subconscious/issues"
},
"keywords": [
"claude",
"claude-code",
"letta",
"subconscious",
"memory",
"multi-agent",
"async",
"deliberation"
],
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"sync": "tsx scripts/sync_letta_memory.ts",
"send": "tsx scripts/send_messages_to_letta.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@letta-ai/letta-code-sdk": "^0.1.0",
"tsx": "^4.7.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0",
"vitest": "^3.0.0"
}
}