smartsocket/package.json

76 lines
2.1 KiB
JSON
Raw Normal View History

2016-08-06 21:27:53 +00:00
{
2023-07-21 01:53:41 +00:00
"name": "@push.rocks/smartsocket",
2023-09-10 08:41:41 +00:00
"version": "2.0.24",
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/)",
2022-12-28 12:52:16 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)",
"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": {
2023-09-09 21:32:12 +00:00
"@api.global/typedrequest-interfaces": "^3.0.1",
"@api.global/typedserver": "^3.0.4",
2023-07-21 01:53:41 +00:00
"@push.rocks/isohash": "^2.0.0",
"@push.rocks/isounique": "^1.0.5",
2023-09-09 21:32:12 +00:00
"@push.rocks/lik": "^6.0.5",
2023-07-21 01:53:41 +00:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.5",
2023-09-09 21:32:12 +00:00
"@push.rocks/smartjson": "^5.0.10",
2023-07-21 01:53:41 +00:00
"@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.3",
2023-08-06 14:09:28 +00:00
"@push.rocks/smartrx": "^3.0.6",
2023-09-09 21:32:12 +00:00
"@push.rocks/smarttime": "^4.0.5",
"engine.io": "6.5.2",
"socket.io": "4.7.2",
"socket.io-client": "4.7.2"
2016-08-07 12:58:20 +00:00
},
"devDependencies": {
2023-07-21 01:53:41 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
2023-09-09 21:32:12 +00:00
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.6.0"
},
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-14 16:20:36 +00:00
}