kaizenai 0.6.1 → 0.7.2

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.6.1",
4
+ "version": "0.7.2",
5
5
  "description": "Local web UI for coding agents",
6
6
  "keywords": [
7
7
  "claude",
@@ -38,18 +38,23 @@
38
38
  "bun": ">=1.3.5"
39
39
  },
40
40
  "scripts": {
41
- "build": "vite build && bun ./scripts/build-server.ts",
41
+ "build": "bun run build:prod",
42
+ "build:prod": "KAIZEN_CLI_BUILD_TARGET=prod vite build && KAIZEN_CLI_BUILD_TARGET=prod bun ./scripts/build-server.ts && KAIZEN_CLI_BUILD_TARGET=prod bun ./scripts/validate-build-artifact.ts --target prod",
43
+ "build:nonprod": "KAIZEN_CLI_BUILD_TARGET=nonprod vite build && KAIZEN_CLI_BUILD_TARGET=nonprod bun ./scripts/build-server.ts && KAIZEN_CLI_BUILD_TARGET=nonprod bun ./scripts/validate-build-artifact.ts --target nonprod",
42
44
  "check": "tsc --noEmit && bun run build",
43
45
  "dev": "bun ./scripts/dev.ts",
44
- "dev:client": "vite --host 0.0.0.0 --port 5174",
46
+ "dev:client": "KAIZEN_CLI_BUILD_TARGET=nonprod vite --host 0.0.0.0 --port 5174",
45
47
  "dev:server": "bun ./scripts/dev-server.ts --no-open --port 5175",
46
48
  "fmt": "prettier package.json README.md --check",
47
- "install:dev": "bun install && bun run build && bun install -g .",
49
+ "install:dev": "bun install && bun run build:nonprod && bun install -g .",
48
50
  "lint": "tsc --noEmit",
51
+ "pack:dry-run": "bun run build:prod && bun ./scripts/validate-build-artifact.ts --target prod --mode publish && npm pack --dry-run",
49
52
  "start": "bun ./dist/server/cli.js",
50
53
  "test": "bun test",
54
+ "test:e2e:local": "bun ./scripts/run-local-playwright.ts",
51
55
  "typecheck": "tsc --noEmit",
52
- "prepublishOnly": "bun run build"
56
+ "validate:publish": "bun ./scripts/validate-build-artifact.ts --target prod --mode publish",
57
+ "prepublishOnly": "bun run build:prod && bun run validate:publish"
53
58
  },
54
59
  "dependencies": {
55
60
  "@anthropic-ai/claude-agent-sdk": "^0.2.39",
@@ -61,9 +66,11 @@
61
66
  "@xterm/headless": "^6.0.0",
62
67
  "@xterm/xterm": "^6.0.0",
63
68
  "default-shell": "^2.2.0",
69
+ "jose": "^6.2.2",
64
70
  "puppeteer-core": "^24.40.0",
65
71
  "qrcode": "^1.5.4",
66
72
  "react-resizable-panels": "^4.7.3",
73
+ "sharp": "^0.34.5",
67
74
  "sonner": "^2.0.7"
68
75
  },
69
76
  "devDependencies": {
@@ -73,28 +80,28 @@
73
80
  "@radix-ui/react-dialog": "^1.1.15",
74
81
  "@radix-ui/react-popover": "^1.1.15",
75
82
  "@radix-ui/react-tooltip": "^1.2.8",
83
+ "@playwright/test": "^1.59.1",
76
84
  "@tailwindcss/postcss": "^4.1.18",
77
85
  "@tailwindcss/typography": "^0.5.19",
78
- "@kaizen-core/themes": "workspace:*",
79
86
  "@types/bun": "latest",
80
87
  "@types/node": "^24.10.1",
81
- "@types/react": "19.2.7",
88
+ "@types/react": "19.2.10",
82
89
  "@types/react-dom": "19.2.3",
83
90
  "@vitejs/plugin-react": "5.1.1",
91
+ "@tanstack/react-virtual": "^3.13.12",
84
92
  "autoprefixer": "^10.4.23",
85
- "class-variance-authority": "^0.7.1",
86
- "clsx": "^2.1.1",
93
+ "babel-plugin-react-compiler": "^1.0.0",
87
94
  "lucide-react": "^0.562.0",
88
- "react": "19.2.1",
89
- "react-dom": "19.2.1",
95
+ "prettier": "^3.6.2",
96
+ "react": "19.2.4",
97
+ "react-dom": "19.2.4",
90
98
  "react-markdown": "^10.1.0",
91
99
  "react-router-dom": "^7.12.0",
92
- "prettier": "^3.6.2",
93
100
  "remark-gfm": "^4.0.1",
94
- "tailwind-merge": "^3.4.0",
95
101
  "tailwindcss": "^4.1.18",
96
102
  "typescript": "5.8.3",
97
103
  "vite": "^6.0.0",
104
+ "vite-plugin-compression2": "^2.5.3",
98
105
  "zustand": "^5.0.10"
99
106
  }
100
107
  }