-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 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
{
"name": "mempalace-node",
"version": "1.0.0",
"description": "Local AI memory system — Node.js port of MemPalace. Verbatim storage, 4-layer memory stack, knowledge graph, MCP server. No API key required.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"mempalace": "dist/src/cli.js"
},
"files": [
"dist/src",
"README.md",
"README.zh.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"memory",
"ai",
"llm",
"agent",
"vector-search",
"embeddings",
"semantic-search",
"knowledge-graph",
"mcp",
"model-context-protocol",
"rag",
"chromadb-alternative",
"local-first",
"offline",
"sqlite"
],
"author": "SteamPig",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CN-Syndra/mempalace-node.git"
},
"homepage": "https://github.com/CN-Syndra/mempalace-node#readme",
"bugs": {
"url": "https://github.com/CN-Syndra/mempalace-node/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@xenova/transformers": "^2.17.0",
"better-sqlite3": "^11.0.0",
"sharp": "0.33.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}