Sign In

flatted

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flatted - npm Package Compare versions

Comparing version
3.4.2
to
3.4.3
+10
-5
package.json
{
"name": "flatted",
"version": "3.4.2",
"version": "3.4.3",
"description": "A super light and fast circular JSON parser.",

@@ -54,3 +54,3 @@ "unpkg": "min.js",

"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@rollup/plugin-babel": "^7.0.0",

@@ -63,8 +63,13 @@ "@rollup/plugin-terser": "^1.0.0",

"circular-json-es6": "^2.0.2",
"flatted-view": "^0.1.1",
"flatted-view": "^0.1.6",
"jsan": "^3.1.14",
"rollup": "^4.59.0",
"terser": "^5.46.0",
"rollup": "^4.60.1",
"terser": "^5.46.1",
"typescript": "^5.9.3"
},
"overrides": {
"c8": {
"yargs": "^18.0.0"
}
},
"module": "./esm/index.js",

@@ -71,0 +76,0 @@ "type": "module",

export function parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;
export function stringify(value: any, replacer?: (string | number)[] | ((this: any, key: string, value: any) => any), space?: string | number | undefined): string;
export function stringify(value: any, replacer?: (string | number)[] | null | undefined | ((this: any, key: string, value: any) => any), space?: string | number | undefined): string;
export function toJSON(value: any): any;
export function fromJSON(value: any): any;