@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.
@@ -21,9 +21,9 @@
21
21
  <key>CFBundlePackageType</key>
22
22
  <string>APPL</string>
23
23
  <key>CFBundleShortVersionString</key>
24
- <string>0.1.32</string>
24
+ <string>0.1.33</string>
25
25
  <key>CFBundleVersion</key>
26
- <string>0.1.32</string>
26
+ <string>0.1.33</string>
27
27
  <key>LSBackgroundOnly</key>
28
28
  <false/>
29
29
  <key>LSUIElement</key>
@@ -21,9 +21,9 @@
21
21
  <key>CFBundlePackageType</key>
22
22
  <string>APPL</string>
23
23
  <key>CFBundleShortVersionString</key>
24
- <string>0.1.32</string>
24
+ <string>0.1.33</string>
25
25
  <key>CFBundleVersion</key>
26
- <string>0.1.32</string>
26
+ <string>0.1.33</string>
27
27
  <key>LSBackgroundOnly</key>
28
28
  <false/>
29
29
  <key>LSUIElement</key>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@github/computer-use-mcp",
3
- "version": "0.1.32",
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
- "serve": "npm run build:js && node dist/main.js",
31
- "build:js": "esbuild src/index.ts src/main.ts --bundle --minify --legal-comments=none --format=esm --platform=node --packages=external --outdir=dist && dts-bundle-generator src/index.ts -o dist/index.d.ts --no-banner --export-referenced-types false",
32
- "build:linux": "cd computer/linux && bash build.sh",
33
- "build:mac": "cd computer/mac && bash build.sh",
34
- "build:win": "cd computer/win && powershell -ExecutionPolicy Bypass -File build.ps1",
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",