@smoove/core 0.1.0 → 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/README.md +16 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,19 +1,21 @@
1
1
  # @smoove/core
2
2
 
3
- Remotion-style timeline-driven animation for [Konva](https://konvajs.org).
3
+ A timeline-driven animation engine for [Konva](https://konvajs.org).
4
+ Keyframe motion that runs anywhere: buttery in the browser, headless on
5
+ the server.
4
6
 
5
7
  A **Composition** is a `Konva.Stage` that owns a frame clock (fps +
6
8
  duration). A **Sequence** is a `Konva.Layer` scoped to a frame range: its
7
- updaters run and its layer paints only while the playhead is in range. The
8
- engine is agnostic `play()` uses `requestAnimationFrame` in the browser;
9
- on the server, step frames manually with `setFrame(n)` for offline
10
- rendering.
9
+ updaters run and its layer paints only while the playhead is in range.
10
+ The engine doesn't care where it runs. In the browser, `play()` drives a
11
+ `requestAnimationFrame` loop. On the server, you step frames manually with
12
+ `setFrame(n)` for offline rendering.
11
13
 
12
14
  Core also ships a built-in flexbox layout system (`Flex`, `Block`), a
13
- rich `Text` node, `Image`/`Video`/`Audio` media nodes, `interpolate` +
15
+ rich `Text` node, `Image`/`Video`/`Audio` media nodes, `interpolate` and
14
16
  `Easing` animation helpers, and a flex-aware wrapper for every Konva shape
15
- (`Rect`, `Circle`, `Star`, ...) so an app imports its whole drawing
16
- vocabulary from one place.
17
+ (`Rect`, `Circle`, `Star`, and the rest), so an app imports its whole
18
+ drawing vocabulary from one place.
17
19
 
18
20
  ## Install
19
21
 
@@ -64,12 +66,12 @@ wipes, and WebGL shader transitions via
64
66
 
65
67
  ## Ecosystem
66
68
 
67
- - [`@smoove/player`](https://www.npmjs.com/package/@smoove/player) `<smoove-player>` web-component player with controls
68
- - [`@smoove/transitions`](https://www.npmjs.com/package/@smoove/transitions) — Remotion-style `TransitionSeries` scene transitions
69
- - [`@smoove/renderer`](https://www.npmjs.com/package/@smoove/renderer) headless Node video renderer (skia-canvas + Mediabunny)
70
- - [`@smoove/studio`](https://www.npmjs.com/package/@smoove/studio) composable React studio UI
71
- - [`@smoove/google-fonts`](https://www.npmjs.com/package/@smoove/google-fonts) typed, tree-shakeable Google Fonts
72
- - [`@smoove/vite`](https://www.npmjs.com/package/@smoove/vite) Vite plugin for the studio
69
+ - [`@smoove/player`](https://www.npmjs.com/package/@smoove/player): the `<smoove-player>` web component, with controls
70
+ - [`@smoove/transitions`](https://www.npmjs.com/package/@smoove/transitions): `TransitionSeries` scene transitions, from cross-fades to shader effects
71
+ - [`@smoove/renderer`](https://www.npmjs.com/package/@smoove/renderer): headless Node video renderer (skia-canvas + Mediabunny)
72
+ - [`@smoove/studio`](https://www.npmjs.com/package/@smoove/studio): composable React studio UI
73
+ - [`@smoove/google-fonts`](https://www.npmjs.com/package/@smoove/google-fonts): typed, tree-shakeable Google Fonts
74
+ - [`@smoove/vite`](https://www.npmjs.com/package/@smoove/vite): Vite plugin for studio hot-reload and renderable media imports
73
75
 
74
76
  ## Docs
75
77
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@smoove/core",
3
- "version": "0.1.0",
4
- "description": "Agnostic timeline-driven animation engine. Runs in browser or server; integrates with any render target (e.g. Konva).",
3
+ "version": "0.1.2",
4
+ "description": "A timeline-driven animation engine for Konva. Runs in the browser or on the server and renders to any target.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public"