@react-grab/claude-code 0.1.10 → 0.1.12

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/handler.cjs CHANGED
@@ -19468,6 +19468,7 @@ var runClaudeAgent = async function* (prompt, options) {
19468
19468
  options: {
19469
19469
  pathToClaudeCodeExecutable: resolveClaudePath(),
19470
19470
  includePartialMessages: true,
19471
+ permissionMode: "bypassPermissions",
19471
19472
  env,
19472
19473
  ...options,
19473
19474
  cwd: options?.cwd ?? process.env.REACT_GRAB_CWD ?? process.cwd(),
package/dist/handler.js CHANGED
@@ -19440,6 +19440,7 @@ var runClaudeAgent = async function* (prompt, options) {
19440
19440
  options: {
19441
19441
  pathToClaudeCodeExecutable: resolveClaudePath(),
19442
19442
  includePartialMessages: true,
19443
+ permissionMode: "bypassPermissions",
19443
19444
  env,
19444
19445
  ...options,
19445
19446
  cwd: options?.cwd ?? process.env.REACT_GRAB_CWD ?? process.cwd(),
package/dist/server.cjs CHANGED
@@ -7877,7 +7877,7 @@ async function fkill(inputs, options = {}) {
7877
7877
  }
7878
7878
  }
7879
7879
  var sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
7880
- var VERSION = "0.1.10";
7880
+ var VERSION = "0.1.12";
7881
7881
  var checkIfRelayServerIsRunning = async (port, token) => {
7882
7882
  try {
7883
7883
  const healthUrl = token ? `http://localhost:${port}/health?${RELAY_TOKEN_PARAM}=${encodeURIComponent(token)}` : `http://localhost:${port}/health`;
@@ -20477,6 +20477,7 @@ var runClaudeAgent = async function* (prompt, options) {
20477
20477
  options: {
20478
20478
  pathToClaudeCodeExecutable: resolveClaudePath(),
20479
20479
  includePartialMessages: true,
20480
+ permissionMode: "bypassPermissions",
20480
20481
  env,
20481
20482
  ...options,
20482
20483
  cwd: options?.cwd ?? process.env.REACT_GRAB_CWD ?? process.cwd(),
package/dist/server.js CHANGED
@@ -7849,7 +7849,7 @@ async function fkill(inputs, options = {}) {
7849
7849
  }
7850
7850
  }
7851
7851
  var sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
7852
- var VERSION = "0.1.10";
7852
+ var VERSION = "0.1.12";
7853
7853
  var checkIfRelayServerIsRunning = async (port, token) => {
7854
7854
  try {
7855
7855
  const healthUrl = token ? `http://localhost:${port}/health?${RELAY_TOKEN_PARAM}=${encodeURIComponent(token)}` : `http://localhost:${port}/health`;
@@ -20449,6 +20449,7 @@ var runClaudeAgent = async function* (prompt, options) {
20449
20449
  options: {
20450
20450
  pathToClaudeCodeExecutable: resolveClaudePath(),
20451
20451
  includePartialMessages: true,
20452
+ permissionMode: "bypassPermissions",
20452
20453
  env,
20453
20454
  ...options,
20454
20455
  cwd: options?.cwd ?? process.env.REACT_GRAB_CWD ?? process.cwd(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-grab/claude-code",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "bin": {
5
5
  "react-grab-claude-code": "./dist/cli.cjs"
6
6
  },
@@ -30,13 +30,13 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@anthropic-ai/claude-agent-sdk": "^0.1.0",
33
- "@react-grab/relay": "0.1.10",
34
- "react-grab": "0.1.10"
33
+ "@react-grab/relay": "0.1.12",
34
+ "react-grab": "0.1.12"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "^22.10.7",
38
38
  "tsup": "^8.4.0",
39
- "@react-grab/utils": "0.1.10"
39
+ "@react-grab/utils": "0.1.12"
40
40
  },
41
41
  "scripts": {
42
42
  "dev": "tsup --watch",