-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "@cardmagic/reminders",
"version": "1.2.0",
"mcpName": "io.github.cardmagic/reminders",
"description": "Fuzzy search and browse Apple Reminders from CLI or MCP server",
"license": "MIT",
"type": "module",
"author": "Lucas Carlson <lucas@carlson.net>",
"repository": {
"type": "git",
"url": "https://github.com/cardmagic/reminders.git"
},
"keywords": [
"macos",
"reminders",
"apple",
"search",
"mcp",
"claude"
],
"engines": {
"node": ">=22"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"bin": {
"reminders": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"format": "oxfmt",
"check-format": "oxfmt --check",
"lint": "oxlint",
"postinstall": "node -e \"try { require('better-sqlite3'); } catch(e) { require('child_process').execSync('npm rebuild better-sqlite3', { stdio: 'inherit' }); }\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "12.9.0",
"chalk": "5.6.2",
"commander": "14.0.3",
"minisearch": "7.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/node": "^25",
"oxlint": "^1.36.0",
"typescript": "^6.0.2",
"vitest": "^4.0.16"
}
}