fix(core): update

This commit is contained in:
Philipp Kunz 2023-09-09 23:32:12 +02:00
parent 8c5428baf8
commit 6753a4fefc
6 changed files with 1402 additions and 200 deletions

View File

@ -21,29 +21,29 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartsocket#README", "homepage": "https://gitlab.com/pushrocks/smartsocket#README",
"dependencies": { "dependencies": {
"@apiglobal/typedrequest-interfaces": "^2.0.1", "@api.global/typedrequest-interfaces": "^3.0.1",
"@apiglobal/typedserver": "^2.0.65", "@api.global/typedserver": "^3.0.4",
"@push.rocks/isohash": "^2.0.0", "@push.rocks/isohash": "^2.0.0",
"@push.rocks/isounique": "^1.0.5", "@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/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.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/smartlog": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.3", "@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.6", "@push.rocks/smartrx": "^3.0.6",
"@push.rocks/smarttime": "^4.0.4", "@push.rocks/smarttime": "^4.0.5",
"engine.io": "6.3.1", "engine.io": "6.5.2",
"socket.io": "4.5.4", "socket.io": "4.7.2",
"socket.io-client": "4.5.4" "socket.io-client": "4.7.2"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.66", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8", "@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44", "@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77", "@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12", "@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.4.8" "@types/node": "^20.6.0"
}, },
"private": false, "private": false,
"files": [ "files": [

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 { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import * as isohash from '@push.rocks/isohash'; 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'; import * as smartsocket from '../ts/index.js';

View File

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

View File

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

View File

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