@threadbase-sh/streamer 1.47.2 → 1.48.0
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/cli.cjs +361 -160
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +214 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +214 -15
- package/dist/index.js.map +1 -1
- package/package.json +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@threadbase-sh/streamer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.48.0",
|
|
4
4
|
"description": "PTY session management, WebSocket streaming, and REST API server for Claude Code conversations",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ronen Mars",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"test": "vitest run",
|
|
54
54
|
"test:verbose": "vitest run --reporter=verbose",
|
|
55
55
|
"test:watch": "vitest",
|
|
56
|
-
"test:
|
|
56
|
+
"test:precommit": "vitest run __tests__/canonicalize-project-path.test.ts __tests__/dates.test.ts __tests__/debounce.test.ts __tests__/schemas.test.ts __tests__/version.test.ts __tests__/question-types.test.ts __tests__/pty-host-process.test.ts __tests__/pty-host-windows.test.ts",
|
|
57
57
|
"lint": "tsc --noEmit && npx biome check .",
|
|
58
58
|
"lint:changed": "bash scripts/lint-changed.sh",
|
|
59
59
|
"format": "npx biome format --write .",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"@hono/node-ws": "^1.3.1",
|
|
95
95
|
"@temporalio/client": "^1.18.1",
|
|
96
96
|
"@threadbase-sh/agent-types": "^1.0.0",
|
|
97
|
-
"@threadbase-sh/scanner": "^0.12.
|
|
97
|
+
"@threadbase-sh/scanner": "^0.12.3",
|
|
98
98
|
"@xterm/headless": "^6.0.0",
|
|
99
99
|
"better-sqlite3": "^12.9.0",
|
|
100
100
|
"chokidar": "^5.0.0",
|
|
@@ -141,9 +141,6 @@
|
|
|
141
141
|
"vitest": "^4.1.10"
|
|
142
142
|
},
|
|
143
143
|
"overrides": {
|
|
144
|
-
"@threadbase-sh/scanner": {
|
|
145
|
-
"better-sqlite3": "$better-sqlite3"
|
|
146
|
-
},
|
|
147
144
|
"@hono/node-ws": {
|
|
148
145
|
"@hono/node-server": "$@hono/node-server"
|
|
149
146
|
}
|