-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@mempalace/core",
"version": "0.1.1",
"description": "Native TypeScript AI memory system and MCP server (Zero-LLM, LanceDB)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"mempalace": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/adshaa/mempalacejs.git"
},
"bugs": {
"url": "https://github.com/adshaa/mempalacejs/issues"
},
"homepage": "https://github.com/adshaa/mempalacejs#readme",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"start": "node dist/cli/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "npm run test && npm run build",
"postinstall": "node dist/cli/index.js setup || true"
},
"keywords": [
"typescript",
"mcp",
"mcp-server",
"model-context-protocol",
"memory",
"agentic-memory",
"llm-memory",
"rag",
"local-ai",
"zero-llm",
"vector-database",
"lancedb",
"knowledge-graph",
"transformers-js",
"claude",
"claude-code"
],
"author": "Mempalace Contributors",
"license": "ISC",
"type": "commonjs",
"files": [
"dist",
"hooks",
"docs",
"README.md",
"DIALECT.md",
"LICENSE"
],
"dependencies": {
"@lancedb/lancedb": "^0.27.2",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.8.0"
},
"devDependencies": {
"@clack/prompts": "^1.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/better-sqlite3": "^7.6.13",
"@types/commander": "^2.12.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.3",
"commander": "^14.0.3",
"fast-json-stringify": "^6.3.0",
"ignore": "^7.0.5",
"js-yaml": "^4.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.3",
"zod": "^4.3.6"
}
}