-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"name": "gemini-obsidian",
"version": "1.7.0",
"description": "Obsidian Vault integration with local RAG capabilities",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=dist/index.js --format=cjs --external:@lancedb/lancedb --external:onnxruntime-node --external:sharp --banner:js=\"var import_meta = { url: 'file://' + __filename };\" --define:import.meta=import_meta",
"type-check": "tsc --noEmit",
"start": "node dist/index.js",
"test": "vitest run"
},
"keywords": [
"gemini-cli",
"extension",
"obsidian",
"rag",
"lancedb",
"ai",
"llm",
"vector-search",
"mcp"
],
"author": "thoreinstein",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thoreinstein/gemini-obsidian.git"
},
"homepage": "https://github.com/thoreinstein/gemini-obsidian",
"bugs": {
"url": "https://github.com/thoreinstein/gemini-obsidian/issues"
},
"type": "commonjs",
"dependencies": {
"@lancedb/lancedb": "^0.27.2",
"onnxruntime-node": "1.14.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/glob": "^8.1.0",
"@types/md5": "^2.3.6",
"@types/node": "^25.2.0",
"@xenova/transformers": "^2.17.2",
"esbuild": "^0.28.0",
"glob": "^13.0.1",
"gray-matter": "^4.0.3",
"md5": "^2.3.0",
"typescript": "^6.0.2",
"vitest": "^3.2.1"
}
}