crewx-bridge 0.2.24 → 0.2.26

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.
Files changed (1) hide show
  1. package/package.json +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewx-bridge",
3
- "version": "0.2.24",
3
+ "version": "0.2.26",
4
4
  "description": "Secure macOS and Linux machine bridge for CrewX agent runtimes.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -36,8 +36,8 @@
36
36
  "dependencies": {
37
37
  "commander": "^14.0.2",
38
38
  "zod": "^4.1.12",
39
- "crewx-agent-cli": "0.2.14",
40
- "crewx-agent-protocol": "0.2.7"
39
+ "crewx-agent-cli": "0.2.15",
40
+ "crewx-agent-protocol": "0.2.8"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "^24.10.1",
@@ -46,7 +46,8 @@
46
46
  "license": "MIT",
47
47
  "scripts": {
48
48
  "build": "tsc -p tsconfig.json && node --input-type=module -e \"import { chmodSync } from 'node:fs'; chmodSync('dist/index.js', 0o755)\"",
49
- "test": "pnpm --filter crewx-agent-protocol build && pnpm --filter crewx-agent-cli build && pnpm run build && node --test test/*.test.mjs",
49
+ "verify:runtime": "node scripts/verify-runtime.mjs",
50
+ "test": "pnpm --filter crewx-agent-protocol build && pnpm --filter crewx-agent-cli build && pnpm run build && npm run verify:runtime && node --test test/*.test.mjs",
50
51
  "types:check": "tsc -p tsconfig.json --noEmit"
51
52
  }
52
53
  }