lightweight-socket
Version:
lightweight socket
53 lines (52 loc) • 1.27 kB
JSON
{
"name": "lightweight-socket",
"version": "1.0.0",
"description": "lightweight socket",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"keywords": [
"lightweight",
"socket",
"real-time",
"communication",
"websocket",
"node.js",
"browser",
"socket.io",
"alternative",
"efficient",
"streamlined",
"API",
"bi-directional",
"server",
"client",
"connection",
"emit",
"event",
"listener"
],
"files": [
"dist"
],
"scripts": {
"build:server": "tsup",
"build:browser": "tsup src/client-browser.ts browser.js --no-clean",
"build": "npm run build:server && npm run build:browser",
"test": "jest"
},
"author": "Vicfou",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"ws": "^8.17.0"
}
}