{"id":19670347,"url":"https://github.com/mat-sz/plist","last_synced_at":"2025-06-24T16:36:55.341Z","repository":{"id":39599775,"uuid":"507068412","full_name":"mat-sz/plist","owner":"mat-sz","description":"📝 An universal TypeScript library for handing Apple's Property Lists. Supports binary, text and XML plists; works well in both browser and node.","archived":false,"fork":false,"pushed_at":"2025-04-09T16:54:49.000Z","size":1346,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-11T16:17:14.856Z","etag":null,"topics":["apple","binary","ios","javascript","javascript-library","library","macos","nextstep","openstep","parser","plist","property-list","propertylist","serializer","typescript","typescript-library","xml"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause-clear","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mat-sz.png","metadata":{"files":{"readme":"README.md","changelog":null,"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-06-24T16:00:42.000Z","updated_at":"2025-05-28T02:24:04.000Z","dependencies_parsed_at":"2025-01-21T18:38:59.115Z","dependency_job_id":"a7bef90f-5536-41c4-83ec-fc39ce1f793e","html_url":"https://github.com/mat-sz/plist","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"eb646320f1f8628942cfda64c7df01c9e7981f33"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/mat-sz/plist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mat-sz%2Fplist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mat-sz%2Fplist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mat-sz%2Fplist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mat-sz%2Fplist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mat-sz","download_url":"https://codeload.github.com/mat-sz/plist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mat-sz%2Fplist/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261311759,"owners_count":23139485,"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":["apple","binary","ios","javascript","javascript-library","library","macos","nextstep","openstep","parser","plist","property-list","propertylist","serializer","typescript","typescript-library","xml"],"created_at":"2024-11-11T17:06:00.131Z","updated_at":"2025-06-24T16:36:55.311Z","avatar_url":"https://github.com/mat-sz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e@plist/plist\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\nAn universal TypeScript library for handing Apple's Property Lists. Supports binary, text and XML plists; works well in both browser and node.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cimg alt=\"workflow\" src=\"https://img.shields.io/github/actions/workflow/status/mat-sz/plist/node.js.yml?branch=main\"\u003e\n\u003ca href=\"https://npmjs.com/package/@plist/plist\"\u003e\n\u003cimg alt=\"npm\" src=\"https://img.shields.io/npm/v/@plist/plist\"\u003e\n\u003cimg alt=\"npm\" src=\"https://img.shields.io/npm/dw/@plist/plist\"\u003e\n\u003cimg alt=\"NPM\" src=\"https://img.shields.io/npm/l/@plist/plist\"\u003e\n\u003c/a\u003e\n\u003c/p\u003e\n\n## About\n\n@plist/\\* adapts code, logic and test cases from:\n\n- [node-bplist-parser](https://github.com/joeferner/node-bplist-parser)\n- [node-bplist-creator](https://github.com/joeferner/node-bplist-creator)\n- [plist.js](https://github.com/TooTallNate/plist.js)\n- [nextstep-plist](https://github.com/chee/nextstep-plist)\n- [simple-plist](https://github.com/wollardj/simple-plist)\n\nI've decided to proceed with creating new libraries, instead of using those packages as dependencies, since it was necessary to modify the upstream code to remove reliance on node-only packages (mainly `fs`) and this would be too much of a change for anyone relying on the aforementioned libraries.\n\nThis library differs from other plist-related JavaScript libraries:\n\n- works on binary, text (OpenStep/NEXTStep), and XML plists\n- works in both node.js and browser environments (ArrayBuffer instead of Buffer, no usage of `fs` or other node-only libraries)\n\n## Installation\n\n@plist/plist is available on [npm](https://www.npmjs.com/package/@plist/plist), you can install it with either npm or yarn:\n\n```sh\nnpm install @plist/plist\n# or:\nyarn install @plist/plist\n```\n\n## Usage\n\n```ts\nimport { parse, serialize } from '@plist/plist';\n\nparse(serialize({ hello: 'world' })); // =\u003e { hello: 'world' }\n```\n\n## Compatibility\n\nThis library relies on (relatively) new JavaScript features such as BigInt.\n\nTherefore, without polyfills, those are the minimum browser and node/deno versions @plist/plist will work in:\n\n| Environment       | Version                        |\n| ----------------- | ------------------------------ |\n| Chrome/Chromium   | 67+                            |\n| Edge              | 79+                            |\n| Firefox           | 100+                           |\n| Internet Explorer | Not supported                  |\n| Opera             | 54+                            |\n| Safari            | 14.1+ (iOS 14.1+, macOS 11.1+) |\n| Deno              | 1.0+                           |\n| node.js           | 16.5.0+                        |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmat-sz%2Fplist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmat-sz%2Fplist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmat-sz%2Fplist/lists"}