-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "apple-notes-mcp",
"version": "2.6.16",
"packageManager": "pnpm@11.9.0",
"description": "MCP server for Apple Notes - create, search, update, and manage notes via Claude and other AI assistants",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"apple-notes-mcp": "build/index.js"
},
"files": [
"build",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"preinstall": "node -e \"const fs=require('fs');const ua=process.env.npm_config_user_agent||'';if(fs.existsSync('.git')&&!ua.startsWith('pnpm')){console.error('\\nThis repo uses pnpm. npm/yarn resolve dependencies off-lockfile and the committed bundle will mismatch CI.\\n\\n corepack enable && pnpm install --frozen-lockfile\\n');process.exit(1)}\"",
"build": "tsc --noEmit && esbuild src/index.ts --bundle --platform=node --format=esm --target=node20 --outfile=build/index.js --banner:js=\"import { createRequire as __createRequire } from 'node:module'; const require = __createRequire(import.meta.url);\"",
"start": "node build/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:all": "vitest run && vitest run --config vitest.integration.config.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"typecheck": "tsc --noEmit",
"sync:skills": "node scripts/sync-skills.mjs",
"version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin .agents/plugins codex .antigravity-plugin",
"prepublishOnly": "pnpm run lint && pnpm test && pnpm run build",
"prepare": "husky; pnpm run build"
},
"keywords": [
"mcp",
"apple-notes",
"claude",
"codex",
"ai",
"applescript",
"macos",
"notes",
"model-context-protocol"
],
"author": "Rob Sweet <rob@superiortech.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sweetrb/apple-notes-mcp.git"
},
"homepage": "https://github.com/sweetrb/apple-notes-mcp#readme",
"bugs": {
"url": "https://github.com/sweetrb/apple-notes-mcp/issues"
},
"engines": {
"node": ">=20.0.0"
},
"os": [
"darwin"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"turndown": "^7.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"@types/turndown": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.2.6",
"esbuild": "^0.28.1",
"eslint": "^9.0.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.51.0",
"vitest": "^3.2.6"
},
"volta": {
"node": "24.17.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}