@qsocket/protocol
Version:
QSocket Protocol: A versatile protocol for transmitting messages of any type in buffer format, designed exclusively for the QSocket ecosystem. Enables efficient, high-speed data transfer between processes and across client-server connections.
81 lines (80 loc) • 2.06 kB
JSON
{
"name": "@qsocket/protocol",
"description": "QSocket Protocol: A versatile protocol for transmitting messages of any type in buffer format, designed exclusively for the QSocket ecosystem. Enables efficient, high-speed data transfer between processes and across client-server connections.",
"version": "0.0.1-rc3",
"keywords": [
"qsocket",
"protocol",
"data-transmission",
"ipc",
"client-server",
"communication",
"serialization",
"encoding",
"decoding",
"real-time",
"networking",
"Node.js",
"cross-platform"
],
"author": "Pobedinskiy David (qpyracuk) <qpyracuk@gmail.com>",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsup ./src/index.ts --watch --onSuccess \"node ./dist/index.js\"",
"start": "node ./dist/index.js",
"build": "tsup",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix --color",
"format": "prettier --write src/"
},
"repository": {
"type": "git",
"url": "https://github.com/qsocket-js/protocol.git"
},
"bugs": {
"url": "https://github.com/qsocket-js/protocol/issues"
},
"homepage": "https://github.com/qsocket-js/protocol#readme",
"contributors": [
{
"name": "Pobedinskiy David",
"email": "qpyracuk@gmail.com"
}
],
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=8.0.0"
}
}