-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.54 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
{
"name": "mcp-server-apple-events",
"version": "1.5.0",
"description": "MCP server that provides native integration with Apple Reminders and Calendar on macOS.",
"author": "Frad Lee <https://frad.me>",
"license": "MIT",
"homepage": "https://frad.me",
"repository": {
"type": "git",
"url": "git+https://github.com/fradser/mcp-server-apple-events.git"
},
"bugs": {
"url": "https://github.com/fradser/mcp-server-apple-events/issues"
},
"keywords": [
"mcp",
"apple",
"reminders",
"calendar",
"events",
"automation"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": {
"mcp-server-apple-events": "./dist/index.js"
},
"files": [
"bin/event",
"bin/event-disclaim",
"dist/",
"scripts/postinstall.mjs",
"scripts/build-event.mjs",
"scripts/event-Info.plist",
"scripts/event.entitlements",
"scripts/disclaim.c",
"CHANGELOG.md"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build:ts": "tsc -p tsconfig.build.json",
"build:event": "node scripts/build-event.mjs",
"build": "pnpm run clean && pnpm run build:ts && pnpm run build:event",
"notarize": "node scripts/notarize.mjs",
"build:release": "pnpm run clean && pnpm run build:ts && pnpm run build:event && pnpm run notarize",
"postinstall": "node scripts/postinstall.mjs",
"test": "NODE_NO_WARNINGS=1 jest",
"test:ci": "NODE_NO_WARNINGS=1 jest --coverage",
"lint": "pnpm exec biome check --write --unsafe && pnpm exec tsc --noEmit --project tsconfig.json",
"check": "pnpm run lint && pnpm run test:ci"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"exit-on-epipe": "^1.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@swc/core": "^1.15.43",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.0",
"jest": "^30.4.2",
"typescript": "^6.0.3"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"pnpm": {
"overrides": {
"test-exclude": "^8.0.0",
"glob": "^13.0.6"
},
"onlyBuiltDependencies": [
",",
"b",
"d",
"e",
"i",
"k",
"l",
"o",
"r",
"s",
"u",
"unrs-resolver",
"w"
]
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}