claude-code-replay 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +279 -0
  3. package/dist/main.mjs +3150 -0
  4. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "claude-code-replay",
3
+ "version": "0.1.0",
4
+ "description": "Replay Claude Code session logs to reconstruct a project tree and git history.",
5
+ "type": "module",
6
+ "bin": {
7
+ "claude-code-replay": "dist/main.mjs"
8
+ },
9
+ "files": [
10
+ "dist/main.mjs",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "scripts": {
15
+ "replay": "tsx src/main.ts",
16
+ "build": "node esbuild.config.mjs production",
17
+ "prepublishOnly": "npm run build",
18
+ "test": "vitest run",
19
+ "test:watch": "vitest",
20
+ "typecheck": "tsc --noEmit"
21
+ },
22
+ "engines": {
23
+ "node": ">=20"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/glebmish/claude-code-replay.git"
28
+ },
29
+ "homepage": "https://github.com/glebmish/claude-code-replay#readme",
30
+ "bugs": {
31
+ "url": "https://github.com/glebmish/claude-code-replay/issues"
32
+ },
33
+ "keywords": [
34
+ "claude",
35
+ "claude-code",
36
+ "replay",
37
+ "rewind",
38
+ "session-logs",
39
+ "jsonl",
40
+ "reconstruction",
41
+ "agent",
42
+ "cli"
43
+ ],
44
+ "author": "Gleb Mishchenko",
45
+ "license": "MIT",
46
+ "dependencies": {
47
+ "@anthropic-ai/claude-agent-sdk": "^0.3.148",
48
+ "commander": "^14.0.3"
49
+ },
50
+ "devDependencies": {
51
+ "@types/node": "^22.0.0",
52
+ "esbuild": "^0.28.0",
53
+ "tsx": "^4.22.3",
54
+ "typescript": "^5.7.0",
55
+ "vitest": "^4.1.7"
56
+ }
57
+ }