@neiltron/session-visualizer 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.
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Session Visualizer</title>
7
+ <script type="module" crossorigin src="/assets/index-JUkOHAxs.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-CDAS4q4l.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@neiltron/session-visualizer",
3
+ "version": "0.1.0",
4
+ "description": "Local filmstrip inspector for Pi session JSONL files",
5
+ "private": false,
6
+ "type": "module",
7
+ "packageManager": "bun@1.3.9",
8
+ "bin": {
9
+ "session-visualizer": "bin/session-visualizer.js"
10
+ },
11
+ "files": [
12
+ "bin/",
13
+ "dist/",
14
+ "README.md"
15
+ ],
16
+ "engines": {
17
+ "node": ">=20.0.0"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/neiltron/session-visualizer.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/neiltron/session-visualizer/issues"
25
+ },
26
+ "homepage": "https://github.com/neiltron/session-visualizer#readme",
27
+ "keywords": [
28
+ "pi",
29
+ "session",
30
+ "jsonl",
31
+ "cli",
32
+ "visualizer"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "scripts": {
38
+ "dev": "bun run scripts/dev.ts",
39
+ "dev:client": "vite --host 127.0.0.1 --port 4173",
40
+ "dev:server": "HOST=127.0.0.1 PORT=4174 bun --watch server.ts",
41
+ "build": "vite build && bun run check",
42
+ "build:runtime": "bun run scripts/build-package.ts",
43
+ "build:package": "bun run build && bun run check:package && bun run build:runtime",
44
+ "check": "tsc --noEmit",
45
+ "check:package": "tsc -p tsconfig.package.json --noEmit",
46
+ "test": "bun test",
47
+ "smoke:package": "bun run build:package && node scripts/package-smoke.mjs",
48
+ "start": "HOST=127.0.0.1 PORT=4174 bun server.ts",
49
+ "prepack": "bun run build:package"
50
+ },
51
+ "devDependencies": {
52
+ "@types/bun": "^1.3.9",
53
+ "@types/node": "^24.4.0",
54
+ "@types/react": "^19.0.10",
55
+ "@types/react-dom": "^19.0.4",
56
+ "@vitejs/plugin-react": "^4.4.1",
57
+ "agentation": "^3.0.2",
58
+ "esbuild": "^0.25.9",
59
+ "react": "^19.0.0",
60
+ "react-dom": "^19.0.0",
61
+ "react-markdown": "^10.1.0",
62
+ "remark-breaks": "^4.0.0",
63
+ "remark-gfm": "^4.0.1",
64
+ "typescript": "^5.9.3",
65
+ "vite": "^6.2.6"
66
+ }
67
+ }