forked from mcp-get/community-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "@mcp-get-community/server-macos",
"version": "0.1.0",
"description": "MCP server for macOS system operations",
"main": "dist/index.js",
"type": "module",
"private": false,
"bin": {
"@mcp-get-community/server-macos": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Michael Latman <https://michaellatman.com>",
"homepage": "https://github.com/mcp-get-community/server-macos#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mcp-get-community/server-macos.git"
},
"bugs": {
"url": "https://github.com/mcp-get-community/server-macos/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0",
"ts-node": "^10.9.0"
}
}