@github/computer-use-mcp 0.1.32 → 0.1.33
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/dist/prebuilds/darwin-arm64/Copilot Computer Use.app/Contents/CodeResources +0 -0
- package/dist/prebuilds/darwin-arm64/Copilot Computer Use.app/Contents/Info.plist +2 -2
- package/dist/prebuilds/darwin-arm64/Copilot Computer Use.app/Contents/MacOS/Copilot Computer Use +0 -0
- package/dist/prebuilds/darwin-arm64/computer.node +0 -0
- package/dist/prebuilds/darwin-x64/Copilot Computer Use.app/Contents/CodeResources +0 -0
- package/dist/prebuilds/darwin-x64/Copilot Computer Use.app/Contents/Info.plist +2 -2
- package/dist/prebuilds/darwin-x64/Copilot Computer Use.app/Contents/MacOS/Copilot Computer Use +0 -0
- package/dist/prebuilds/darwin-x64/computer.node +0 -0
- package/dist/prebuilds/win32-arm64/computer.node +0 -0
- package/dist/prebuilds/win32-x64/computer.node +0 -0
- package/package.json +7 -6
|
Binary file
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
<key>CFBundlePackageType</key>
|
|
22
22
|
<string>APPL</string>
|
|
23
23
|
<key>CFBundleShortVersionString</key>
|
|
24
|
-
<string>0.1.
|
|
24
|
+
<string>0.1.33</string>
|
|
25
25
|
<key>CFBundleVersion</key>
|
|
26
|
-
<string>0.1.
|
|
26
|
+
<string>0.1.33</string>
|
|
27
27
|
<key>LSBackgroundOnly</key>
|
|
28
28
|
<false/>
|
|
29
29
|
<key>LSUIElement</key>
|
package/dist/prebuilds/darwin-arm64/Copilot Computer Use.app/Contents/MacOS/Copilot Computer Use
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
<key>CFBundlePackageType</key>
|
|
22
22
|
<string>APPL</string>
|
|
23
23
|
<key>CFBundleShortVersionString</key>
|
|
24
|
-
<string>0.1.
|
|
24
|
+
<string>0.1.33</string>
|
|
25
25
|
<key>CFBundleVersion</key>
|
|
26
|
-
<string>0.1.
|
|
26
|
+
<string>0.1.33</string>
|
|
27
27
|
<key>LSBackgroundOnly</key>
|
|
28
28
|
<false/>
|
|
29
29
|
<key>LSUIElement</key>
|
package/dist/prebuilds/darwin-x64/Copilot Computer Use.app/Contents/MacOS/Copilot Computer Use
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@github/computer-use-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.33",
|
|
4
4
|
"description": "Computer Use MCP Server",
|
|
5
5
|
"author": "GitHub",
|
|
6
6
|
"repository": {
|
|
@@ -27,11 +27,12 @@
|
|
|
27
27
|
"clean": "node package.js clean",
|
|
28
28
|
"build": "node package.js build",
|
|
29
29
|
"start": "node package.js build start",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"build:
|
|
33
|
-
"build:
|
|
34
|
-
"build:
|
|
30
|
+
"yolo": "node package.js build yolo",
|
|
31
|
+
"serve": "npm run build:mcp && node dist/main.js",
|
|
32
|
+
"build:mcp": "esbuild src/mcp/index.ts src/mcp/main.ts --bundle --minify --legal-comments=none --format=esm --platform=node --packages=external --outbase=src/mcp --outdir=dist && dts-bundle-generator src/mcp/index.ts -o dist/index.d.ts --no-banner --export-referenced-types false",
|
|
33
|
+
"build:linux": "cd src/linux && bash build.sh",
|
|
34
|
+
"build:mac": "cd src/mac && bash build.sh",
|
|
35
|
+
"build:win": "cd src/win && powershell -ExecutionPolicy Bypass -File build.ps1",
|
|
35
36
|
"lint": "node package.js lint",
|
|
36
37
|
"test": "node package.js test",
|
|
37
38
|
"publish:patch": "npm version patch -m \"v%s\" && git push && git push --tags",
|