-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.22 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": "@sunub/obsidian-mcp-server",
"version": "0.3.28",
"description": "A server for the Obsidian Model Context Protocol.",
"keywords": [
"obsidian",
"mcp",
"model context protocol"
],
"type": "module",
"bin": {
"obsidian-mcp-server": "build/index.js",
"obsidian-mcp-setup": "build/setup.js"
},
"homepage": "https://github.com/sunub/obsidian-mcp-server",
"repository": {
"type": "git",
"url": "https://github.com/sunub/obsidian-mcp-server"
},
"files": [
"build"
],
"exports": {
".": "./build/index.js"
},
"scripts": {
"test": "vitest",
"test:watch": "vitest --watch",
"metrics:report": "node scripts/vault-metrics-report.mjs",
"prepare": "npm run format && npm run build",
"prepublishOnly": "npm run build",
"build": "tsc && tsc-alias && shx chmod +x build/index.js",
"inspector": "npx -y @modelcontextprotocol/inspector node ./build/index.js",
"format": "npx biome format --write",
"lint": "npx biome lint --write",
"check": "npx biome check --write",
"cli": "npx tsx src/cli/index.tsx"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@lancedb/lancedb": "^0.27.2",
"@langchain/core": "^1.1.39",
"@langchain/textsplitters": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.17.5",
"@types/tinycolor2": "^1.4.6",
"ansi-regex": "^6.2.2",
"apache-arrow": "^18.1.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"clipboardy": "^5.3.1",
"commander": "^14.0.2",
"comment-json": "^5.0.0",
"dotenv": "^17.4.2",
"gray-matter": "^4.0.3",
"ink": "npm:@jrichman/ink@6.6.9",
"ink-picture": "^1.3.5",
"ink-spinner": "^5.0.0",
"inquirer": "^13.4.2",
"js-tiktoken": "^1.0.21",
"mnemonist": "^0.40.3",
"ollama": "^0.6.3",
"ora": "^9.3.0",
"prompts": "^2.4.2",
"react": "^19.2.5",
"string-width": "^8.2.0",
"strip-ansi": "^7.2.0",
"tinycolor2": "^1.6.0",
"tinygradient": "^2.0.1",
"wrap-ansi": "^10.0.0",
"yargs": "^18.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/node": "^24.3.1",
"@types/react": "^19.2.14",
"@types/yargs": "^17.0.35",
"jsdom": "^27.0.0",
"shx": "^0.4.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}