-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 872 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
{
"name": "mcp-applescript",
"version": "0.1.0",
"private": true,
"description": "MCP server for controlled AppleScript automation on macOS",
"author": "François Rouaix",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frouaix/MCPAppleScript.git"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "pnpm -r build",
"build:sea": "./scripts/build-sea.sh",
"build:dmg": "./scripts/build-dmg.sh",
"test": "pnpm -r test",
"test:unit": "pnpm -r test:unit",
"test:integration": "pnpm -r test:integration",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"clean": "pnpm -r clean && rm -rf node_modules dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"applescript",
"automation",
"macos",
"apple-events"
]
}