Compare commits

..

4 Commits

Author SHA1 Message Date
2aefae00de 2.0.23 2023-09-09 23:32:12 +02:00
6753a4fefc fix(core): update 2023-09-09 23:32:12 +02:00
8c5428baf8 2.0.22 2023-08-06 16:30:45 +02:00
69c1ad04dc fix(core): update 2023-08-06 16:30:44 +02:00
6 changed files with 1403 additions and 201 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartsocket",
"version": "2.0.21",
"version": "2.0.23",
"description": "easy and secure websocket communication",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
@ -21,29 +21,29 @@
},
"homepage": "https://gitlab.com/pushrocks/smartsocket#README",
"dependencies": {
"@apiglobal/typedrequest-interfaces": "^2.0.1",
"@apiglobal/typedserver": "^2.0.65",
"@api.global/typedrequest-interfaces": "^3.0.1",
"@api.global/typedserver": "^3.0.4",
"@push.rocks/isohash": "^2.0.0",
"@push.rocks/isounique": "^1.0.5",
"@push.rocks/lik": "^6.0.3",
"@push.rocks/lik": "^6.0.5",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/smartjson": "^5.0.1",
"@push.rocks/smartjson": "^5.0.10",
"@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.6",
"@push.rocks/smarttime": "^4.0.4",
"engine.io": "6.3.1",
"socket.io": "4.5.4",
"socket.io-client": "4.5.4"
"@push.rocks/smarttime": "^4.0.5",
"engine.io": "6.5.2",
"socket.io": "4.7.2",
"socket.io-client": "4.7.2"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.8"
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.6.0"
},
"private": false,
"files": [

1574
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import * as isohash from '@push.rocks/isohash';
import * as smartexpress from '@apiglobal/typedserver';
import * as smartexpress from '@api.global/typedserver';
import * as smartsocket from '../ts/index.js';

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartsocket',
version: '2.0.21',
version: '2.0.23',
description: 'easy and secure websocket communication'
}

View File

@ -1,5 +1,5 @@
// apiglobal scope
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
export { typedrequestInterfaces };

View File

@ -5,7 +5,7 @@ import type * as https from 'https';
export type { http, https };
// pushrocks scope
import type * as typedserver from '@apiglobal/typedserver';
import type * as typedserver from '@api.global/typedserver';
export type { typedserver };