bufferfy
Version:
Fast and efficient buffer serialization.
75 lines (74 loc) • 1.82 kB
JSON
{
"name": "bufferfy",
"version": "3.0.2",
"description": "Fast and efficient buffer serialization.",
"keywords": [
"protobuf",
"binary",
"buffer",
"serialize",
"deserialize",
"serialization",
"deserialization",
"message",
"message-pack",
"struct",
"encode",
"encoder",
"encoding",
"decode",
"decoder",
"bytes",
"restructure",
"stream"
],
"author": "Matt Cavender",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/visionsofparadise/bufferfy.git"
},
"bugs": {
"url": "https://github.com/visionsofparadise/bufferfy/issues"
},
"homepage": "https://github.com/visionsofparadise/bufferfy",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"sideEffects": false,
"scripts": {
"check": "tsc --noEmit",
"unit": "jest unit",
"benchmark": "jest Codec.benchmark --runInBand",
"build": "tsup src/index.ts --format esm,cjs --dts --treeshake"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"benchmark": "^2.1.4",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"jest": "^29.7.0",
"msgpackr": "^1.11.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^7.2.0",
"typescript": "^5.4.4",
"typescript-eslint": "^7.5.0"
},
"dependencies": {
"@scure/base": "^1.2.1",
"uint8array-tools": "^0.0.9"
}
}