@aelionsdk/render-ir 1.0.0-rc.1 → 1.1.0-rc.1
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/README.md +27 -4
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `@aelionsdk/render-ir`
|
|
2
2
|
|
|
3
|
-
Incremental
|
|
3
|
+
Incremental Project-to-Render-IR compilation and deterministic timeline
|
|
4
|
+
evaluation for AelionSDK.
|
|
4
5
|
|
|
5
|
-
Install
|
|
6
|
+
## Install
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
```bash
|
|
9
|
+
npm install @aelionsdk/render-ir@next
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`next` currently resolves to `1.1.0-rc.1`. Product applications should use
|
|
13
|
+
`@aelionsdk/sdk`; direct use is for custom renderers, exporters and engine
|
|
14
|
+
instrumentation.
|
|
15
|
+
|
|
16
|
+
## Public surface
|
|
17
|
+
|
|
18
|
+
- cold and incremental Project compilation;
|
|
19
|
+
- visual and audio timeline evaluation;
|
|
20
|
+
- captions, text layout and time maps;
|
|
21
|
+
- color and bit-depth contracts;
|
|
22
|
+
- compile statistics and Render IR types.
|
|
23
|
+
|
|
24
|
+
Preview and export should consume the same validated Render IR rather than
|
|
25
|
+
maintaining separate timeline semantics. Unsupported color or time-map
|
|
26
|
+
combinations fail closed.
|
|
27
|
+
|
|
28
|
+
See the [render consistency guide](https://foyonaczy.github.io/AelionSDK/concepts/render-consistency/)
|
|
29
|
+
and [API reference](https://foyonaczy.github.io/AelionSDK/api/aelionsdk/render-ir/overview/).
|
|
30
|
+
Licensed under MIT.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aelionsdk/render-ir",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0-rc.1",
|
|
4
4
|
"description": "Incremental render intermediate representation compiler for AelionSDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"!dist/.tsbuildinfo"
|
|
28
28
|
],
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
30
|
+
"node": ">=24 <25"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public",
|
|
34
34
|
"provenance": true
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@aelionsdk/core": "1.
|
|
38
|
-
"@aelionsdk/material-compiler": "1.
|
|
39
|
-
"@aelionsdk/project-schema": "1.
|
|
37
|
+
"@aelionsdk/core": "1.1.0-rc.1",
|
|
38
|
+
"@aelionsdk/material-compiler": "1.1.0-rc.1",
|
|
39
|
+
"@aelionsdk/project-schema": "1.1.0-rc.1"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "tsc -b",
|