{"id":19723993,"url":"https://github.com/wraith13/jsonarch","last_synced_at":"2026-06-11T19:31:39.453Z","repository":{"id":308995796,"uuid":"1031186515","full_name":"wraith13/jsonarch","owner":"wraith13","description":"Jsonarch is JSON to JSON processor for JavaScript/TypeScript, Commandline.","archived":false,"fork":false,"pushed_at":"2025-08-09T04:45:00.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-21T19:03:13.052Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wraith13.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE_1_0.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-03T07:43:28.000Z","updated_at":"2025-08-09T04:45:03.000Z","dependencies_parsed_at":"2025-08-09T06:21:43.604Z","dependency_job_id":"e541e9a7-0113-45b0-a7f9-3ac375a780c9","html_url":"https://github.com/wraith13/jsonarch","commit_stats":null,"previous_names":["wraith13/jsonarch"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wraith13/jsonarch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraith13%2Fjsonarch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraith13%2Fjsonarch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraith13%2Fjsonarch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraith13%2Fjsonarch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wraith13","download_url":"https://codeload.github.com/wraith13/jsonarch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraith13%2Fjsonarch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34215253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-11T23:24:09.475Z","updated_at":"2026-06-11T19:31:39.431Z","avatar_url":"https://github.com/wraith13.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jsonarch\n\n\u003e [!WARNING]\n\u003e **This software is currently under development.**\n\nJsonarch is JSON to JSON processor for JavaScript/TypeScript, Commandline.\n\nRequires: [Node.js](https://nodejs.org/)\n\n## Feature\n\n- Secure meta programmable JSON\n- Profiler ( systerm, code, data )\n- Origin map ( code, data )\n- Influence map ( code, data )\n- Call graph ( code )\n\n## Overview\n\nMinimum processing flow\n\n```mermaid\ngraph LR;\n    T[Template JSON]--\u003eJ(Jsonarch);\n    J(Jsonarch)--\u003eO[Output JSON];\n```\n\nMaximum processing flow\n\n```mermaid\ngraph LR;\n    T[Template JSON]--\u003eJ(Jsonarch);\n    P[Parameter JSON]--\u003eJ(Jsonarch);\n    C[Cache JSON]--\u003eJ(Jsonarch);\n    S[Setting JSON]--\u003eJ(Jsonarch);\n    subgraph R[Result JSON]\n        M((Meta data));\n        O[Output JSON];\n    end\n    J(Jsonarch)--\u003eM((Meta data));\n    J(Jsonarch)--\u003eO[Output JSON];\n```\n\n|File|Description|\n|---|---|\n|[Template JSON](./document/reference.md#template-json)|Code.|\n|[Parameter JSON](./document/reference.md#parameter-json)|Data ( optional ).|\n|[Cache JSON](./document/reference.md#cache-json)|Cache ( optional ).|\n|[Setting JSON](./document/reference.md#setting-json)|Settings ( optional ).|\n|[Result JSON](./document/reference.md#result-json)|Output JSON with meta data( profile result, origin map, influence map, call graph, etc ).|\n|[Output JSON](./document/reference.md#output-json)|Generated JSON.|\n\nSee [Jsonarch Reference](./document/reference.md) for details.\n\n## How to install for command\n\n```sh\nnpm install jsonarch -g\n```\n\n## How to use Jsonarch as command\n\nYou need to run this command with administrator privileges.\n\n```sh\njsonarch template.json -p parameter.json -c cache.json -s setting.json -r result.json -o output.json\n```\n\nSee [Jsonarch Commandline Tool Reference](./document/commandline.md) for details.\n\n## How to install as npm package\n\n```sh\nnpm install jsonarch --save\n```\n\n## How to use Jsonarch as npm package\n\n```ts\nimport { Jsonarch } from \"jsonarch\";\n\nJsonarch.process();\n```\n\nSee [Jsonarch Module Reference](./document/module.md) for details.\n\n## How to build\n\nRequires: [Node.js](https://nodejs.org/), [TypeScript Compiler](https://www.npmjs.com/package/typescript)\n\n`tsc -P ./source` or `tsc -P ./source -w`\n\n## JSON Schemas\n\n- [Template JSON Schema](./json-schema/template-json-schema.json)\n- [Setting JSON Schema](./json-schema/setting-json-schema.json)\n\n## Samples\n\n- [Jsonarch Samples](./sample/index.md)\n\n## References\n\n- [Jsonarch Reference](./document/reference.md)\n- [Jsonarch Module Reference](./document/module.md)\n- [Jsonarch Commandline Tool Reference](./document/commandline.md)\n- [Jsonarch Schema Reference](./document/schema.md)\n\n## License\n\n- [Boost Software License](LICENSE_1_0.txt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwraith13%2Fjsonarch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwraith13%2Fjsonarch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwraith13%2Fjsonarch/lists"}