storyforge 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +7 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -273,13 +273,13 @@ async function devCommand(options) {
273
273
  }
274
274
  if (pathname === "/api/assets") {
275
275
  const assets = {
276
- audio: collectFiles(path2.join(dir, "audio")),
277
- imagesH: collectFiles(path2.join(dir, "images-horizontal")),
278
- imagesV: collectFiles(path2.join(dir, "images-vertical")),
279
- clips: collectFiles(path2.join(dir, "clips")),
280
- scripts: collectFiles(path2.join(dir, "scripts")),
281
- prompts: collectFiles(path2.join(dir, "gemini-prompts")),
282
- brand: collectFiles(path2.join(dir, "brand"))
276
+ audio: collectFiles(path2.join(dir, "audio"), "audio"),
277
+ imagesH: collectFiles(path2.join(dir, "images-horizontal"), "images-horizontal"),
278
+ imagesV: collectFiles(path2.join(dir, "images-vertical"), "images-vertical"),
279
+ clips: collectFiles(path2.join(dir, "clips"), "clips"),
280
+ scripts: collectFiles(path2.join(dir, "scripts"), "scripts"),
281
+ prompts: collectFiles(path2.join(dir, "gemini-prompts"), "gemini-prompts"),
282
+ brand: collectFiles(path2.join(dir, "brand"), "brand")
283
283
  };
284
284
  res.writeHead(200, { ...CORS_HEADERS, "Content-Type": "application/json" });
285
285
  res.end(JSON.stringify(assets));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storyforge",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "StoryForge — local bridge for the Forge video production web app. Zero runtime dependencies.",
5
5
  "type": "module",
6
6
  "bin": {