-
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.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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": "@abivan-tech/mneme",
"version": "0.3.0",
"type": "module",
"description": "Mneme — MCP server for LLM identity continuity, self-memory, and autobiographical recall.",
"author": "abivan-tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ABIvan-Tech/Mneme.git"
},
"keywords": [
"mcp",
"mcp-server",
"memory",
"llm",
"continuity",
"identity",
"autobiographical-memory"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"lint": "eslint 'src/**/*.ts' --ext .ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"embed:backfill": "tsx scripts/backfill.ts",
"prepublishOnly": "npm run build"
},
"bin": {
"mnemo-self": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"@types/express": "^5.0.6",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.2.0",
"express": "^5.2.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vitest": "^4.1.0"
}
}