2016-08-06 21:27:53 +00:00
{
2023-07-21 01:53:41 +00:00
"name" : "@push.rocks/smartsocket" ,
2024-04-18 18:21:16 +00:00
"version" : "2.0.25" ,
2024-04-14 16:20:36 +00: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 21:40:55 +00:00
"type" : "module" ,
2016-08-06 21:27:53 +00:00
"scripts" : {
2020-09-24 18:03:01 +00:00
"test" : "(tstest test/)" ,
2024-04-26 13:31:08 +00:00
"build" : "(tsbuild --web --allowimplicitany && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)" ,
2022-12-28 12:52:16 +00:00
"buildDocs" : "tsdoc"
2016-08-06 21:27:53 +00:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+ssh://git@gitlab.com/pushrocks/smartsocket.git"
} ,
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"bugs" : {
"url" : "https://gitlab.com/pushrocks/smartsocket/issues"
} ,
"homepage" : "https://gitlab.com/pushrocks/smartsocket#README" ,
"dependencies" : {
2024-04-18 18:21:15 +00:00
"@api.global/typedrequest-interfaces" : "^3.0.18" ,
"@api.global/typedserver" : "^3.0.27" ,
2023-07-21 01:53:41 +00:00
"@push.rocks/isohash" : "^2.0.0" ,
"@push.rocks/isounique" : "^1.0.5" ,
2024-04-18 18:21:15 +00:00
"@push.rocks/lik" : "^6.0.14" ,
2023-07-21 01:53:41 +00:00
"@push.rocks/smartdelay" : "^3.0.5" ,
2024-04-18 18:21:15 +00:00
"@push.rocks/smartenv" : "^5.0.12" ,
"@push.rocks/smartjson" : "^5.0.19" ,
2023-07-21 01:53:41 +00:00
"@push.rocks/smartlog" : "^3.0.3" ,
"@push.rocks/smartpromise" : "^4.0.3" ,
2024-04-18 18:21:15 +00:00
"@push.rocks/smartrx" : "^3.0.7" ,
"@push.rocks/smarttime" : "^4.0.6" ,
"engine.io" : "6.5.4" ,
"socket.io" : "4.7.5" ,
"socket.io-client" : "4.7.5"
2016-08-07 12:58:20 +00:00
} ,
"devDependencies" : {
2024-04-18 18:21:15 +00: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" ,
"@types/node" : "^20.12.7"
2019-01-30 02:14:02 +00:00
} ,
2019-08-12 16:16:25 +00: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 16:16:25 +00:00
"cli.js" ,
"npmextra.json" ,
"readme.md"
2020-09-24 18:04:11 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2024-04-14 16:20:36 +00:00
] ,
"keywords" : [
"websocket" ,
"communication" ,
"server" ,
"client" ,
"socket.io" ,
"authentication" ,
"reconnection" ,
"tagging" ,
"function routing" ,
"secure"
2019-08-12 16:16:25 +00:00
]
2024-04-18 18:21:16 +00:00
}