-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.49 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
{
"name": "@noteplanco/noteplan-mcp",
"version": "1.1.23",
"description": "MCP server for NotePlan note and task management",
"main": "dist/index.js",
"type": "module",
"bin": {
"noteplan-mcp": "dist/index.js"
},
"files": [
"dist/",
"docs/",
"scripts/calendar-helper",
"scripts/reminders-helper",
"README.md"
],
"os": [
"darwin"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run build:swift && tsc",
"build:swift": "swiftc -target arm64-apple-macosx14.0 -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __info_plist -Xlinker scripts/calendar-helper-Info.plist -o scripts/calendar-helper-arm64 scripts/calendar-helper.swift && swiftc -target x86_64-apple-macosx14.0 -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __info_plist -Xlinker scripts/calendar-helper-Info.plist -o scripts/calendar-helper-x86_64 scripts/calendar-helper.swift && lipo -create scripts/calendar-helper-arm64 scripts/calendar-helper-x86_64 -output scripts/calendar-helper && rm scripts/calendar-helper-arm64 scripts/calendar-helper-x86_64 && codesign -s - scripts/calendar-helper && swiftc -target arm64-apple-macosx14.0 -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __info_plist -Xlinker scripts/reminders-helper-Info.plist -o scripts/reminders-helper-arm64 scripts/reminders-helper.swift && swiftc -target x86_64-apple-macosx14.0 -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __info_plist -Xlinker scripts/reminders-helper-Info.plist -o scripts/reminders-helper-x86_64 scripts/reminders-helper.swift && lipo -create scripts/reminders-helper-arm64 scripts/reminders-helper-x86_64 -output scripts/reminders-helper && rm scripts/reminders-helper-arm64 scripts/reminders-helper-x86_64 && codesign -s - scripts/reminders-helper",
"build:ts": "tsc",
"smoke:workflow": "node scripts/workflow-smoke.mjs",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"noteplan",
"model-context-protocol",
"notes",
"tasks",
"calendar",
"reminders",
"ai"
],
"repository": {
"type": "git",
"url": "https://github.com/NotePlan/noteplan-mcp.git"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"fuse.js": "^7.1.0",
"sql.js": "^1.11.0",
"uuid": "^9.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
}
}