-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.85 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
{
"name": "mac-pilot-mcp",
"version": "0.4.1",
"description": "Sandbox-protected macOS automation MCP server with a persistent recipe DB, Electron CDP fallback, and self-correcting per-app knowledge",
"type": "module",
"main": "dist/index.js",
"bin": {
"mac-pilot-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build && npm test",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"macos",
"automation",
"self-learning",
"sandbox",
"electron",
"cdp",
"vscode",
"applescript",
"jxa",
"javascript-for-automation",
"claude",
"claude-code",
"claude-desktop",
"cursor",
"ai",
"ai-agent",
"accessibility",
"recipes",
"desktop-automation"
],
"author": "Byeongchang Lee <leesgit@github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leesgit/mac-pilot-mcp.git"
},
"homepage": "https://github.com/leesgit/mac-pilot-mcp#readme",
"bugs": {
"url": "https://github.com/leesgit/mac-pilot-mcp/issues"
},
"os": ["darwin"],
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^12.6.2",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"vitest": "^1.6.0"
}
}