-
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.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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": "infinite-memory",
"version": "0.1.8",
"description": "Infinite context windows for Claude via OpenMemory semantic retrieval",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test:isolation": "node tests/user-isolation.test.js",
"test:tag-filtering": "node tests/tag-filtering.test.js",
"test:large-message": "node tests/large-message-replacement.test.js"
},
"keywords": [
"claude",
"anthropic",
"ai-sdk",
"memory",
"openmemory",
"infinite-context",
"rag"
],
"author": "Edgar Pavlovsky <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/darkresearch/infinite-memory#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/darkresearch/infinite-memory.git"
},
"bugs": {
"url": "https://github.com/darkresearch/infinite-memory/issues"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.16",
"ai": "^5.0.50",
"openmemory-js": "^0.3.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "~5.9.2"
},
"peerDependencies": {
"@ai-sdk/anthropic": "^2.0.0",
"ai": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}