Files
typedsocket/package.json

68 lines
1.7 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",
2024-04-18 21:49:13 +02:00
"version": "3.0.1",
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/ --web)",
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.2",
"@git.zone/tsrun": "^2.0.0",
"@git.zone/tstest": "^3.1.3",
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartserve": "^1.1.0",
"@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.10",
"@api.global/typedrequest-interfaces": "^3.0.19",
"@push.rocks/isohash": "^2.0.1",
"@push.rocks/smartjson": "^5.2.0",
"@push.rocks/smartrx": "^3.0.10",
"@push.rocks/smartsocket": "^2.1.0",
"@push.rocks/smartstring": "^4.1.0",
"@push.rocks/smarturl": "^3.1.0"
},
"peerDependencies": {
"@push.rocks/smartserve": ">=1.0.0"
},
"peerDependenciesMeta": {
"@push.rocks/smartserve": {
"optional": true
}
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"
2020-12-21 21:01:37 +00:00
]
2024-04-18 21:49:13 +02:00
}