@fazer-ai/mcp-obsidian 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +12709 -6216
  2. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fazer-ai/mcp-obsidian",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "module": "src/index.ts",
5
5
  "main": "dist/index.js",
6
6
  "bin": "dist/index.js",
@@ -26,19 +26,19 @@
26
26
  ],
27
27
  "scripts": {
28
28
  "dev": "bun run --watch src/index.ts",
29
- "build": "bun build src/index.ts --target node --outdir=dist",
29
+ "build": "echo '#!/usr/bin/env node' > dist/index.js && bun build src/index.ts --target node >> dist/index.js",
30
30
  "lint": "bun biome check",
31
31
  "format": "bun biome check --write",
32
32
  "prepublishOnly": "bun run build"
33
33
  },
34
34
  "devDependencies": {
35
- "@biomejs/biome": "1.9.4",
35
+ "@biomejs/biome": "^2.2.4",
36
36
  "@types/bun": "latest"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "typescript": "^5"
40
40
  },
41
41
  "dependencies": {
42
- "@modelcontextprotocol/sdk": "^1.10.2"
42
+ "@modelcontextprotocol/sdk": "^1.18.2"
43
43
  }
44
44
  }