Files
typedsocket/package.json

65 lines
1.8 KiB
JSON
Raw Normal View History

2020-12-21 21:01:37 +00:00
{
2023-08-04 16:22:39 +02:00
"name": "@api.global/typedsocket",
2025-12-03 09:34:33 +00:00
"version": "4.0.0",
2020-12-21 21:01:37 +00:00
"private": false,
2024-04-14 19:01:25 +02: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 22:46:08 +01:00
"type": "module",
2020-12-21 21:01:37 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose)",
2024-04-18 21:49:13 +02:00
"build": "(tsbuild --web --allowimplicitany --skiplibcheck)",
2022-10-26 10:55:08 +02:00
"buildDocs": "tsdoc"
2020-12-21 21:01:37 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^3.1.2",
"@git.zone/tsbundle": "^2.6.3",
"@git.zone/tsrun": "^2.0.0",
"@git.zone/tstest": "^3.1.3",
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartserve": "^1.1.2",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^24.10.1"
2020-12-21 21:01:37 +00:00
},
"dependencies": {
"@api.global/typedrequest": "^3.1.11",
"@api.global/typedrequest-interfaces": "^3.0.19",
"@push.rocks/isohash": "^2.0.1",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartjson": "^5.2.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrx": "^3.0.10",
"@push.rocks/smartstring": "^4.1.0",
"@push.rocks/smarturl": "^3.1.0"
},
"peerDependencies": {
"@push.rocks/smartserve": ">=1.1.0"
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 19:01:25 +02:00
],
"keywords": [
"WebSocket",
"Type Safety",
"Real-time Communication",
"Client-Server Architecture",
"TypeScript",
"Networking"
],
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34"
2024-04-18 21:49:13 +02:00
}