@seanxdo/superview 0.1.13 → 0.1.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seanxdo/superview",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "Coding-agent flight recorder — timeline dashboard with replayable agent-run drill-downs.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -41,7 +41,7 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@vitejs/plugin-react": "^5.1.1",
44
- "better-sqlite3": "^12.5.0",
44
+ "better-sqlite3": "^12.11.1",
45
45
  "chokidar": "^4.0.3",
46
46
  "concurrently": "^9.2.1",
47
47
  "date-fns": "^4.1.0",
@@ -19,6 +19,6 @@ app.use((req, res, next) => {
19
19
  export function startProdServer(port?: number) {
20
20
  const p = port ?? Number(process.env.SUPERVIEW_PORT ?? 5174);
21
21
  return app.listen(p, "0.0.0.0", () => {
22
- console.log(`SuperView running at http://0.0.0.0:${p}`);
22
+ console.log(`SuperView running at http://127.0.0.1:${p}`);
23
23
  });
24
24
  }