-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 977 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 977 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
{
"name": "@fazer-ai/mcp-obsidian",
"version": "1.2.0",
"module": "src/index.ts",
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fazer-ai/mcp-obsidian"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"mcp-obsidian",
"modelcontextprotocol",
"claude",
"obsidian",
"fazer-ai"
],
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "echo '#!/usr/bin/env node' > dist/index.js && bun build src/index.ts --target node >> dist/index.js",
"lint": "bun biome check",
"format": "bun biome check --write",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2"
}
}