-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.7 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
{
"name": "macwright",
"version": "0.1.0",
"description": "MCP server for reliable native macOS desktop control from AI agents",
"license": "MIT",
"author": "Ruchit Patel",
"repository": {
"type": "git",
"url": "https://github.com/ruchit-p/macwright"
},
"keywords": [
"mcp",
"macos",
"automation",
"desktop-control",
"accessibility",
"safari",
"applescript",
"ai-agents",
"hermes-agent"
],
"engines": {
"node": ">=18"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"macwright": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"setup": "bash setup.sh",
"test": "npm run test:schema",
"omniparser:setup": "cd omniparser && ./setup.sh",
"omniparser:start": "cd omniparser && ./start.sh",
"test:schema": "node test/schema.cjs",
"test:smoke": "npm run test:macos-smoke",
"test:macos-smoke": "MACWRIGHT_RUN_NATIVE_SMOKE=1 node test/smoke.cjs",
"prepack": "npm run build && npm run test:schema"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.4",
"typescript": "^5.7.3"
},
"homepage": "https://github.com/ruchit-p/macwright#readme",
"bugs": {
"url": "https://github.com/ruchit-p/macwright/issues"
},
"packageManager": "npm@10.9.4",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md",
"setup.sh",
"omniparser/README.md",
"omniparser/server.py",
"omniparser/start.sh",
"omniparser/setup.sh",
"omniparser/requirements.txt",
"omniparser/util/"
]
}