-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 988 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 988 Bytes
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
{
"name": "imessage-mcp",
"version": "1.0.0",
"description": "MCP server for iMessage - read, search, and send messages from Claude or any MCP client",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"test-client": "tsx src/test-client.ts",
"test": "tsx src/test.ts",
"clean": "rm -rf dist"
},
"author": "Sameel Arif",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sameelarif/imessage-mcp"
},
"packageManager": "pnpm@10.7.1",
"dependencies": {
"@ai-sdk/openai": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.24.3",
"@photon-ai/imessage-kit": "^2.0.1",
"ai": "^4.0.0",
"better-sqlite3": "^12.5.0",
"dotenv": "^17.2.3",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.10.0",
"tsx": "^4.19.0",
"typescript": "^5.3.0"
}
}