Files
smartsocket/package.json
T

79 lines
2.0 KiB
JSON
Raw Normal View History

2016-08-06 23:27:53 +02:00
{
2023-07-21 03:53:41 +02:00
"name": "@push.rocks/smartsocket",
2025-12-04 07:59:44 +00:00
"version": "4.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": {
"test": "(tstest test/ --verbose)",
"build": "tsbuild --web && tsbundle",
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": "Task Venture Capital GmbH",
2016-08-06 23:27:53 +02:00
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartsocket/issues"
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": {
"@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",
"@push.rocks/lik": "^6.4.1",
2023-07-21 03:53:41 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartjson": "^6.0.1",
"@push.rocks/smartlog": "^3.2.2",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrx": "^3.0.10",
"@push.rocks/smarttime": "^4.2.3",
"ws": "^8.20.0"
2016-08-07 14:58:20 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.1",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/smartserve": "^2.0.4",
"@types/node": "^25.6.0",
"@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",
".smartconfig.json",
"license",
2019-08-12 18:16:25 +02:00
"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",
"native websocket",
2024-04-14 18:20:36 +02:00
"authentication",
"reconnection",
"tagging",
"function routing",
"secure",
"rpc"
],
"packageManager": "pnpm@10.28.2"
2025-03-10 23:02:24 +00:00
}