UNPKG

@utsp/network-client

Version:

UTSP Network Client - Client-side communication adapters

65 lines 1.52 kB
{ "name": "@utsp/network-client", "version": "0.4.0", "description": "UTSP Network Client - Client-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-client" }, "bugs": { "url": "https://github.com/thp-software/utsp/issues" }, "homepage": "https://github.com/thp-software/utsp/tree/master/packages/network-client#readme", "keywords": [ "utsp", "network", "client", "websocket", "socket.io", "communication", "multi-user", "real-time", "terminal" ], "engines": { "node": ">=18.0.0" }, "sideEffects": false, "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "dependencies": { "socket.io-client": "^4.7.2", "@utsp/types": "0.4.0" }, "devDependencies": { "typescript": "^5.6.3" }, "scripts": { "build": "node ../../scripts/build-package.mjs packages/network-client", "dev": "tsc --watch", "clean": "rimraf dist", "lint": "eslint \"src/**/*.ts\" --max-warnings 0", "lint:fix": "eslint \"src/**/*.ts\" --fix", "typecheck": "tsc --noEmit" } }