spiracha 1.3.0 → 1.3.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.
Files changed (3) hide show
  1. package/AGENTS.md +1 -0
  2. package/README.md +1 -1
  3. package/package.json +3 -3
package/AGENTS.md CHANGED
@@ -117,6 +117,7 @@ Current tests cover:
117
117
  - transcript formatting helpers
118
118
  - MCP stdio protocol round-trips using the real server process
119
119
  - wrapped UI Vitest suite via `src/ui-package.test.ts`
120
+ - packaged UI `bunx --package` launch path via `src/package-ui-smoke.test.ts`
120
121
  - type-checking via `bun run typecheck`
121
122
 
122
123
  When changing risky areas:
package/README.md CHANGED
@@ -252,7 +252,7 @@ For the exact packaged UI launch path, run:
252
252
  rtk bun run smoke:package-ui
253
253
  ```
254
254
 
255
- This builds the app, packs the tarball, launches `rtk bunx --package <tgz> spiracha ui --no-open` from a clean temp directory, probes the running UI over HTTP, and shuts it down.
255
+ This builds the app, packs a fresh tarball in a clean temp directory, launches `rtk bunx --package <tgz> spiracha ui --no-open`, probes the running UI for real SSR HTML, rejects Bun fallback responses, and shuts it down. The same packaged-path smoke is also covered by `src/package-ui-smoke.test.ts`.
256
256
 
257
257
  ## Project Layout
258
258
 
package/package.json CHANGED
@@ -27,7 +27,7 @@
27
27
  "react": "19.2.6",
28
28
  "react-dom": "19.2.6",
29
29
  "tailwind-merge": "3.6.0",
30
- "zod": "^4.4.3"
30
+ "zod": "4.4.3"
31
31
  },
32
32
  "description": "Export local Codex, Claude Code, and Cursor transcripts, and browse Codex, Cursor, and Antigravity history through a local UI.",
33
33
  "devDependencies": {
@@ -36,7 +36,7 @@
36
36
  "typescript": "^6.0.3"
37
37
  },
38
38
  "engines": {
39
- "bun": ">=1.3.13"
39
+ "bun": ">=1.3.14"
40
40
  },
41
41
  "files": [
42
42
  "bin/codex-chats.js",
@@ -122,7 +122,7 @@
122
122
  "ui:preview": "bun run --cwd apps/ui preview"
123
123
  },
124
124
  "type": "module",
125
- "version": "1.3.0",
125
+ "version": "1.3.2",
126
126
  "workspaces": [
127
127
  "apps/*"
128
128
  ]