computer-control 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +222 -0
- package/dist/cli.js +51899 -0
- package/dist/native-host-entry.js +3084 -0
- package/package.json +41 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "computer-control",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Computer control MCP server — browser automation via Chrome extension, macOS desktop control via native tools.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"computer-control": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "bun src/cli.ts",
|
|
14
|
+
"dev:browser": "bun --watch src/cli.ts browser serve --skip-permissions",
|
|
15
|
+
"dev:mac": "bun --watch src/cli.ts mac serve",
|
|
16
|
+
"build": "bash build.sh",
|
|
17
|
+
"prepublishOnly": "bun run build",
|
|
18
|
+
"lint": "oxlint",
|
|
19
|
+
"format": "oxfmt ."
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
23
|
+
"@types/chrome": "^0.1.36",
|
|
24
|
+
"@types/express": "^5.0.6",
|
|
25
|
+
"@types/node": "^22.0.0",
|
|
26
|
+
"@types/ws": "^8.5.0",
|
|
27
|
+
"commander": "^14.0.3",
|
|
28
|
+
"express": "^5.2.1",
|
|
29
|
+
"js-beautify": "^1.15.4",
|
|
30
|
+
"lebab": "^3.2.7",
|
|
31
|
+
"synchrony": "^0.10.2",
|
|
32
|
+
"ts-morph": "^27.0.2",
|
|
33
|
+
"typescript": "^5.9.3",
|
|
34
|
+
"wakaru": "^0.0.0",
|
|
35
|
+
"ws": "^8.19.0",
|
|
36
|
+
"zod": "^3"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=22"
|
|
40
|
+
}
|
|
41
|
+
}
|