@qsocket/core
Version:
Powerful inter-process communication library for browser and Node.js environments, with flexible transport support including WebSocket, TCP, Unix Sockets, and Windows Pipes. Delivers high-performance data exchange through byte-stream buffers and automatic
96 lines (95 loc) • 2.4 kB
JSON
{
"name": "@qsocket/core",
"description": "Powerful inter-process communication library for browser and Node.js environments, with flexible transport support including WebSocket, TCP, Unix Sockets, and Windows Pipes. Delivers high-performance data exchange through byte-stream buffers and automatic compression, making it ideal for real-time applications. Currently supports engine.io, with additional transport options coming soon.",
"version": "0.0.1-rc2",
"keywords": [
"qsocket",
"core",
"inter-process communication",
"ipc",
"real-time",
"engine.io",
"engine.io-client",
"transport",
"WebSocket",
"TCP socket",
"Unix socket",
"Windows Pipes",
"file socket",
"buffer",
"byte-stream",
"data compression",
"GZIP",
"DEFLATE",
"networking",
"namespace",
"events",
"client-server",
"Node.js",
"browser",
"protocol",
"high-performance",
"flexible transport",
"reliable communication",
"scalable",
"modular"
],
"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/core.git"
},
"bugs": {
"url": "https://github.com/qsocket-js/core/issues"
},
"homepage": "https://github.com/qsocket-js/core#readme",
"contributors": [
{
"name": "Pobedinskiy David",
"email": "qpyracuk@gmail.com"
}
],
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.3",
"@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",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@qsocket/protocol": "^0.0.1-rc3"
}
}