@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.
Files changed (2) hide show
  1. package/README.md +14 -13
  2. 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://github.com/thi-ng/umbrella/blob/develop/CONTRIBUTING.md#changes-to-readme-files -->
3
- # ![@thi.ng/rle-pack](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/banners/thing-rle-pack.svg?88402f79)
2
+ <!-- Please see: https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#changes-to-readme-files -->
3
+ # ![@thi.ng/rle-pack](https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/banners/thing-rle-pack.svg?88402f79)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/@thi.ng/rle-pack.svg)](https://www.npmjs.com/package/@thi.ng/rle-pack)
6
6
  ![npm downloads](https://img.shields.io/npm/dm/@thi.ng/rle-pack.svg)
@@ -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://github.com/thi-ng/umbrella/) monorepo
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 me on
15
- > GitHub](https://github.com/sponsors/postspectacular). Thank you! ❤️
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
- ![data layout](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/rle/rle-layout.png)
70
+ ![data layout](https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/rle/rle-layout.png)
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://github.com/thi-ng/umbrella/issues?q=%5Brle-pack%5D+in%3Atitle)
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://github.com/thi-ng/umbrella/tree/develop/packages/binary) - 100+ assorted binary / bitwise operations, conversions, utilities, lookup tables
119
- - [@thi.ng/bitstream](https://github.com/thi-ng/umbrella/tree/develop/packages/bitstream) - ES6 iterator based read/write bit streams with support for variable word widths
120
- - [@thi.ng/range-coder](https://github.com/thi-ng/umbrella/tree/develop/packages/range-coder) - Binary data range encoder / decoder
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://github.com/thi-ng/umbrella/tree/develop/packages/api)
153
- - [@thi.ng/bitstream](https://github.com/thi-ng/umbrella/tree/develop/packages/bitstream)
154
- - [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/develop/packages/errors)
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.4",
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://github.com/thi-ng/umbrella.git",
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.17",
44
- "@thi.ng/bitstream": "^2.4.44",
45
- "@thi.ng/errors": "^2.6.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.27.2",
49
- "typedoc": "^0.28.16",
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": "1107498d31504dc63d1a457b5def387d7a134f69\n"
91
+ "gitHead": "a780d4a5f6f5fc595c9d28527686f63534927d32"
92
92
  }