2016-08-06 23:27:53 +02:00
{
2023-07-21 03:53:41 +02:00
"name" : "@push.rocks/smartsocket" ,
2025-12-03 09:22:44 +00:00
"version" : "3.0.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" : {
2025-12-03 02:20:38 +00:00
"test" : "(tstest test/ --verbose)" ,
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
} ,
2025-12-03 02:20:38 +00:00
"author" : "Task Venture Capital GmbH" ,
2016-08-06 23:27:53 +02:00
"license" : "MIT" ,
"bugs" : {
2025-12-03 02:20:38 +00:00
"url" : "https://community.foss.global/"
2016-08-06 23:27:53 +02:00
} ,
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" : {
2025-12-03 02:20:38 +00:00
"@api.global/typedrequest-interfaces" : "^3.0.19" ,
"@push.rocks/isohash" : "^2.0.1" ,
2023-07-21 03:53:41 +02:00
"@push.rocks/isounique" : "^1.0.5" ,
2025-12-03 02:20:38 +00:00
"@push.rocks/lik" : "^6.2.2" ,
2023-07-21 03:53:41 +02:00
"@push.rocks/smartdelay" : "^3.0.5" ,
2025-12-03 02:20:38 +00:00
"@push.rocks/smartenv" : "^6.0.0" ,
"@push.rocks/smartjson" : "^5.2.0" ,
"@push.rocks/smartlog" : "^3.1.10" ,
"@push.rocks/smartpromise" : "^4.2.3" ,
"@push.rocks/smartrx" : "^3.0.10" ,
"@push.rocks/smarttime" : "^4.1.1" ,
"ws" : "^8.18.3"
2016-08-07 14:58:20 +02:00
} ,
"devDependencies" : {
2025-12-03 02:20:38 +00:00
"@git.zone/tsbuild" : "^3.1.2" ,
"@git.zone/tsbundle" : "^2.6.3" ,
"@git.zone/tsrun" : "^2.0.0" ,
"@git.zone/tstest" : "^3.1.3" ,
2025-12-04 07:59:44 +00:00
"@push.rocks/smartserve" : "^1.1.2" ,
2025-12-03 02:20:38 +00:00
"@types/node" : "^24.10.1" ,
"@types/ws" : "^8.18.1"
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" ,
2025-12-03 02:20:38 +00:00
"native websocket" ,
2024-04-14 18:20:36 +02:00
"authentication" ,
"reconnection" ,
"tagging" ,
"function routing" ,
2025-12-03 02:20:38 +00:00
"secure" ,
"rpc"
2019-08-12 18:16:25 +02:00
]
2025-03-10 23:02:24 +00:00
}