@thi.ng/bitstream 2.4.28 → 2.4.32

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/package.json +86 -86
  2. package/CHANGELOG.md +0 -40
package/package.json CHANGED
@@ -1,87 +1,87 @@
1
1
  {
2
- "name": "@thi.ng/bitstream",
3
- "version": "2.4.28",
4
- "description": "ES6 iterator based read/write bit streams with support for variable word widths",
5
- "type": "module",
6
- "module": "./index.js",
7
- "typings": "./index.d.ts",
8
- "sideEffects": false,
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/thi-ng/umbrella.git"
12
- },
13
- "homepage": "https://thi.ng/bitstream",
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/postspectacular"
18
- },
19
- {
20
- "type": "patreon",
21
- "url": "https://patreon.com/thing_umbrella"
22
- },
23
- {
24
- "type": "liberapay",
25
- "url": "https://liberapay.com/thi.ng"
26
- }
27
- ],
28
- "author": "Karsten Schmidt (https://thi.ng)",
29
- "license": "Apache-2.0",
30
- "scripts": {
31
- "build": "yarn build:esbuild && yarn build:decl",
32
- "build:decl": "tsc --declaration --emitDeclarationOnly",
33
- "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
34
- "clean": "bun ../../tools/src/clean-package.ts",
35
- "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
36
- "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
- "pub": "yarn npm publish --access public",
38
- "test": "bun test",
39
- "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
- },
41
- "dependencies": {
42
- "@thi.ng/errors": "^2.5.42"
43
- },
44
- "devDependencies": {
45
- "esbuild": "^0.25.9",
46
- "typedoc": "^0.28.12",
47
- "typescript": "^5.9.2"
48
- },
49
- "keywords": [
50
- "binary",
51
- "datastructure",
52
- "iterator",
53
- "stream",
54
- "typescript"
55
- ],
56
- "publishConfig": {
57
- "access": "public"
58
- },
59
- "engines": {
60
- "node": ">=18"
61
- },
62
- "files": [
63
- "./*.js",
64
- "./*.d.ts"
65
- ],
66
- "exports": {
67
- ".": {
68
- "default": "./index.js"
69
- },
70
- "./input": {
71
- "default": "./input.js"
72
- },
73
- "./output": {
74
- "default": "./output.js"
75
- },
76
- "./simple": {
77
- "default": "./simple.js"
78
- }
79
- },
80
- "thi.ng": {
81
- "related": [
82
- "range-coder",
83
- "rle-pack"
84
- ]
85
- },
86
- "gitHead": "e215a3e8de3809736ba0042c93bd8703a5a1a337\n"
87
- }
2
+ "name": "@thi.ng/bitstream",
3
+ "version": "2.4.32",
4
+ "description": "ES6 iterator based read/write bit streams with support for variable word widths",
5
+ "type": "module",
6
+ "module": "./index.js",
7
+ "typings": "./index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thi-ng/umbrella.git"
12
+ },
13
+ "homepage": "https://thi.ng/bitstream",
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/postspectacular"
18
+ },
19
+ {
20
+ "type": "patreon",
21
+ "url": "https://patreon.com/thing_umbrella"
22
+ },
23
+ {
24
+ "type": "liberapay",
25
+ "url": "https://liberapay.com/thi.ng"
26
+ }
27
+ ],
28
+ "author": "Karsten Schmidt (https://thi.ng)",
29
+ "license": "Apache-2.0",
30
+ "scripts": {
31
+ "build": "yarn build:esbuild && yarn build:decl",
32
+ "build:decl": "tsc --declaration --emitDeclarationOnly",
33
+ "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
34
+ "clean": "bun ../../tools/src/clean-package.ts",
35
+ "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
36
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
+ "pub": "npm publish --access public",
38
+ "test": "bun test",
39
+ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
+ },
41
+ "dependencies": {
42
+ "@thi.ng/errors": "^2.5.46"
43
+ },
44
+ "devDependencies": {
45
+ "esbuild": "^0.25.11",
46
+ "typedoc": "^0.28.14",
47
+ "typescript": "^5.9.3"
48
+ },
49
+ "keywords": [
50
+ "binary",
51
+ "datastructure",
52
+ "iterator",
53
+ "stream",
54
+ "typescript"
55
+ ],
56
+ "publishConfig": {
57
+ "access": "public"
58
+ },
59
+ "engines": {
60
+ "node": ">=18"
61
+ },
62
+ "files": [
63
+ "./*.js",
64
+ "./*.d.ts"
65
+ ],
66
+ "exports": {
67
+ ".": {
68
+ "default": "./index.js"
69
+ },
70
+ "./input": {
71
+ "default": "./input.js"
72
+ },
73
+ "./output": {
74
+ "default": "./output.js"
75
+ },
76
+ "./simple": {
77
+ "default": "./simple.js"
78
+ }
79
+ },
80
+ "thi.ng": {
81
+ "related": [
82
+ "range-coder",
83
+ "rle-pack"
84
+ ]
85
+ },
86
+ "gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
87
+ }
package/CHANGELOG.md DELETED
@@ -1,40 +0,0 @@
1
- # Change Log
2
-
3
- - **Last updated**: 2025-09-01T16:38:35Z
4
- - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
-
6
- All notable changes to this project will be documented in this file.
7
- Only versions published since **2022-01-01** are listed here.
8
- Please consult the Git history for older version information.
9
- See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
10
-
11
- **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
12
- and/or version bumps of transitive dependencies.
13
-
14
- ## [2.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/bitstream@2.4.0) (2024-08-23)
15
-
16
- #### 🚀 Features
17
-
18
- - add read16/24/32() fns ([edf19e7](https://github.com/thi-ng/umbrella/commit/edf19e7))
19
- - add tests
20
-
21
- ## [2.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/bitstream@2.3.0) (2024-08-19)
22
-
23
- #### 🚀 Features
24
-
25
- - add support for unsafe reads in BitInputStream ([5edd4dd](https://github.com/thi-ng/umbrella/commit/5edd4dd))
26
- - add optional arg to disable bounds checking in all read methods
27
- - update readme
28
-
29
- ### [2.2.61](https://github.com/thi-ng/umbrella/tree/@thi.ng/bitstream@2.2.61) (2024-06-21)
30
-
31
- #### ♻️ Refactoring
32
-
33
- - enforce uniform naming convention of internal functions ([56992b2](https://github.com/thi-ng/umbrella/commit/56992b2))
34
-
35
- ## [2.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/bitstream@2.2.0) (2022-07-06)
36
-
37
- #### 🚀 Features
38
-
39
- - add barebones bitReader/Writer() ([e17dff9](https://github.com/thi-ng/umbrella/commit/e17dff9))
40
- - update pkg & readme