-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"name": "obsidian-mcp",
"version": "1.1.1",
"description": "MCP server for Claude AI to interact with Obsidian vault",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf build",
"prebuild": "npm run clean",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:html": "jest --coverage --coverageReporters=html",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand"
},
"keywords": [
"mcp",
"model-context-protocol",
"obsidian",
"knowledge-management",
"notes",
"markdown"
],
"author": "Russell Smith",
"private": true,
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"fuse.js": "^7.0.0",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.8.0",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.18",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-mock-extended": "^3.0.7",
"memfs": "^4.39.0",
"ts-jest": "^29.4.1",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
}
}