-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.67 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "hippo-memory",
"version": "0.39.0",
"description": "Biologically-inspired memory system for AI agents. Decay by default, strength through use.",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"openclaw": {
"extensions": [
"./extensions/openclaw-plugin/index.ts"
]
},
"bin": {
"hippo": "bin/hippo.js"
},
"files": [
"dist",
"dist-ui",
"bin",
"scripts/postinstall.cjs",
"openclaw.plugin.json",
"extensions/openclaw-plugin"
],
"scripts": {
"baseline": "npm run build && npm test",
"build": "tsc && tsc -p tsconfig.benchmarks.json",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "node scripts/postinstall.cjs",
"smoke:pack": "node scripts/smoke-pack.mjs",
"smoke:openclaw-install": "node scripts/smoke-openclaw-install.mjs",
"build:ui": "cd ui && npm install && npm run build",
"build:all": "npm run build && npm run build:ui",
"prepublishOnly": "npm run build:all"
},
"keywords": [
"memory",
"ai",
"agents",
"llm",
"claude",
"context",
"recall",
"episodic",
"semantic",
"embeddings",
"hybrid-search"
],
"author": "Keith",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kitfunso/hippo-memory.git"
},
"engines": {
"node": ">=22.5.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.4.0",
"vitest": "^1.4.0"
},
"peerDependenciesMeta": {
"@xenova/transformers": {
"optional": true
}
},
"optionalDependencies": {
"@xenova/transformers": "^2.17.2"
}
}