-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "@beledarian/mcp-local-memory",
"version": "1.0.7",
"description": "Local memory server for AI agents using SQLite and MCP",
"main": "dist/index.js",
"bin": {
"mcp-local-memory": "dist/index.js",
"memory": "dist/index.js"
},
"files": [
"dist/**/*",
"extensions/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"start": "node dist/index.js",
"test": "tsx tests/test_features.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^11.8.1",
"chrono-node": "^2.9.0",
"compromise": "^14.14.5",
"sharp": "^0.34.5",
"sqlite-vec": "^0.1.1",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"yargs-parser": "^21.1.1"
},
"optionalDependencies": {
"sqlite-vec-linux-arm64": "^0.1.7-alpha.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.19",
"@types/uuid": "^9.0.8",
"fs-extra": "^11.3.3",
"shx": "^0.4.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}