feedeas 0.1.0-alpha.3 → 0.1.0-alpha.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/bun.lock +3 -0
- package/dist/cli/index.js +2050 -258
- package/dist/ui/index.html +1 -1
- package/package.json +2 -1
- package/src/cli/commands/asset.ts +148 -0
- package/src/cli/commands/audio.ts +157 -0
- package/src/cli/commands/create-scene.ts +131 -0
- package/src/cli/commands/example.ts +51 -22
- package/src/cli/commands/inspect.ts +28 -25
- package/src/cli/commands/record.ts +159 -81
- package/src/cli/commands/validate.ts +66 -21
- package/src/cli/index.ts +18 -11
- package/src/cli/server/api.ts +17 -9
- package/src/cli/services/ffprobe.ts +85 -0
- package/src/cli/services/scene-builder.ts +50 -0
- package/src/cli/services/scene-resolver.ts +99 -0
- package/src/cli/services/whisper.ts +224 -0
- package/src/ui/components/CanvasPreview.tsx +75 -6
- package/src/ui/context/ProjectContext.tsx +5 -2
- package/src/ui/types.ts +6 -2
- package/docs/IMAGINE_COMMAND.md +0 -470
- package/docs/IMAGINE_QUICK_REF.md +0 -136
- package/docs/IMPLEMENTATION_SUMMARY.md +0 -152
- package/example-workflow.sh +0 -82
package/bun.lock
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"commander": "^14.0.2",
|
|
8
8
|
"hono": "^4.11.4",
|
|
9
|
+
"image-size": "^2.0.2",
|
|
9
10
|
"lucide-react": "^0.562.0",
|
|
10
11
|
"open": "^11.0.0",
|
|
11
12
|
"react": "^19.2.3",
|
|
@@ -280,6 +281,8 @@
|
|
|
280
281
|
|
|
281
282
|
"hono": ["hono@4.11.4", "", {}, "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA=="],
|
|
282
283
|
|
|
284
|
+
"image-size": ["image-size@2.0.2", "", { "bin": { "image-size": "bin/image-size.js" } }, "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w=="],
|
|
285
|
+
|
|
283
286
|
"is-docker": ["is-docker@3.0.0", "", { "bin": { "is-docker": "cli.js" } }, "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ=="],
|
|
284
287
|
|
|
285
288
|
"is-in-ssh": ["is-in-ssh@1.0.0", "", {}, "sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw=="],
|