smoking-mirror 1.0.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +259 -0
  3. package/dist/index.js +1196 -0
  4. package/package.json +61 -0
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "smoking-mirror",
3
+ "version": "1.0.0",
4
+ "description": "Obsidian vault intelligence MCP server - graph queries, wikilink suggestions, vault health",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "smoking-mirror": "./dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --packages=external",
12
+ "dev": "npx tsx src/index.ts",
13
+ "test": "bun test",
14
+ "inspect": "npx @modelcontextprotocol/inspector npx tsx src/index.ts",
15
+ "prepublishOnly": "npm run build"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "dependencies": {
23
+ "@modelcontextprotocol/sdk": "^1.25.1",
24
+ "gray-matter": "^4.0.3",
25
+ "zod": "^3.22.4"
26
+ },
27
+ "devDependencies": {
28
+ "@types/bun": "latest",
29
+ "@types/node": "^20.0.0",
30
+ "esbuild": "^0.24.0",
31
+ "tsx": "^4.19.0",
32
+ "typescript": "^5.0.0"
33
+ },
34
+ "keywords": [
35
+ "obsidian",
36
+ "mcp",
37
+ "model-context-protocol",
38
+ "claude",
39
+ "claude-code",
40
+ "knowledge-graph",
41
+ "wikilinks",
42
+ "backlinks",
43
+ "vault-health",
44
+ "markdown",
45
+ "pkm",
46
+ "zettelkasten"
47
+ ],
48
+ "author": "Ben Cassie",
49
+ "license": "MIT",
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git+https://github.com/bencassie/smoking-mirror.git"
53
+ },
54
+ "bugs": {
55
+ "url": "https://github.com/bencassie/smoking-mirror/issues"
56
+ },
57
+ "homepage": "https://github.com/bencassie/smoking-mirror#readme",
58
+ "engines": {
59
+ "node": ">=18"
60
+ }
61
+ }