-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.72 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
64
65
66
67
{
"name": "obsidian-mcp-server",
"version": "1.0.0",
"description": "MCP server for Obsidian vault access - read and modify markdown files securely",
"main": "dist/index.js",
"bin": {
"obsidian-mcp-server": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"prepublishOnly": "npm run build"
},
"keywords": [
"obsidian",
"mcp",
"model-context-protocol",
"markdown",
"vault",
"typescript"
],
"author": "Christian Dalager",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.0",
"mime-types": "^2.1.35",
"winston": "^3.17.0",
"yaml": "^2.4.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dalager/obsidian-mcp"
},
"bugs": {
"url": "https://github.com/dalager/obsidian-mcp/issues"
},
"homepage": "https://github.com/dalager/obsidian-mcp"
}