unbikit 0.6.1 → 0.7.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/LICENSE.md CHANGED
@@ -2,8 +2,9 @@
2
2
 
3
3
  ## unbikit
4
4
 
5
- unbikit, a decoder for `.bik` format video files, is licensed under
6
- Apache 2.0 or MIT terms, at your option.
5
+ unbikit, a decoder for `.bik` format video files, is licensed under Apache 2.0 or MIT terms,
6
+ at your option. Graphical images in this repository are explicitly excluded from these two
7
+ licenses.
7
8
 
8
9
  SPDX-License-Identifier: MIT OR Apache-2.0
9
10
 
@@ -33,6 +34,22 @@ The above copyright notice and this permission notice shall be included in all c
33
34
 
34
35
  THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
36
 
37
+ ## unbikit logo
38
+
39
+ The graphical image files in this repository that contain a copy of the unbikit logo are:
40
+
41
+ - `app/public/favicon.ico`
42
+ - `app/public/favicon.svg`
43
+ - `app/src/images/unbikit-logo.svg`
44
+
45
+ The unbikit logo © 2025 by David Hart (blennies.dev@gmail.com) is licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>
46
+
47
+ ![](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by.svg)
48
+
49
+ To view a copy of this license, visit
50
+
51
+ https://creativecommons.org/licenses/by/4.0/
52
+
36
53
  ## Bink Video Licensing
37
54
 
38
55
  The `.bik` file format is a proprietary format used by
package/README.md CHANGED
@@ -1,14 +1,15 @@
1
1
  # unbikit
2
2
 
3
- [![package minzipped size](https://flat.badgen.net/bundlephobia/minzip/unbikit)](https://bundlephobia.com/package/unbikit)
4
- [![dependency count](https://flat.badgen.net/bundlephobia/dependency-count/unbikit)](https://bundlephobia.com/package/unbikit)
5
- [![types included](https://flat.badgen.net/npm/types/unbikit)](https://www.npmjs.com/package/unbikit)
3
+ [![minzipped bundle size](https://img.shields.io/bundlephobia/minzip/unbikit?style=flat-square)](https://bundlephobia.com/package/unbikit)
4
+ [![types included](https://img.shields.io/npm/types/unbikit?style=flat-square)](https://www.npmjs.com/package/unbikit)
6
5
 
7
6
  > ⚠️
8
7
  > This package is at an early development stage. Expect API changes!
9
8
 
10
- unbikit (_un-bik-ɪt_) is a decoder for `.bik` (Bink) video files that can be used to play or
11
- transcode videos using the Web Streams API.
9
+ <img src="/app/src/images/unbikit-logo.svg" alt="logo of unbikit" width="24" height="24"> unbikit
10
+ (_un-bik-ɪt_) is a decoder for `.bik` ([Bink Video](https://en.wikipedia.org/wiki/Bink_Video))
11
+ files that can be used to play or transcode videos using the Web Streams API.
12
+ The format was first released in 1999 and has since been used in many classic computer games.
12
13
 
13
14
  ⭐ [Documentation](https://blennies.github.io/unbikit/) and a
14
15
  ⭐ [video player demo](https://blennies.github.io/unbikit/demo/)
@@ -21,7 +22,7 @@ are available, as well as a
21
22
  - Handles demuxing and decompression of audio and video streams
22
23
  - TypeScript/JavaScript only (no WASM or native code)
23
24
  - No dependencies
24
- - Uses Web Streams API for efficient reading of video files
25
+ - Uses Web Streams API for efficient reading of video data
25
26
  - Isomorphic
26
27
  - runs on client/server runtimes that support at least ES2022
27
28
  - can be run with older runtimes by using the syntax lowering feature of some bundlers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unbikit",
3
- "version": "0.6.1",
3
+ "version": "0.7.0",
4
4
  "description": "Decoder for `.bik` video files.",
5
5
  "keywords": [
6
6
  "audio",
@@ -9,6 +9,7 @@
9
9
  "codec",
10
10
  "decoder",
11
11
  "decompress",
12
+ "games",
12
13
  "media",
13
14
  "player",
14
15
  "video"
@@ -20,10 +21,12 @@
20
21
  "url": "git+https://github.com/blennies/unbikit.git"
21
22
  },
22
23
  "homepage": "https://blennies.github.io/unbikit",
24
+ "bugs": {
25
+ "url": "https://github.com/blennies/unbikit/issues"
26
+ },
23
27
  "type": "module",
24
28
  "sideEffects": false,
25
29
  "module": "./dist/unbikit.js",
26
- "main": "./dist/unbikit.cjs",
27
30
  "engines": {
28
31
  "node": ">=22.18"
29
32
  },
@@ -66,14 +69,8 @@
66
69
  },
67
70
  "exports": {
68
71
  ".": {
69
- "import": {
70
- "types": "./dist/unbikit.d.ts",
71
- "default": "./dist/unbikit.js"
72
- },
73
- "require": {
74
- "types": "./dist/unbikit.d.cts",
75
- "default": "./dist/unbikit.cjs"
76
- }
72
+ "types": "./dist/unbikit.d.ts",
73
+ "default": "./dist/unbikit.js"
77
74
  },
78
75
  "./package.json": "./package.json"
79
76
  },