@glissade/cli 0.2.0 → 0.3.0

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/README.md +22 -0
  2. package/package.json +6 -6
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @glissade/cli
2
+
3
+ `gs` — headless rendering and the dev/capture loop. `gs render` evaluates every frame, rasterizes on Skia (no browser anywhere), writes a PNG sequence or muxes mp4/webm via FFmpeg with sample-accurate audio. v2: `gs dev --record` serves a scene with its state machines mounted and writes input-trace sidecars; `gs render --trace/--state` are the deterministic export routes for interactive scenes.
4
+
5
+ ```sh
6
+ npm i -D @glissade/cli
7
+ ```
8
+
9
+ ```sh
10
+ gs render scene.ts --out out.mp4 --fps 60
11
+ gs dev scene.ts --record # capture a take
12
+ gs render scene.ts --trace scene.button.take1.trace.json --out take.mp4
13
+ ```
14
+
15
+ ## Part of glissade
16
+
17
+ *(glide & slide)* — programmatic motion graphics for TypeScript: realtime-first in any web page, deterministic headless video export from the same code, a visual studio over the same document. No generator functions.
18
+
19
+ - [Repository & full README](https://github.com/tyevco/glissade)
20
+ - [Getting started](https://github.com/tyevco/glissade/blob/main/docs/getting-started.md) · [Concepts](https://github.com/tyevco/glissade/blob/main/docs/concepts.md) · [Interactivity](https://github.com/tyevco/glissade/blob/main/docs/interactivity.md)
21
+
22
+ Apache-2.0.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissade/cli",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "glissade CLI: headless rendering via backend-skia (+ FFmpeg mux).",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -20,11 +20,11 @@
20
20
  "@napi-rs/canvas": "^0.1.65",
21
21
  "esbuild": "^0.28.0",
22
22
  "jiti": "^2.4.2",
23
- "@glissade/backend-skia": "0.2.0",
24
- "@glissade/core": "0.2.0",
25
- "@glissade/interact": "0.2.0",
26
- "@glissade/player": "0.2.0",
27
- "@glissade/scene": "0.2.0"
23
+ "@glissade/backend-skia": "0.3.0",
24
+ "@glissade/core": "0.3.0",
25
+ "@glissade/interact": "0.3.0",
26
+ "@glissade/player": "0.3.0",
27
+ "@glissade/scene": "0.3.0"
28
28
  },
29
29
  "repository": {
30
30
  "type": "git",