@bendyline/squisq-video 2.1.0 → 2.2.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/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 | Version | License | Repository |
10
- | ----------------- | ------- | ------- | ----------------------------------------- |
11
- | @bendyline/squisq | 2.1.0 | MIT | https://github.com/bendyline/squisq |
12
- | @ffmpeg/ffmpeg | 0.12.15 | MIT | https://github.com/ffmpegwasm/ffmpeg.wasm |
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 `@ffmpeg/ffmpeg` and `@ffmpeg/util` packages provide JavaScript APIs and
16
- utilities. This npm package does not include `@ffmpeg/core`,
17
- `ffmpeg-core.js`, or `ffmpeg-core.wasm`; applications that use a WebAssembly
18
- core supply and distribute it separately.
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](../../docs/API.md#bendylinesquisq-video) for all types.
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
 
@@ -0,0 +1,8 @@
1
+ THIRD-PARTY LICENSES FOR @bendyline/squisq-video
2
+
3
+ Generated from the actual esbuild input graph. Package-local license, copying,
4
+ and notice files are reproduced verbatim. When an npm tarball omits its
5
+ repository license, the pinned upstream copy is vendored and identified below.
6
+
7
+ COMPONENTS
8
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bendyline/squisq-video",
3
- "version": "2.1.0",
3
+ "version": "2.2.1",
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": {
@@ -36,15 +39,16 @@
36
39
  "dist",
37
40
  "!dist/**/*.map",
38
41
  "LICENSE",
39
- "NOTICE.md"
42
+ "NOTICE.md",
43
+ "THIRD_PARTY_LICENSES.txt"
40
44
  ],
41
45
  "scripts": {
42
- "build": "tsup",
46
+ "build": "tsup && node ../../scripts/generate-bundle-licenses.mjs . && node ../../scripts/remove-empty-chunks.mjs dist",
43
47
  "dev": "concurrently -n js,dts -c blue,gray -r \"tsup --watch --no-dts --no-clean\" \"tsup --watch --dts-only --no-clean\"",
44
48
  "typecheck": "tsc --noEmit"
45
49
  },
46
50
  "dependencies": {
47
- "@bendyline/squisq": "2.2.0",
51
+ "@bendyline/squisq": "2.3.1",
48
52
  "@ffmpeg/ffmpeg": "0.12.15",
49
53
  "@ffmpeg/util": "0.12.2"
50
54
  },