@betterdb/agent-memory 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@betterdb/agent-memory",
3
+ "version": "0.1.0",
4
+ "description": "Standalone agent memory: agent-cache short-term tiers plus a semantic long-term MemoryStore over valkey-search",
5
+ "keywords": [
6
+ "valkey",
7
+ "redis",
8
+ "valkey-search",
9
+ "agent",
10
+ "memory",
11
+ "llm"
12
+ ],
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/BetterDB-inc/monitor",
17
+ "directory": "packages/agent-memory"
18
+ },
19
+ "main": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js",
25
+ "require": "./dist/index.js"
26
+ }
27
+ },
28
+ "files": [
29
+ "dist"
30
+ ],
31
+ "dependencies": {
32
+ "@opentelemetry/api": "^1.9.0",
33
+ "prom-client": "^15.1.3",
34
+ "@betterdb/agent-cache": "0.7.0",
35
+ "@betterdb/valkey-search-kit": "0.1.0"
36
+ },
37
+ "engines": {
38
+ "node": ">=20.0.0"
39
+ },
40
+ "scripts": {
41
+ "build": "tsc",
42
+ "typecheck": "tsc --noEmit",
43
+ "test": "vitest run",
44
+ "test:watch": "vitest",
45
+ "clean": "rm -rf dist"
46
+ }
47
+ }