-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bear-notes-mcp",
"version": "3.0.1",
"description": "Opinionated MCP for Bear Notes. Relevance-ranked search across titles, bodies, hierarchical tags. Offline-first.",
"type": "module",
"main": "dist/main.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/main.ts --debug",
"start": "node dist/main.js",
"test": "vitest run",
"test:system": "npm run build && vitest run --config vitest.system.config.ts",
"test:watch": "vitest",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"format": "prettier --write src",
"format:check": "prettier --check src",
"check": "npm run lint:check && npm run format:check",
"fix": "npm run lint && npm run format",
"prepublishOnly": "npm run build && mv docs/user/NPM.md README.md"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"debug": "^4.4.3",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.128",
"@anthropic-ai/mcpb": "^2.1.2",
"@modelcontextprotocol/inspector": "0.21.2",
"@types/debug": "4.1.13",
"@types/node": "24.12.2",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"eslint": "9.39.4",
"eslint-plugin-import": "^2.32.0",
"prettier": "3.8.3",
"promptfoo": "^0.121.9",
"tsx": "^4.21.0",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"engines": {
"node": "^24.13.0"
},
"keywords": [
"bear app",
"bear notes",
"markdown notes",
"notes management",
"productivity",
"typescript",
"mcp",
"mcp-server",
"ai-assistant"
],
"author": {
"name": "Serhii Vasylenko",
"email": "serhii@vasylenko.info",
"url": "https://devdosvid.blog"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vasylenko/bear-notes-mcp.git"
},
"bugs": {
"url": "https://github.com/vasylenko/bear-notes-mcp/issues"
},
"homepage": "https://github.com/vasylenko/bear-notes-mcp#readme",
"bin": {
"bear-notes-mcp": "dist/main.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
}
}