@utsp/network-server
Version:
UTSP Network Server - Server-side communication adapters
67 lines • 1.56 kB
JSON
{
"name": "@utsp/network-server",
"version": "0.4.0",
"description": "UTSP Network Server - Server-side communication adapters",
"author": "THP Software",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/thp-software/utsp.git",
"directory": "packages/network-server"
},
"bugs": {
"url": "https://github.com/thp-software/utsp/issues"
},
"homepage": "https://github.com/thp-software/utsp/tree/master/packages/network-server#readme",
"keywords": [
"utsp",
"network",
"server",
"websocket",
"socket.io",
"communication",
"multi-user",
"real-time",
"terminal",
"nodejs"
],
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"socket.io": "^4.7.2",
"@utsp/types": "0.4.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.6.3"
},
"scripts": {
"build": "node ../../scripts/build-package.mjs packages/network-server",
"dev": "tsc --watch",
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"typecheck": "tsc --noEmit"
}
}