fix(core): update

This commit is contained in:
Philipp Kunz 2023-08-04 16:22:39 +02:00
parent 0edc903900
commit 4f0066b5ca
7 changed files with 1272 additions and 896 deletions

View File

@ -3,10 +3,10 @@
"projectType": "npm",
"module": {
"githost": "gitlab.com",
"gitscope": "apiglobal",
"gitscope": "api.global",
"gitrepo": "typedsocket",
"description": "a typedrequest extension supporting websockets",
"npmPackagename": "@apiglobal/typedsocket",
"npmPackagename": "@api.global/typedsocket",
"license": "MIT",
"projectDomain": "api.global"
}

View File

@ -1,5 +1,5 @@
{
"name": "@apiglobal/typedsocket",
"name": "@api.global/typedsocket",
"version": "2.0.24",
"private": false,
"description": "a typedrequest extension supporting websockets",
@ -14,22 +14,22 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.6",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/smartenv": "^5.0.5",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.15.11"
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.7"
},
"dependencies": {
"@apiglobal/typedrequest": "^2.0.8",
"@apiglobal/typedrequest-interfaces": "2.0.1",
"@pushrocks/isohash": "^2.0.0",
"@pushrocks/smartjson": "^5.0.5",
"@pushrocks/smartsocket": "^2.0.18",
"@pushrocks/smartstring": "^4.0.2",
"@pushrocks/smarturl": "^3.0.5"
"@api.global/typedrequest": "^3.0.0",
"@api.global/typedrequest-interfaces": "^2.0.2",
"@push.rocks/isohash": "^2.0.0",
"@push.rocks/smartjson": "^5.0.5",
"@push.rocks/smartsocket": "^2.0.20",
"@push.rocks/smartstring": "^4.0.2",
"@push.rocks/smarturl": "^3.0.5"
},
"browserslist": [
"last 1 chrome versions"
@ -46,4 +46,4 @@
"npmextra.json",
"readme.md"
]
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle';
import { tap, expect } from '@push.rocks/tapbundle';
import * as typedsocket from '../ts/index.js';

View File

@ -1,4 +1,4 @@
import { expect, tap } from '@pushrocks/tapbundle';
import { expect, tap } from '@push.rocks/tapbundle';
import * as typedrequest from '@apiglobal/typedrequest';
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@apiglobal/typedsocket',
version: '2.0.24',
name: '@api.global/typedsocket',
version: '2.0.25',
description: 'a typedrequest extension supporting websockets'
}

View File

@ -5,10 +5,10 @@ import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
export { typedrequest, typedrequestInterfaces };
// @pushrocks scope
import * as isohash from '@pushrocks/isohash';
import * as smartjson from '@pushrocks/smartjson';
import * as smartsocket from '@pushrocks/smartsocket';
import * as smartstring from '@pushrocks/smartstring';
import * as smarturl from '@pushrocks/smarturl';
import * as isohash from '@push.rocks/isohash';
import * as smartjson from '@push.rocks/smartjson';
import * as smartsocket from '@push.rocks/smartsocket';
import * as smartstring from '@push.rocks/smartstring';
import * as smarturl from '@push.rocks/smarturl';
export { isohash, smartjson, smartsocket, smartstring, smarturl };