@bendyline/squisq-video 2.1.0 → 2.2.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.
- package/NOTICE.md +8 -9
- package/README.md +1 -1
- package/package.json +6 -3
package/NOTICE.md
CHANGED
|
@@ -6,16 +6,15 @@ Third-party components remain under their respective license terms.
|
|
|
6
6
|
|
|
7
7
|
## Runtime dependencies
|
|
8
8
|
|
|
9
|
-
| Package
|
|
10
|
-
|
|
|
11
|
-
| @
|
|
12
|
-
| @ffmpeg/
|
|
13
|
-
| @ffmpeg/util | 0.12.2 | MIT | https://github.com/ffmpegwasm/ffmpeg.wasm |
|
|
9
|
+
| Package | Version | License | Repository |
|
|
10
|
+
| -------------- | ------- | ------- | ----------------------------------------- |
|
|
11
|
+
| @ffmpeg/ffmpeg | 0.12.15 | MIT | https://github.com/ffmpegwasm/ffmpeg.wasm |
|
|
12
|
+
| @ffmpeg/util | 0.12.2 | MIT | https://github.com/ffmpegwasm/ffmpeg.wasm |
|
|
14
13
|
|
|
15
|
-
The
|
|
16
|
-
utilities. This npm package does not include
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
The @ffmpeg/ffmpeg and @ffmpeg/util packages provide JavaScript APIs and
|
|
15
|
+
utilities. This npm package does not include @ffmpeg/core, ffmpeg-core.js, or
|
|
16
|
+
ffmpeg-core.wasm; applications that use a WebAssembly core supply and
|
|
17
|
+
distribute it separately.
|
|
19
18
|
|
|
20
19
|
Copyright and complete license texts for the listed dependencies are included
|
|
21
20
|
in their respective npm distributions and source repositories.
|
package/README.md
CHANGED
|
@@ -132,7 +132,7 @@ targeting via `bitrateForQuality`) and `audioBitrate` (target AAC bits/sec):
|
|
|
132
132
|
|
|
133
133
|
`resolveDimensions(options)` applies these defaults, honoring explicit `width`/`height` overrides.
|
|
134
134
|
|
|
135
|
-
See the full [API Reference](
|
|
135
|
+
See the full [API Reference](https://github.com/bendyline/squisq/blob/main/docs/API.md#bendylinesquisq-video) for all types.
|
|
136
136
|
|
|
137
137
|
## Related Packages
|
|
138
138
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bendyline/squisq-video",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Cross-runtime video and animated-GIF helpers with browser-based ffmpeg.wasm encoding for Squisq documents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Bendyline",
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"type": "module",
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=22.14.0"
|
|
28
|
+
},
|
|
26
29
|
"main": "./dist/index.js",
|
|
27
30
|
"types": "./dist/index.d.ts",
|
|
28
31
|
"exports": {
|
|
@@ -39,12 +42,12 @@
|
|
|
39
42
|
"NOTICE.md"
|
|
40
43
|
],
|
|
41
44
|
"scripts": {
|
|
42
|
-
"build": "tsup",
|
|
45
|
+
"build": "tsup && node ../../scripts/remove-empty-chunks.mjs dist",
|
|
43
46
|
"dev": "concurrently -n js,dts -c blue,gray -r \"tsup --watch --no-dts --no-clean\" \"tsup --watch --dts-only --no-clean\"",
|
|
44
47
|
"typecheck": "tsc --noEmit"
|
|
45
48
|
},
|
|
46
49
|
"dependencies": {
|
|
47
|
-
"@bendyline/squisq": "2.
|
|
50
|
+
"@bendyline/squisq": "2.3.0",
|
|
48
51
|
"@ffmpeg/ffmpeg": "0.12.15",
|
|
49
52
|
"@ffmpeg/util": "0.12.2"
|
|
50
53
|
},
|