@threadbase-sh/streamer 1.31.1 → 1.31.3
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 +145 -55
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +28 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +28 -19
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@threadbase-sh/streamer",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.3",
|
|
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,10 +53,12 @@
|
|
|
53
53
|
"test": "vitest run",
|
|
54
54
|
"test:verbose": "vitest run --reporter=verbose",
|
|
55
55
|
"test:watch": "vitest",
|
|
56
|
+
"test:smoke": "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",
|
|
56
57
|
"lint": "tsc --noEmit && npx biome check .",
|
|
58
|
+
"lint:changed": "bash scripts/lint-changed.sh",
|
|
57
59
|
"format": "npx biome format --write .",
|
|
58
60
|
"check": "npx biome check --write .",
|
|
59
|
-
"prepare": "patch-package",
|
|
61
|
+
"prepare": "patch-package && git config core.hooksPath scripts/git-hooks",
|
|
60
62
|
"postinstall": "node -e \"try{require('fs').chmodSync(require('path').join(require.resolve('node-pty'),'..','..','prebuilds',process.platform+'-'+process.arch,'spawn-helper'),0o755)}catch{}\"",
|
|
61
63
|
"prepublishOnly": "npm run build",
|
|
62
64
|
"test:contracts": "vitest run __tests__/contracts/",
|
|
@@ -110,7 +112,7 @@
|
|
|
110
112
|
"tar": "^7.5.16",
|
|
111
113
|
"tweetnacl": "^1.0.3",
|
|
112
114
|
"tweetnacl-util": "^0.15.1",
|
|
113
|
-
"ws": "^8.
|
|
115
|
+
"ws": "^8.21.1",
|
|
114
116
|
"yaml": "^2.9.0",
|
|
115
117
|
"zod": "^4.4.3"
|
|
116
118
|
},
|