Compare commits

..

No commits in common. "master" and "v5.0.18" have entirely different histories.

4 changed files with 2905 additions and 4698 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartjson",
"version": "5.0.20",
"version": "5.0.18",
"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",
@ -12,14 +12,14 @@
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartjson.git"
"url": "git+ssh://git@gitlab.com/pushrocks/smartjson.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartjson/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartjson",
"homepage": "https://gitlab.com/pushrocks/smartjson#README",
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",

7544
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartjson',
version: '5.0.20',
version: '5.0.18',
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,5 +1,6 @@
import * as plugins from './smartjson.plugins.js';
import * as bufferhandling from './bufferhandling.js';
import { json } from 'stream/consumers';
interface JsonObject {
[key: string]: any;