vivream 0.1.2 → 0.1.4

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/bin/cli.js CHANGED
@@ -16,7 +16,8 @@ const VERSION = PKG_JSON.version;
16
16
  // so the standalone server is shipped as a tarball and extracted here on first run.
17
17
  const BUNDLE_PATH = path.join(PKG_ROOT, 'vivream-server.tar.gz');
18
18
  const CACHE_DIR = path.join(os.homedir(), '.vivream', 'cache', VERSION);
19
- const SERVER_PATH = path.join(CACHE_DIR, 'server.js');
19
+ // pnpm monorepo standalone 구조: server.js 는 apps/web/ 하위에 위치
20
+ const SERVER_PATH = path.join(CACHE_DIR, 'apps', 'web', 'server.js');
20
21
 
21
22
  const DEFAULT_PORT = 3001;
22
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vivream",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Brain-dump in. Blueprint out. — Local AI workbench powered by your own Claude / Codex / Agy CLI",
5
5
  "keywords": ["ai", "claude", "brain-dump", "workbench", "local-first", "mindmap", "prompt"],
6
6
  "homepage": "https://github.com/AppSoApp/Vivream",
Binary file