{"id":37424296,"url":"https://github.com/hyperjump-io/json","last_synced_at":"2026-01-16T06:11:14.083Z","repository":{"id":57750710,"uuid":"523907978","full_name":"hyperjump-io/json","owner":"hyperjump-io","description":"A JSON parser and stringifier with JSON Pointer support","archived":false,"fork":false,"pushed_at":"2024-07-11T20:08:03.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T21:16:03.244Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hyperjump-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["jdesrosiers"]}},"created_at":"2022-08-12T00:31:15.000Z","updated_at":"2024-07-11T20:08:06.000Z","dependencies_parsed_at":"2023-02-12T20:45:32.565Z","dependency_job_id":null,"html_url":"https://github.com/hyperjump-io/json","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/hyperjump-io/json","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperjump-io%2Fjson","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperjump-io%2Fjson/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperjump-io%2Fjson/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperjump-io%2Fjson/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyperjump-io","download_url":"https://codeload.github.com/hyperjump-io/json/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperjump-io%2Fjson/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-16T06:11:13.339Z","updated_at":"2026-01-16T06:11:14.074Z","avatar_url":"https://github.com/hyperjump-io.png","language":"JavaScript","funding_links":["https://github.com/sponsors/jdesrosiers"],"categories":[],"sub_categories":[],"readme":"Json\n====\n\nThis is a reimplementation of the builtin `JSON` object to add JSON Pointer\nparameters to the \"reviver\" and \"replacer\" functions. Other than the added\nparameters, the interface and behavior is the same as the original.\n\nInstallation\n------------\nIncludes support for node.js (ES Modules, TypeScript) and browsers.\n\n```bash\nnpm install @hyperjump/json\n```\n\nUsage\n-----\n\n```javascript\nimport * as Json from \"@hyperjump/json\";\n\nconst subject = `{\n  \"type\": \"object\",\n  \"properties\": {\n    \"foo\": { \"type\": \"string\" },\n    \"bar\": { \"$ref\": \"#/$defs/number\" }\n  },\n  \"required\": [\"foo\", \"bar\"],\n\n  \"$defs\": {\n    \"number\": { \"type\": \"number\" }\n  }\n}`;\nconst result = Json.parse(subject, (key, value, pointer) =\u003e {\n  console.log(\"REVIVER\", pointer, key, JSON.stringify(value));\n  return value;\n});\n\nconst json = Json.stringify(result, (key, value, pointer) =\u003e {\n  console.log(\"REPLACER\", pointer, key, value);\n  return value;\n}, \"  \");\n```\n\nContributing\n------------\n\n### Tests\n\nRun the tests\n\n```bash\nnpm test\n```\n\nRun the tests with a continuous test runner\n```bash\nnpm test -- --watch\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperjump-io%2Fjson","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyperjump-io%2Fjson","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperjump-io%2Fjson/lists"}