You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
Currently to read (and probably generate json) the tool uses: JSON.parse. For large contract files parsing ends up with exception:
SyntaxError: Expected ':' after property name in JSON at position 65536 (line 2154 column 19)
at JSON.parse (<anonymous>)
at generate (/usr/local/lib/node_modules/json-schema-faker-cli/node_modules/json-schema-faker/bin/gen.cjs:93:55)
at Transform.transform [as _transform] (/usr/local/lib/node_modules/json-schema-faker-cli/node_modules/json-schema-faker/bin/gen.cjs:111:7)
The JSON parses stops after reaching max position: 65536
Currently to read (and probably generate json) the tool uses: JSON.parse. For large contract files parsing ends up with exception:
The JSON parses stops after reaching max position: 65536
Would be feasible to use something like: https://www.npmjs.com/package/JSONStream?