@ebowwa/claudecodehistory-rs 1.6.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/index.d.ts ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@ebowwa/claudecodehistory-rs",
3
+ "version": "1.6.0",
4
+ "description": "High-performance Rust implementation of Claude Code conversation history parser with native Node.js/Bun bindings",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "types": "index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./index.js",
11
+ "types": "./index.d.ts",
12
+ "bun": "./bun.index.js",
13
+ "node": "./index.js",
14
+ "default": "./index.js"
15
+ }
16
+ },
17
+ "scripts": {
18
+ "build": "cargo build --release && napi build --release --platform --js index.js --dts index.d.ts",
19
+ "build:debug": "cargo build && napi build --platform",
20
+ "test": "cargo test",
21
+ "bench": "cargo bench",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "keywords": [
25
+ "claude-code",
26
+ "history",
27
+ "jsonl",
28
+ "parser",
29
+ "rust",
30
+ "napi",
31
+ "bun",
32
+ "high-performance"
33
+ ],
34
+ "author": "Ebowwa Labs <labs@ebowwa.com>",
35
+ "license": "MIT",
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/ebowwa/codespaces.git",
39
+ "directory": "packages/src/third-party/claudecode/claudecodehistory/rust"
40
+ },
41
+ "bugs": {
42
+ "url": "https://github.com/ebowwa/codespaces/issues"
43
+ },
44
+ "engines": {
45
+ "node": ">=18.0.0"
46
+ },
47
+ "napi": {
48
+ "name": "claudecodehistory",
49
+ "triples": {
50
+ "defaults": true
51
+ }
52
+ },
53
+ "devDependencies": {
54
+ "@napi-rs/cli": "^2.18.0"
55
+ },
56
+ "optionalDependencies": {
57
+ "@ebowwa/claudecodehistory-rs-darwin-arm64": "1.6.0",
58
+ "@ebowwa/claudecodehistory-rs-darwin-x64": "1.6.0",
59
+ "@ebowwa/claudecodehistory-rs-linux-x64-gnu": "1.6.0",
60
+ "@ebowwa/claudecodehistory-rs-linux-arm64-gnu": "1.6.0",
61
+ "@ebowwa/claudecodehistory-rs-win32-x64-msvc": "1.6.0"
62
+ },
63
+ "files": [
64
+ "index.js",
65
+ "index.d.ts",
66
+ "*.node",
67
+ "*.wasm"
68
+ ]
69
+ }