bebyte
Version:
Lightweight library for reading and writing unsigned integers (UInt) from 1 to 64 bits in Big Endian format. Supports precise binary serialization with byte-level control.
65 lines • 1.51 kB
JSON
{
"name": "bebyte",
"version": "1.0.2",
"description": "Lightweight library for reading and writing unsigned integers (UInt) from 1 to 64 bits in Big Endian format. Supports precise binary serialization with byte-level control.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/CKATEPTb/bebyte.git"
},
"keywords": [
"big-endian",
"bitwise",
"binary",
"buffer",
"serialization",
"deserialization",
"typedarray",
"dataview",
"uint",
"uint8array",
"bitfield",
"byte",
"bytes",
"i64",
"bitstream",
"typescript",
"be",
"bytewriter",
"bytereader",
"binary-protocol",
"binary-parser",
"be-byte"
],
"author": "CKATEPTb, FakeIvchenko",
"license": "LGPL-3.0-only",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"start": "tsx src/start.ts",
"start:watch": "tsx watch src/start.ts",
"test": "jest --config jest.config.ts",
"test:watch": "jest --config jest.config.ts --watch"
}
}