@ebowwa/claudecodehistory 1.6.0 → 1.7.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/package.json +6 -21
- package/rust/Cargo.lock +0 -1955
- package/rust/Cargo.toml +0 -90
- package/rust/build.rs +0 -4
- package/rust/index.d.ts +0 -0
- package/rust/package.json +0 -69
- package/rust/src/lib.rs +0 -800
- package/rust/src/parser.rs +0 -261
- package/rust/src/search/index.rs +0 -206
- package/rust/src/search/mod.rs +0 -291
- package/rust/src/search/query.rs +0 -458
- package/rust/src/search/schema.rs +0 -115
- package/rust/src/types.rs +0 -248
- package/rust/src/utils.rs +0 -210
- package/typescript/dist/history-service.d.ts +0 -187
- package/typescript/dist/history-service.d.ts.map +0 -1
- package/typescript/dist/history-service.js +0 -739
- package/typescript/dist/history-service.js.map +0 -1
- package/typescript/dist/index.d.ts +0 -3
- package/typescript/dist/index.d.ts.map +0 -1
- package/typescript/dist/index.js +0 -2
- package/typescript/dist/index.js.map +0 -1
- /package/{rust/claudecodehistory.darwin-arm64.node → claudecodehistory.darwin-arm64.node} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebowwa/claudecodehistory",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "High-performance Claude Code conversation history parser with TypeScript and Rust implementations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -9,32 +9,20 @@
|
|
|
9
9
|
".": {
|
|
10
10
|
"import": "./dist/index.js",
|
|
11
11
|
"types": "./dist/index.d.ts"
|
|
12
|
-
},
|
|
13
|
-
"./rust": {
|
|
14
|
-
"import": "./rust/index.js",
|
|
15
|
-
"types": "./rust/index.d.ts",
|
|
16
|
-
"node": "./rust/index.node"
|
|
17
|
-
},
|
|
18
|
-
"./typescript": {
|
|
19
|
-
"import": "./typescript/dist/index.js",
|
|
20
|
-
"types": "./typescript/dist/index.d.ts"
|
|
21
12
|
}
|
|
22
13
|
},
|
|
23
14
|
"files": [
|
|
24
15
|
"dist/",
|
|
25
|
-
"
|
|
26
|
-
"typescript/dist/",
|
|
16
|
+
"*.node",
|
|
27
17
|
"README.md",
|
|
28
18
|
"LICENSE"
|
|
29
19
|
],
|
|
30
20
|
"scripts": {
|
|
31
21
|
"build": "tsc",
|
|
32
|
-
"build:rust": "cd rust && npm run build",
|
|
33
|
-
"build:
|
|
34
|
-
"build:all": "npm run build && npm run build:rust && npm run build:typescript",
|
|
22
|
+
"build:rust": "cd rust && npm run build && cp *.node ..",
|
|
23
|
+
"build:all": "npm run build && npm run build:rust",
|
|
35
24
|
"typecheck": "tsc --noEmit",
|
|
36
25
|
"bench": "bun run benchmark.ts",
|
|
37
|
-
"bench:compare": "bun run benchmark-compare.ts",
|
|
38
26
|
"test": "bun test",
|
|
39
27
|
"prepublishOnly": "npm run build:all"
|
|
40
28
|
},
|
|
@@ -53,11 +41,11 @@
|
|
|
53
41
|
],
|
|
54
42
|
"author": "Ebowwa Labs <labs@ebowwa.com>",
|
|
55
43
|
"license": "MIT",
|
|
56
|
-
"homepage": "https://github.com/ebowwa/codespaces/tree/main/packages/src/
|
|
44
|
+
"homepage": "https://github.com/ebowwa/codespaces/tree/main/packages/src/api-clients/claudecode/claudecodehistory#readme",
|
|
57
45
|
"repository": {
|
|
58
46
|
"type": "git",
|
|
59
47
|
"url": "https://github.com/ebowwa/codespaces.git",
|
|
60
|
-
"directory": "packages/src/
|
|
48
|
+
"directory": "packages/src/api-clients/claudecode/claudecodehistory"
|
|
61
49
|
},
|
|
62
50
|
"bugs": {
|
|
63
51
|
"url": "https://github.com/ebowwa/codespaces/issues"
|
|
@@ -68,9 +56,6 @@
|
|
|
68
56
|
"dependencies": {
|
|
69
57
|
"@ebowwa/jsonl-hft": "^1.3.1"
|
|
70
58
|
},
|
|
71
|
-
"optionalDependencies": {
|
|
72
|
-
"@ebowwa/claudecodehistory-rs": "1.5.1"
|
|
73
|
-
},
|
|
74
59
|
"devDependencies": {
|
|
75
60
|
"@types/node": "^24.0.4",
|
|
76
61
|
"typescript": "^5.8.3",
|