vibe-replay 0.2.0 → 0.2.2
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 +14 -1
- package/assets/viewer.html +40 -39
- package/dist/index.js +2465 -521
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibe-replay",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Turn AI coding sessions into animated, interactive web replays. One command, one HTML file, share anywhere.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"chalk": "^5.3.0",
|
|
40
40
|
"commander": "^12.1.0",
|
|
41
41
|
"gifenc": "^1.0.3",
|
|
42
|
-
"hono": "^4.12.
|
|
42
|
+
"hono": "^4.12.23",
|
|
43
43
|
"open": "^10.2.0",
|
|
44
44
|
"ora": "^8.1.0",
|
|
45
45
|
"sql.js": "^1.14.1"
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "tsup",
|
|
61
61
|
"dev": "tsx src/index.ts",
|
|
62
|
+
"eval:sessions": "tsx scripts/eval-session-query.ts",
|
|
62
63
|
"test": "vitest run"
|
|
63
64
|
}
|
|
64
65
|
}
|