{"id":15546902,"url":"https://github.com/kit-p/json-kit","last_synced_at":"2025-07-06T08:02:16.096Z","repository":{"id":65952790,"uuid":"570764302","full_name":"Kit-p/json-kit","owner":"Kit-p","description":"JSON Toolkit for (de)serialization | (un)minification | (de)compression","archived":false,"fork":false,"pushed_at":"2025-07-01T02:44:51.000Z","size":8198,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-01T03:38:24.081Z","etag":null,"topics":["json","nodejs","npm-package","typescript"],"latest_commit_sha":null,"homepage":"https://kit-p.github.io/json-kit/","language":"TypeScript","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/Kit-p.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2022-11-26T03:41:21.000Z","updated_at":"2025-06-04T02:47:52.000Z","dependencies_parsed_at":"2024-01-01T02:26:40.504Z","dependency_job_id":"dd51868a-ae28-42af-bc3d-717125f2f322","html_url":"https://github.com/Kit-p/json-kit","commit_stats":{"total_commits":150,"total_committers":4,"mean_commits":37.5,"dds":0.4066666666666666,"last_synced_commit":"bb90d384d047bb7ae8344e30f43a289f1892d73c"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/Kit-p/json-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kit-p%2Fjson-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kit-p%2Fjson-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kit-p%2Fjson-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kit-p%2Fjson-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kit-p","download_url":"https://codeload.github.com/Kit-p/json-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kit-p%2Fjson-kit/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263868205,"owners_count":23522315,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["json","nodejs","npm-package","typescript"],"created_at":"2024-10-02T13:05:18.813Z","updated_at":"2025-07-06T08:02:16.042Z","avatar_url":"https://github.com/Kit-p.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003ejson-kit\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.com/package/@kit-p/json-kit\"\u003e\n    \u003cimg\n      src=\"https://img.shields.io/npm/v/%40kit-p/json-kit\"\n      alt=\"npm: @kit-p/json-kit\"\n    /\u003e\n  \u003c/a\u003e\n  \u003ca\u003e\n    \u003cimg\n      src=\"https://img.shields.io/github/languages/top/Kit-p/json-kit\"\n      alt=\"languages: github.com/Kit-p/json-kit\"\n    /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/semantic-release/semantic-release\"\u003e\n    \u003cimg\n      src=\"https://img.shields.io/badge/semantic--release-conventionalcommits-e10079?logo=semantic-release\"\n      alt=\"semantic-release: conventionalcommits\"\n    /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://gitpod.io/#https://github.com/Kit-p/json-kit\"\u003e\n    \u003cimg\n      src=\"https://img.shields.io/badge/Contribute%20with-Gitpod-908a85?logo=gitpod\"\n      alt=\"Contribute with Gitpod\"\n    /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\u003ch3 align=\"center\"\u003eJSON Toolkit for (de)serialization | (un)minification | (de)compression\u003c/h3\u003e\n\n---\n\n## Project State\n\n\u003e This project is in **maintenance** state. The APIs are stable.\n\n## Installation\n\n### For Node.js:\n\n- `npm install @kit-p/json-kit`\n- `yarn add @kit-p/json-kit`\n- `pnpm add @kit-p/json-kit`\n\n#### _CommonJS_\n\n```js\nconst { JsonKit } = require(\"@kit-p/json-kit\");\n```\n\n#### _ESM_\n\n```js\nimport { JsonKit } from \"@kit-p/json-kit\";\n```\n\n### For browsers:\n\n#### _CommonJS_\n\n- ```html\n  \u003cscript src=\"https://cdn.jsdelivr.net/npm/@kit-p/json-kit\"\u003e\u003c/script\u003e\n  \u003cscript\u003e\n    console.log(JsonKit);\n  \u003c/script\u003e\n  ```\n- ```html\n  \u003cscript src=\"https://unpkg.com/@kit-p/json-kit\"\u003e\u003c/script\u003e\n  \u003cscript\u003e\n    console.log(JsonKit);\n  \u003c/script\u003e\n  ```\n\n#### _ESM_\n\n- ```html\n  \u003cscript type=\"module\"\u003e\n    import { JsonKit } from \"https://cdn.jsdelivr.net/npm/@kit-p/json-kit/+esm\";\n  \u003c/script\u003e\n  ```\n- ```html\n  \u003cscript type=\"module\"\u003e\n    import { JsonKit } from \"https://unpkg.com/@kit-p/json-kit?module\";\n  \u003c/script\u003e\n  ```\n\n## Usage\n\nSee [the documentation site](https://kit-p.github.io/json-kit/modules.html) or [the repository Wiki page](https://github.com/Kit-p/json-kit/wiki/Exports) or `docs/modules.md`.\n\n## License\n\n[MIT](https://github.com/Kit-p/json-kit/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkit-p%2Fjson-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkit-p%2Fjson-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkit-p%2Fjson-kit/lists"}