-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1023 Bytes
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
{
"name": "sqlrite-notes",
"version": "0.14.0",
"description": "Example: a Node.js CLI that ingests a folder of markdown notes into SQLRite (hybrid HNSW + BM25 retrieval), then exposes the database to Claude Desktop / any MCP client via sqlrite-mcp.",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"sqlrite-notes": "bin/sqlrite-notes.mjs"
},
"main": "src/cli.mjs",
"files": [
"bin",
"src",
"README.md"
],
"scripts": {
"test": "node --test 'test/**/*.test.mjs'"
},
"dependencies": {
"@joaoh82/sqlrite": "^0.14.0"
},
"keywords": [
"sqlrite",
"mcp",
"claude",
"notes",
"obsidian",
"rag",
"vector-search",
"bm25"
],
"author": "SQLRite contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joaoh82/rust_sqlite",
"directory": "examples/nodejs-notes"
},
"homepage": "https://sqlritedb.com",
"publishConfig": {
"access": "public",
"provenance": true
}
}