Compare commits

...

2 Commits

Author SHA1 Message Date
7df82ce64d 5.0.19 2024-04-17 20:19:18 +02:00
09b74e4053 fix(core): update 2024-04-17 20:19:17 +02:00
3 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartjson",
"version": "5.0.18",
"version": "5.0.19",
"private": false,
"description": "A library for handling typed JSON data, providing functionalities for parsing, stringifying, and working with JSON objects, including support for encoding and decoding buffers.",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartjson',
version: '5.0.18',
version: '5.0.19',
description: 'A library for handling typed JSON data, providing functionalities for parsing, stringifying, and working with JSON objects, including support for encoding and decoding buffers.'
}

View File

@ -1,6 +1,5 @@
import * as plugins from './smartjson.plugins.js';
import * as bufferhandling from './bufferhandling.js';
import { json } from 'stream/consumers';
interface JsonObject {
[key: string]: any;