scream-code 0.9.0 → 0.9.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/dist/main.mjs CHANGED
@@ -6,7 +6,7 @@ const __dirname = __cjsShimDirname(__filename);
6
6
  import "./suppress-sqlite-warning-C2VB0doZ.mjs";
7
7
  //#region src/main.ts
8
8
  try {
9
- (await import("./app-C2At7uwD.mjs")).main();
9
+ (await import("./app-Ir0w8ElF.mjs")).main();
10
10
  } catch (error) {
11
11
  process.stderr.write(`${error instanceof Error ? error.stack ?? error.message : String(error)}\n`);
12
12
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scream-code",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "A terminal-native AI agent for builders",
5
5
  "license": "MIT",
6
6
  "author": "ScreamCli",
@@ -63,6 +63,7 @@
63
63
  "cli-highlight": "^2.1.11",
64
64
  "commander": "^13.1.0",
65
65
  "diff": "^9.0.0",
66
+ "fastembed": "^2.1.0",
66
67
  "semver": "^7.7.4",
67
68
  "smol-toml": "^1.6.1",
68
69
  "zod": "^4.3.6"
@@ -262,13 +262,15 @@ async function main() {
262
262
  },
263
263
  pm,
264
264
  );
265
- }
266
265
 
266
+ // Best-effort Windows desktop shortcut; must stay inside main() so it
267
+ // is covered by the top-level catch and never fails the install.
267
268
  try {
268
269
  createDesktopShortcut();
269
270
  } catch {
270
271
  // Never fail the install over a shortcut.
271
272
  }
273
+ }
272
274
 
273
275
  main().catch((err) => {
274
276
  const message = err instanceof Error ? err.message : String(err);