2016-08-06 23:27:53 +02:00
{
2023-07-21 03:53:41 +02:00
"name" : "@push.rocks/smartsocket" ,
2025-03-10 23:02:24 +00:00
"version" : "2.1.0" ,
2024-04-14 18:20:36 +02:00
"description" : "Provides easy and secure websocket communication mechanisms, including server and client implementation, function call routing, connection management, and tagging." ,
2020-09-24 18:04:11 +00:00
"main" : "dist_ts/index.js" ,
"typings" : "dist_ts/index.d.ts" ,
2022-03-14 22:40:55 +01:00
"type" : "module" ,
2016-08-06 23:27:53 +02:00
"scripts" : {
2020-09-24 18:03:01 +00:00
"test" : "(tstest test/)" ,
2024-04-26 15:31:08 +02:00
"build" : "(tsbuild --web --allowimplicitany && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)" ,
2022-12-28 13:52:16 +01:00
"buildDocs" : "tsdoc"
2016-08-06 23:27:53 +02:00
} ,
"repository" : {
"type" : "git" ,
2024-05-29 14:16:19 +02:00
"url" : "https://code.foss.global/push.rocks/smartsocket.git"
2016-08-06 23:27:53 +02:00
} ,
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"bugs" : {
"url" : "https://gitlab.com/pushrocks/smartsocket/issues"
} ,
2024-05-29 14:16:19 +02:00
"homepage" : "https://code.foss.global/push.rocks/smartsocket" ,
2016-08-06 23:27:53 +02:00
"dependencies" : {
2024-04-18 20:21:15 +02:00
"@api.global/typedrequest-interfaces" : "^3.0.18" ,
"@api.global/typedserver" : "^3.0.27" ,
2023-07-21 03:53:41 +02:00
"@push.rocks/isohash" : "^2.0.0" ,
"@push.rocks/isounique" : "^1.0.5" ,
2024-04-18 20:21:15 +02:00
"@push.rocks/lik" : "^6.0.14" ,
2023-07-21 03:53:41 +02:00
"@push.rocks/smartdelay" : "^3.0.5" ,
2024-04-18 20:21:15 +02:00
"@push.rocks/smartenv" : "^5.0.12" ,
"@push.rocks/smartjson" : "^5.0.19" ,
2023-07-21 03:53:41 +02:00
"@push.rocks/smartlog" : "^3.0.3" ,
"@push.rocks/smartpromise" : "^4.0.3" ,
2024-04-18 20:21:15 +02:00
"@push.rocks/smartrx" : "^3.0.7" ,
"@push.rocks/smarttime" : "^4.0.6" ,
2025-03-10 23:02:24 +00:00
"engine.io" : "6.6.4" ,
"socket.io" : "4.8.1" ,
"socket.io-client" : "4.8.1"
2016-08-07 14:58:20 +02:00
} ,
"devDependencies" : {
2024-04-18 20:21:15 +02:00
"@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/tapbundle" : "^5.0.23" ,
2025-03-10 23:02:24 +00:00
"@types/node" : "^22.13.10"
2019-01-30 03:14:02 +01:00
} ,
2019-08-12 18:16:25 +02:00
"private" : false ,
"files" : [
2020-09-24 18:04:11 +00:00
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
"dist_*/**/*" ,
"dist_ts/**/*" ,
"dist_ts_web/**/*" ,
"assets/**/*" ,
2019-08-12 18:16:25 +02:00
"cli.js" ,
"npmextra.json" ,
"readme.md"
2020-09-24 18:04:11 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2024-04-14 18:20:36 +02:00
] ,
"keywords" : [
"websocket" ,
"communication" ,
"server" ,
"client" ,
"socket.io" ,
"authentication" ,
"reconnection" ,
"tagging" ,
"function routing" ,
"secure"
2019-08-12 18:16:25 +02:00
]
2025-03-10 23:02:24 +00:00
}