kaizenai 0.5.0 → 0.6.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kaizenai",
3
3
  "type": "module",
4
- "version": "0.5.0",
4
+ "version": "0.6.1",
5
5
  "description": "Local web UI for coding agents",
6
6
  "keywords": [
7
7
  "claude",
@@ -38,15 +38,15 @@
38
38
  "bun": ">=1.3.5"
39
39
  },
40
40
  "scripts": {
41
- "build": "vite build && bun run ./scripts/build-server.ts",
41
+ "build": "vite build && bun ./scripts/build-server.ts",
42
42
  "check": "tsc --noEmit && bun run build",
43
- "dev": "bun run ./scripts/dev.ts",
43
+ "dev": "bun ./scripts/dev.ts",
44
44
  "dev:client": "vite --host 0.0.0.0 --port 5174",
45
- "dev:server": "bun run ./scripts/dev-server.ts --no-open --port 5175",
45
+ "dev:server": "bun ./scripts/dev-server.ts --no-open --port 5175",
46
46
  "fmt": "prettier package.json README.md --check",
47
47
  "install:dev": "bun install && bun run build && bun install -g .",
48
48
  "lint": "tsc --noEmit",
49
- "start": "bun run ./dist/server/cli.js",
49
+ "start": "bun ./dist/server/cli.js",
50
50
  "test": "bun test",
51
51
  "typecheck": "tsc --noEmit",
52
52
  "prepublishOnly": "bun run build"
@@ -62,6 +62,7 @@
62
62
  "@xterm/xterm": "^6.0.0",
63
63
  "default-shell": "^2.2.0",
64
64
  "puppeteer-core": "^24.40.0",
65
+ "qrcode": "^1.5.4",
65
66
  "react-resizable-panels": "^4.7.3",
66
67
  "sonner": "^2.0.7"
67
68
  },