@andrew_l/tl-pack 0.2.17 → 0.2.19
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 +11 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# TL Pack - Binary Serialization Library
|
|
2
2
|
|
|
3
|
-
![
|
|
4
|
-
![
|
|
5
|
-
![
|
|
3
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
4
|
+
![license][license-src]
|
|
5
|
+
[![bundle][bundle-src]][bundle-href]
|
|
6
6
|
|
|
7
7
|
Binary serialization library, inspired by the TL (Type Language) format, created by the VK team. Unlike official TL, this version does not require a schema for serialization/deserialization. It provides a compact and fast alternative to other binary serialization formats like MessagePack.
|
|
8
8
|
|
|
@@ -387,3 +387,11 @@ The dictionary helps optimize serialization by replacing strings with numeric in
|
|
|
387
387
|
## Production
|
|
388
388
|
|
|
389
389
|
No way!
|
|
390
|
+
|
|
391
|
+
<!-- Badges -->
|
|
392
|
+
|
|
393
|
+
[npm-version-src]: https://img.shields.io/npm/v/@andrew_l/tl-pack?style=flat
|
|
394
|
+
[npm-version-href]: https://npmjs.com/package/@andrew_l/tl-pack
|
|
395
|
+
[bundle-src]: https://img.shields.io/bundlephobia/min/@andrew_l/tl-pack?style=flat
|
|
396
|
+
[bundle-href]: https://bundlephobia.com/result?p=@andrew_l/tl-pack
|
|
397
|
+
[license-src]: https://img.shields.io/npm/l/@andrew_l/tl-pack?style=flat
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andrew_l/tl-pack",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.19",
|
|
4
4
|
"description": "Another implementation of binary serialization.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"pako": "^2.1.0",
|
|
38
|
-
"@andrew_l/toolkit": "0.2.
|
|
38
|
+
"@andrew_l/toolkit": "0.2.19"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/node": "22.10.5",
|