-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.53 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
{
"name": "exe-agent-memory",
"version": "1.0.1",
"description": "Persistent memory and semantic search for Claude Code agents via MCP.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/AskExe/exe-agent-memory.git"
},
"homepage": "https://github.com/AskExe/exe-agent-memory",
"keywords": [
"claude-code",
"claude",
"mcp",
"memory",
"ai-agents",
"embeddings",
"vector-search",
"libsql",
"rag",
"model-context-protocol",
"semantic-search"
],
"bin": {
"exe-agent-memory": "./dist/bin/install.js"
},
"files": [
"dist",
"package.json",
"LICENSE"
],
"exports": {
"./lib/*": "./dist/lib/*.js",
"./hooks/*": "./dist/hooks/*.js",
"./mcp/server": "./dist/mcp/server.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"build": "tsup",
"deploy": "tsup && npm install -g . && node dist/bin/install.js --global",
"postinstall": "node dist/bin/install.js 2>/dev/null || true",
"prepublishOnly": "npm run typecheck && npm run build && npm run test"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"bip39": "^3.1.0",
"keytar": "^7.9.0",
"node-llama-cpp": "^3.18.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
}
}