@thi.ng/rle-pack 3.2.4 → 3.2.6
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 +14 -13
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
|
-
<!-- Please see: https://
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/rle-pack)
|
|
6
6
|

|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
10
|
> This is one of 214 standalone projects, maintained as part
|
|
11
|
-
> of the [@thi.ng/umbrella](https://
|
|
11
|
+
> of the [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
14
|
-
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
|
-
>
|
|
14
|
+
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
|
+
> me](https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#donations).
|
|
16
|
+
> Thank you! ❤️
|
|
16
17
|
|
|
17
18
|
- [About](#about)
|
|
18
19
|
- [Simple RLE](#simple-rle)
|
|
@@ -66,7 +67,7 @@ chunks...
|
|
|
66
67
|
|
|
67
68
|
#### Encoding format
|
|
68
69
|
|
|
69
|
-

|
|
70
71
|
|
|
71
72
|
- 32 bits - original number of words
|
|
72
73
|
- 5 bits - word size
|
|
@@ -111,13 +112,13 @@ console.log(unpacked.length);
|
|
|
111
112
|
|
|
112
113
|
**STABLE** - used in production
|
|
113
114
|
|
|
114
|
-
[Search or submit any issues for this package](https://
|
|
115
|
+
[Search or submit any issues for this package](https://codeberg.org/thi.ng/umbrella/issues?q=%5Brle-pack%5D)
|
|
115
116
|
|
|
116
117
|
## Related packages
|
|
117
118
|
|
|
118
|
-
- [@thi.ng/binary](https://
|
|
119
|
-
- [@thi.ng/bitstream](https://
|
|
120
|
-
- [@thi.ng/range-coder](https://
|
|
119
|
+
- [@thi.ng/binary](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/binary) - 100+ assorted binary / bitwise operations, conversions, utilities, lookup tables
|
|
120
|
+
- [@thi.ng/bitstream](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/bitstream) - ES6 iterator based read/write bit streams with support for variable word widths
|
|
121
|
+
- [@thi.ng/range-coder](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/range-coder) - Binary data range encoder / decoder
|
|
121
122
|
|
|
122
123
|
## Installation
|
|
123
124
|
|
|
@@ -149,9 +150,9 @@ Package sizes (brotli'd, pre-treeshake): ESM: 802 bytes
|
|
|
149
150
|
|
|
150
151
|
## Dependencies
|
|
151
152
|
|
|
152
|
-
- [@thi.ng/api](https://
|
|
153
|
-
- [@thi.ng/bitstream](https://
|
|
154
|
-
- [@thi.ng/errors](https://
|
|
153
|
+
- [@thi.ng/api](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/api)
|
|
154
|
+
- [@thi.ng/bitstream](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/bitstream)
|
|
155
|
+
- [@thi.ng/errors](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/errors)
|
|
155
156
|
|
|
156
157
|
Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
|
|
157
158
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rle-pack",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "Binary run-length encoding packer w/ flexible repeat bit widths and a naive RLE encoder/decoder for arrays of arbitrary typed values",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://
|
|
11
|
+
"url": "git+https://codeberg.org/thi.ng/umbrella.git",
|
|
12
12
|
"directory": "packages/rle-pack"
|
|
13
13
|
},
|
|
14
14
|
"homepage": "https://thi.ng/rle-pack",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.12.
|
|
44
|
-
"@thi.ng/bitstream": "^2.4.
|
|
45
|
-
"@thi.ng/errors": "^2.6.
|
|
43
|
+
"@thi.ng/api": "^8.12.19",
|
|
44
|
+
"@thi.ng/bitstream": "^2.4.46",
|
|
45
|
+
"@thi.ng/errors": "^2.6.8"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"esbuild": "^0.
|
|
49
|
-
"typedoc": "^0.28.
|
|
48
|
+
"esbuild": "^0.28.0",
|
|
49
|
+
"typedoc": "^0.28.18",
|
|
50
50
|
"typescript": "^5.9.3"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
],
|
|
89
89
|
"year": 2017
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "a780d4a5f6f5fc595c9d28527686f63534927d32"
|
|
92
92
|
}
|