-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.94 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
{
"name": "mnemex",
"version": "0.31.2",
"description": "Seven-layer code memory — benchmarked. AST-aware chunking, symbol graph with PageRank, semantic + BM25 retrieval. Personal, team-shared, offline-first, any embedding or LLM provider. MCP server + CLI.",
"type": "module",
"main": "./dist/index.js",
"bin": {
"mnemex": "dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"dev:mcp": "bun run src/index.ts --mcp",
"download-grammars": "bun run scripts/download-grammars.ts",
"build": "rm -rf dist && bun run download-grammars && bun build src/index.ts --outdir dist --target bun --external @lancedb/lancedb --external better-sqlite3 && cp src/benchmark-v2/storage/schema.sql dist/ && chmod +x dist/index.js",
"build:binary": "bun run download-grammars && bun build src/index.ts --compile --external @opentui/core --external @opentui/react --outfile mnemex",
"build:binary:linux": "bun run download-grammars && bun build src/index.ts --compile --target=bun-linux-x64 --external @opentui/core --external @opentui/react --outfile mnemex-linux-x64",
"build:binary:mac": "bun run download-grammars && bun build src/index.ts --compile --target=bun-darwin-arm64 --external @opentui/core --external @opentui/react --outfile mnemex-darwin-arm64",
"link": "npm link",
"unlink": "npm unlink -g mnemex",
"install-global": "bun run build && npm link",
"postinstall": "node scripts/postinstall.cjs || true",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"test": "bun test",
"test:integration": "bun test test/integration",
"test:watch": "bun test --watch",
"eval:rg:promptfoo": "cd eval/rg && npx promptfoo@latest eval --no-cache",
"eval:rg:report": "bun eval/rg/report.ts"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"@inquirer/search": "^3.0.0",
"@lancedb/lancedb": "^0.13.0",
"@lmstudio/sdk": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"@opentui/core": "0.1.82",
"@opentui/react": "0.1.82",
"@vscode/ripgrep": "^1.17.1",
"better-sqlite3": "^11.6.0",
"dotenv": "^16.4.7",
"minimatch": "^10.0.1",
"postgres": "^3.4.8",
"web-tree-sitter": "^0.25.10",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/better-sqlite3": "^7.6.12",
"@types/bun": "latest",
"typescript": "^5.7.2"
},
"files": [
"dist/",
"grammars/",
"scripts/"
],
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"preferGlobal": true,
"keywords": [
"claude",
"claude-code",
"mcp",
"model-context-protocol",
"code-indexing",
"semantic-search",
"vector-database",
"embeddings",
"openrouter"
],
"author": "Jack Rudenko <i@madappgang.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MadAppGang/mnemex"
},
"optionalDependencies": {
"@opentui/core-darwin-arm64": "0.1.82",
"@opentui/core-darwin-x64": "0.1.82",
"@opentui/core-linux-arm64": "0.1.82",
"@opentui/core-linux-x64": "0.1.82"
}
}