-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.28 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
{
"name": "@cardmagic/notes",
"version": "1.2.0",
"description": "CLI and MCP server to search and browse Apple Notes",
"author": {
"name": "Lucas Carlson"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cardmagic/notes"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"notes": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"format": "oxfmt",
"check-format": "oxfmt --check",
"postinstall": "node -e \"try{require('child_process').execSync('npm rebuild better-sqlite3',{stdio:'inherit'})}catch(e){}\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "12.8.0",
"chalk": "5.3.0",
"commander": "14.0.3",
"minisearch": "7.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^25.2.0",
"typescript": "^5.7.2",
"vitest": "^4.0.16",
"oxlint": "^1.41.0"
},
"keywords": [
"apple",
"notes",
"macos",
"search",
"mcp",
"cli"
],
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}