typedsocket/package.json
2024-04-18 21:49:13 +02:00

59 lines
1.5 KiB
JSON

{
"name": "@api.global/typedsocket",
"version": "3.0.1",
"private": false,
"description": "A library for creating typed WebSocket connections, supporting bi-directional communication with type safety.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany --skiplibcheck)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/smartenv": "^5.0.12",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
},
"dependencies": {
"@api.global/typedrequest": "^3.0.21",
"@api.global/typedrequest-interfaces": "^3.0.18",
"@push.rocks/isohash": "^2.0.0",
"@push.rocks/smartjson": "^5.0.19",
"@push.rocks/smartrx": "^3.0.7",
"@push.rocks/smartsocket": "^2.0.25",
"@push.rocks/smartstring": "^4.0.15",
"@push.rocks/smarturl": "^3.0.5"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"keywords": [
"WebSocket",
"Type Safety",
"Real-time Communication",
"Client-Server Architecture",
"TypeScript",
"Networking"
]
}