-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"name": "memorex",
"version": "0.9.0",
"description": "Passive memory layer for Claude Code — CLI + auto-inject, pre-compact snapshot, subagent capture, knowledge graph, revision history, gain analytics, doctor diagnostics, hybrid semantic search, SQLite FTS5",
"type": "module",
"bin": {
"memorex": "./dist/index.js"
},
"scripts": {
"build": "tsc && node scripts/build-hooks.mjs",
"build:tsc": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"typecheck": "tsc --noEmit",
"bench": "npm run build && node scripts/bench.mjs",
"clean": "rm -rf dist/",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"better-sqlite3": "^11.9.1",
"zod": "^3.24.2"
},
"optionalDependencies": {
"@xenova/transformers": "^2.17.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.1.1",
"esbuild": "^0.28.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.1",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"claude",
"claude-code",
"mcp",
"memory",
"sqlite",
"cli",
"embeddings",
"semantic-search"
],
"author": "mitre88",
"license": "MIT"
}