genbox-agent 1.0.140 → 1.0.141

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.
File without changes
package/dist/hook.js CHANGED
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genbox-agent",
3
- "version": "1.0.140",
3
+ "version": "1.0.141",
4
4
  "description": "Unified agent for monitoring and controlling AI CLI sessions (Claude Code, Gemini CLI, OpenAI Codex) in genbox VMs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,6 +10,16 @@
10
10
  "claude-hook": "./dist/hook.js",
11
11
  "genbox-configure-hooks": "./dist/configure-hooks.js"
12
12
  },
13
+ "scripts": {
14
+ "build": "tsc",
15
+ "start": "node dist/unified-daemon.js",
16
+ "dev": "tsx watch src/unified-daemon.ts",
17
+ "hook": "node dist/unified-hook.js",
18
+ "configure-hooks": "node dist/configure-hooks.js",
19
+ "test": "jest",
20
+ "test:watch": "jest --watch",
21
+ "test:coverage": "jest --coverage"
22
+ },
13
23
  "keywords": [
14
24
  "genbox",
15
25
  "claude",
@@ -48,15 +58,5 @@
48
58
  "files": [
49
59
  "dist",
50
60
  "README.md"
51
- ],
52
- "scripts": {
53
- "build": "tsc",
54
- "start": "node dist/unified-daemon.js",
55
- "dev": "tsx watch src/unified-daemon.ts",
56
- "hook": "node dist/unified-hook.js",
57
- "configure-hooks": "node dist/configure-hooks.js",
58
- "test": "jest",
59
- "test:watch": "jest --watch",
60
- "test:coverage": "jest --coverage"
61
- }
62
- }
61
+ ]
62
+ }