-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 847 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
38
39
40
{
"name": "mctrl",
"version": "0.1.0",
"description": "Fine-grained macOS control CLI for AI agents and humans",
"type": "module",
"bin": {
"mctrl": "./dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format esm --dts --clean",
"dev": "tsx src/cli.ts",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:e2e": "vitest run tests/e2e",
"prepublishOnly": "npm run build"
},
"keywords": [
"macos",
"automation",
"cli",
"agent",
"computer-use",
"accessibility"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^4.0.18"
}
}