@threadbase-sh/scanner 0.12.4 → 0.14.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/README.md +2 -2
- package/dist/cli.js +501 -95
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +500 -94
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -4
- package/dist/index.d.ts +12 -4
- package/dist/index.js +500 -94
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Unified Claude Code conversation history scanner.
|
|
4
4
|
|
|
5
5
|
[](./LICENSE)
|
|
6
|
-
[](https://nodejs.org)
|
|
7
7
|
|
|
8
8
|
Combines the best parts of four independent scanner implementations (VS Code, Electron, IntelliJ, CLI) into a single TypeScript package.
|
|
9
9
|
|
|
@@ -31,7 +31,7 @@ Combines the best parts of four independent scanner implementations (VS Code, El
|
|
|
31
31
|
npm install @threadbase-sh/scanner
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
**Requires Node.js
|
|
34
|
+
**Requires Node.js 22 or later.** The package uses `better-sqlite3` (a native module) for its persistent index. Prebuilt binaries ship inside the package for common platforms, so a normal `npm install` needs no compiler and no install script. If the binary is somehow unavailable, `openDatabase()` says so explicitly and points at `npm rebuild better-sqlite3` — or you can skip SQLite entirely with `persistent: false`.
|
|
35
35
|
|
|
36
36
|
### Persistent vs. in-memory
|
|
37
37
|
|