forked from xenitV1/lemma
-
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) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.24 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": "lemma-mcp",
"version": "0.16.0",
"description": "Persistent memory layer for LLMs via MCP",
"type": "module",
"main": "dist/index.js",
"bin": {
"lemma": "./dist/index.js"
},
"exports": {
".": "./dist/index.js",
"./memory": "./dist/memory/index.js",
"./guides": "./dist/guides/index.js",
"./server": "./dist/server/index.js"
},
"files": [
"dist",
"assets/visualizer.html",
"assets/visualizer-demo.gif",
"README.md",
"README.tr.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"const fs=require('fs');const p=require('path');const s=p.join('assets','visualizer.html');const d=p.join('dist','server','visualizer.html');if(fs.existsSync(s)){fs.mkdirSync(p.dirname(d),{recursive:true});fs.copyFileSync(s,d);console.log('Copied visualizer.html to dist/server/')}else{console.warn('Warning: assets/visualizer.html not found')}\"",
"prepare": "npm run build",
"typecheck": "tsc --noEmit --project tsconfig.test.json",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "node --import tsx --import ./tests/_setup.ts --test tests/*.test.ts tests/db/*.test.ts tests/memory/*.test.ts tests/guides/*.test.ts tests/sessions/*.test.ts tests/server/*.test.ts tests/intelligence/*.test.ts",
"test:memory": "node --import tsx --import ./tests/_setup.ts --test tests/memory/*.test.ts",
"test:guides": "node --import tsx --import ./tests/_setup.ts --test tests/guides/*.test.ts",
"test:sessions": "node --import tsx --import ./tests/_setup.ts --test tests/sessions/*.test.ts",
"test:server": "node --import tsx --import ./tests/_setup.ts --test tests/server/*.test.ts",
"test:mcp": "node tests/manual/mcp-smoke.mjs"
},
"keywords": [
"mcp",
"memory",
"llm",
"claude",
"persistent",
"guides",
"context"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^12.9.0"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xenitV1/lemma.git"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}