forked from bitbonsai/mcpvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.84 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
{
"name": "@bitbonsai/mcpvault",
"version": "0.12.1",
"description": "Universal AI bridge for Obsidian vaults - connect any MCP-compatible assistant",
"homepage": "https://mcpvault.org",
"author": "bitbonsai",
"license": "MIT",
"type": "module",
"packageManager": "npm@10.9.0+sha512.65a9c38a8172948f617a53619762cd77e12b9950fe1f9239debcb8d62c652f2081824b986fee7c0af6c0a7df615becebe4bf56e17ec27214a87aa29d9e038b4b",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"bin": {
"mcpvault": "dist/server.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"start": "tsx server.ts",
"website": "cd website && bun dev",
"build": "tsc --project tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test",
"prepack": "npm install",
"publish:dry": "npm publish --dry-run",
"publish:beta": "npm publish --tag beta",
"publish:latest": "npm publish"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"gray-matter": "^4.0.3",
"trash": "^10.1.1",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^26.0.0",
"tsx": "^4.20.6",
"typescript": "^6.0.2",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitbonsai/mcpvault.git"
},
"keywords": [
"mcp",
"obsidian",
"model-context-protocol",
"universal",
"ai-bridge",
"mcp-server",
"claude",
"chatgpt",
"ai",
"knowledge-management",
"pkm",
"vault",
"notes",
"markdown",
"future-proof",
"open-standard"
],
"publishConfig": {
"access": "public"
}
}