-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "bear-mcp-server",
"version": "1.0.0",
"description": "MCP server for interfacing with Bear's SQLite database",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "jest",
"lint": "eslint src tests --ext .ts",
"type-check": "tsc --noEmit",
"clean": "rimraf dist coverage .nyc_output",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"bear",
"sqlite",
"notes",
"claude"
],
"author": "Bear MCP Integration",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"dotenv": "^16.5.0",
"sqlite3": "^5.1.6",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.19.1",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"esbuild": "^0.25.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"jest": "^29.7.0",
"prettier": "^3.6.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}