bserializer
Version:
A TypeScript-based serialization/deserialization library built for exploration and learning.
44 lines (43 loc) • 1.11 kB
JSON
{
"name": "bserializer",
"version": "1.1.0",
"description": "A TypeScript-based serialization/deserialization library built for exploration and learning.",
"license": "ISC",
"author": "Andrew K.",
"type": "module",
"keywords": [
"serializer",
"deserializer",
"binary",
"data-serialization",
"typescript",
"compression",
"zlib",
"custom-protocol",
"binary-format",
"buffer",
"encoding",
"decoding",
"fun-project",
"learning",
"experimental",
"low-level"
],
"main": "./dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"benchmark": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --roots \"benchmark\" --verbose > ./benchmark/benchmark_output.txt 2>&1",
"qperf": "node ./benchmark/quickPerf.js",
"build": "tsc"
},
"devDependencies": {
"@msgpack/msgpack": "^3.1.1",
"bson": "^6.10.3",
"cross-env": "^7.0.3",
"jest": "^29.7.0"
},
"dependencies": {}
}