This repository was archived by the owner on May 4, 2026. It is now read-only.
forked from domdomegg/computer-use-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "computer-use-mcp",
"version": "1.8.0",
"description": "💻 MCP server for Claude to control your computer",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/SIN-CLIs/computer-use-mcp.git"
},
"homepage": "https://github.com/SIN-CLIs/computer-use-mcp#readme",
"type": "module",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"bin": "dist/main.js",
"files": [
"dist"
],
"mcpName": "io.github.domdomegg/computer-use-mcp",
"scripts": {
"start": "npm run build && node dist/main.js",
"start:http": "npm run build && MCP_TRANSPORT=http node dist/main.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "eslint",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json",
"build:mcpb": "./build-mcpb.sh",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"@nut-tree-fork/nut-js": "^4.2.6",
"express": "^5.1.0",
"sharp": "^0.34.5",
"zod": "^4.1.13"
},
"devDependencies": {
"@tsconfig/node-lts": "^24.0.0",
"@types/express": "^5.0.6",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"eslint-config-domdomegg": "^2.0.9",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}