-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.4 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.4 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
{
"name": "@strvmarv/total-recall",
"version": "1.0.0",
"description": "Multi-tiered memory and knowledge base plugin for TUI coding assistants",
"type": "module",
"bin": {
"total-recall": "bin/start.js"
},
"scripts": {
"prepare": "git config core.hooksPath git-hooks || true",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "node scripts/verify-binaries.js"
},
"files": [
"bin/",
"binaries/",
"models/",
"scripts/",
"eval/",
"skills/",
"agents/",
"hooks/",
".claude-plugin/",
".copilot-plugin/",
".cursor-plugin/",
".opencode/",
".mcp.json",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/strvmarv/total-recall.git"
},
"homepage": "https://github.com/strvmarv/total-recall",
"bugs": {
"url": "https://github.com/strvmarv/total-recall/issues"
},
"author": "strvmarv",
"license": "MIT",
"keywords": [
"mcp",
"memory",
"agent-memory",
"knowledge-base",
"rag",
"claude-code",
"copilot-cli",
"gemini-cli",
"opencode",
"cline",
"cursor",
"sqlite",
"vector-search",
"hybrid-search",
"embeddings",
"ai-coding",
"tui"
],
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"sqlite-vec": "^0.1.0"
}
}