@velvetmonkey/flywheel-memory 2.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.
- package/dist/index.js +12760 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@velvetmonkey/flywheel-memory",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "MCP server that gives Claude full read/write access to your Obsidian vault. 76 tools for search, backlinks, graph queries, and mutations.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"flywheel-memory": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/velvetmonkey/flywheel-memory.git",
|
|
13
|
+
"directory": "packages/mcp-server"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/velvetmonkey/flywheel-memory/issues"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/velvetmonkey/flywheel-memory#readme",
|
|
19
|
+
"author": "velvetmonkey",
|
|
20
|
+
"keywords": [
|
|
21
|
+
"mcp",
|
|
22
|
+
"mcp-server",
|
|
23
|
+
"obsidian",
|
|
24
|
+
"pkm",
|
|
25
|
+
"markdown",
|
|
26
|
+
"knowledge-graph",
|
|
27
|
+
"wikilinks",
|
|
28
|
+
"backlinks",
|
|
29
|
+
"vault",
|
|
30
|
+
"claude",
|
|
31
|
+
"claude-code",
|
|
32
|
+
"local-first",
|
|
33
|
+
"daily-notes",
|
|
34
|
+
"zettelkasten"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --packages=external && chmod +x dist/index.js",
|
|
38
|
+
"dev": "npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --packages=external --watch",
|
|
39
|
+
"test": "vitest run",
|
|
40
|
+
"test:watch": "vitest",
|
|
41
|
+
"test:read": "vitest run test/read/",
|
|
42
|
+
"test:write": "vitest run test/write/",
|
|
43
|
+
"test:coverage": "vitest run --coverage",
|
|
44
|
+
"test:ci": "vitest run --reporter=github-actions",
|
|
45
|
+
"lint": "tsc --noEmit",
|
|
46
|
+
"clean": "rm -rf dist",
|
|
47
|
+
"prepublishOnly": "npm run build"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
51
|
+
"@velvetmonkey/vault-core": "^2.0.0",
|
|
52
|
+
"better-sqlite3": "^11.0.0",
|
|
53
|
+
"chokidar": "^4.0.0",
|
|
54
|
+
"gray-matter": "^4.0.3",
|
|
55
|
+
"simple-git": "^3.22.0",
|
|
56
|
+
"zod": "^3.22.4"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/better-sqlite3": "^7.6.0",
|
|
60
|
+
"@types/node": "^20.10.0",
|
|
61
|
+
"@vitest/coverage-v8": "^2.0.0",
|
|
62
|
+
"esbuild": "^0.24.0",
|
|
63
|
+
"fast-check": "^3.15.0",
|
|
64
|
+
"mcp-testing-kit": "^0.2.0",
|
|
65
|
+
"tsx": "^4.19.0",
|
|
66
|
+
"typescript": "^5.3.2",
|
|
67
|
+
"vitest": "^2.0.0"
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=18.0.0"
|
|
71
|
+
},
|
|
72
|
+
"license": "Apache-2.0",
|
|
73
|
+
"files": [
|
|
74
|
+
"dist",
|
|
75
|
+
"README.md",
|
|
76
|
+
"LICENSE"
|
|
77
|
+
],
|
|
78
|
+
"publishConfig": {
|
|
79
|
+
"access": "public"
|
|
80
|
+
}
|
|
81
|
+
}
|