feat(transport): implement WebSocket-based isotransport client and server API with typed events and end-to-end tests

This commit is contained in:
2026-05-02 10:25:22 +00:00
parent 364b5b61f1
commit 370d079d52
13 changed files with 8192 additions and 3945 deletions
+16 -15
View File
@@ -3,24 +3,25 @@
"version": "1.0.3",
"private": false,
"description": "a bi-directional, multiplatform, best-effort transport",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
"test": "tstest test/",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^2.0.5",
"@gitzone/tsdoc": "^1.1.10",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.44",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.45"
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1"
},
"browserslist": [
"last 1 chrome versions"
@@ -34,13 +35,13 @@
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
"dependencies": {
"@pushrocks/smartenv": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
"ws": "^8.11.0"
"ws": "^8.20.0"
},
"keywords": [
"bi-directional communication",
@@ -59,4 +60,4 @@
"type": "git",
"url": "https://code.foss.global/push.rocks/isotransport.git"
}
}
}