-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 944 Bytes
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
{
"name": "notesnook-mcp-server",
"version": "1.0.0",
"description": "MCP server for Notesnook — bidirectional sync with OpenClaw agent support",
"main": "dist/index.js",
"bin": {
"notesnook-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist"
},
"keywords": ["notesnook", "mcp", "openclaw", "notes", "sync"],
"author": "Christopher Rehm",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"adm-zip": "^0.5.12",
"better-sqlite3": "^12.6.2",
"chokidar": "^5.0.0",
"node-cron": "^4.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^25.3.0",
"@types/node-cron": "^3.0.11",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=22.0.0"
},
"type": "module"
}