UNPKG

full-json-extractor

Version:

Brute-forces all possible highest-level json candidates with pruning to keep performance fast with reasonable payload < 1MB

38 lines (37 loc) 1.03 kB
{ "name": "full-json-extractor", "version": "1.0.1", "main": "dist/index.js", "scripts": { "clean": "rimraf dist build .cache", "format": "prettier --check \"src/**/*.{js,ts,tsx,jsx,json,css,md}", "format:fix": "prettier --write \"src/**/*.{js,ts,tsx,jsx,json,css,md}", "build": "tsc", "test": "jest", "release": "npm run format && npm run test && npm run build" }, "keywords": [ "json", "json parse", "json extract" ], "author": "Jonzdan", "license": "ISC", "description": "Brute-forces all possible highest-level json candidates with pruning to keep performance fast with reasonable payload < 1MB", "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.2.1", "jest": "^30.0.5", "prettier": "^3.6.2", "rimraf": "^6.0.1", "ts-jest": "^29.4.1", "ts-node": "^10.9.2", "typescript": "^5.9.2" }, "dependencies": { "interval-tree-1d": "^1.0.4" }, "publishConfig": { "registry": "https://registry.npmjs.org/" } }