@papercraneai/sandbox-agent 0.1.8 → 0.1.9

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 (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -76,6 +76,10 @@ function parseArgs() {
76
76
  }
77
77
  result.hostMode = mode;
78
78
  }
79
+ else if (arg === "--version" || arg === "-v") {
80
+ console.log(pkg.version);
81
+ process.exit(0);
82
+ }
79
83
  else if (arg === "--help" || arg === "-h") {
80
84
  console.log(`
81
85
  sandbox-agent - Claude Agent SDK server for environments
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papercraneai/sandbox-agent",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Claude Agent SDK server for sandbox environments",
5
5
  "license": "MIT",
6
6
  "type": "module",