typedsocket/package.json

58 lines
1.5 KiB
JSON
Raw Normal View History

2020-12-21 21:01:37 +00:00
{
2023-08-04 14:22:39 +00:00
"name": "@api.global/typedsocket",
2023-08-06 14:52:04 +00:00
"version": "3.0.0",
2020-12-21 21:01:37 +00:00
"private": false,
2024-04-14 17:01:25 +00:00
"description": "A library for creating typed WebSocket connections, supporting bi-directional communication with type safety.",
2020-12-21 21:01:37 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 21:46:08 +00:00
"type": "module",
2020-12-21 21:01:37 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2022-10-26 08:55:08 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2020-12-21 21:01:37 +00:00
},
"devDependencies": {
2023-08-04 14:22:39 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/tapbundle": "^5.0.12",
2023-08-06 14:37:39 +00:00
"@types/node": "^20.4.8"
2020-12-21 21:01:37 +00:00
},
"dependencies": {
2023-08-05 09:46:39 +00:00
"@api.global/typedrequest": "^3.0.1",
"@api.global/typedrequest-interfaces": "^3.0.1",
2023-08-04 14:22:39 +00:00
"@push.rocks/isohash": "^2.0.0",
"@push.rocks/smartjson": "^5.0.5",
2023-08-06 14:37:39 +00:00
"@push.rocks/smartrx": "^3.0.6",
"@push.rocks/smartsocket": "^2.0.22",
2023-08-04 14:22:39 +00:00
"@push.rocks/smartstring": "^4.0.2",
"@push.rocks/smarturl": "^3.0.5"
2020-12-21 21:01:37 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 17:01:25 +00:00
],
"keywords": [
"WebSocket",
"Type Safety",
"Real-time Communication",
"Client-Server Architecture",
"TypeScript",
"Networking"
2020-12-21 21:01:37 +00:00
]
2024-04-14 17:01:25 +00:00
}