Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [
"postal",
"validation",
"validation-library",
"zip",
"postal-codes"
],
"is_fork": false,
"size_kb": 1656,
"has_wiki": false,
"homepage": "https://sashiksu.github.io/postal-code-checker/",
"languages": {
"JavaScript": 1474,
"TypeScript": 179333
},
"pushed_at": "2026-07-17T16:32:40Z",
"created_at": "2024-07-21T08:33:36Z",
"owner_type": "User",
"updated_at": "2026-07-17T16:32:25Z",
"description": "postal-code-checker is a comprehensive JavaScript/TypeScript package for validating postal codes across multiple countries. It provides an easy-to-use API for country selection and postal code validation, making it ideal for forms and address validation in web applications.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "TypeScript",
"significant_languages": [
"TypeScript"
]
},
"owner": {
"blog": "https://sashikasuraweera.com",
"name": "Sashika Suraweera",
"type": "User",
"login": "sashiksu",
"company": null,
"location": "Colombo",
"followers": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/20171631?v=4",
"created_at": "2016-06-27T17:20:23Z",
"is_verified": null,
"public_repos": 12,
"account_age_days": 3677
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v2.3.0",
"kind": "minor",
"published_at": "2026-07-17T16:32:58Z"
},
{
"tag": "v2.2.0",
"kind": "minor",
"published_at": "2026-07-17T05:58:50Z"
},
{
"tag": "v2.1.0",
"kind": "minor",
"published_at": "2026-07-17T05:58:48Z"
},
{
"tag": "v1",
"kind": "other",
"published_at": "2024-08-10T13:55:19Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2024-08-03T18:31:38Z"
}
],
"recent_commits": [
{
"oid": "1d20cb9d668936dd2f3ba1e99149c65079e15f44",
"body": "2.3.0 — subdivision awareness",
"is_bot": false,
"headline": "Merge pull request #53 from sashiksu/release/2.3.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T16:31:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e130fa6d87bf13a8d72bce133fd315ef08de9e3e",
"body": "The subdivision APIs had reference sections but were missing from the README's\nshipped list, subdivision validation was still sitting under Planned, and the\nData Sources section still cited the data as Apache-2.0 — contradicting the\nNOTICE correction that shipped in 2.2.0. The data is CC-BY 4.0.\n\nIn\n[…]\npute dataset counts but never\nnamed in any visible text, and getPostalLabel was absent entirely, so a page\nsearch for either found nothing. Name all five new APIs in the Subdivision\ncode-examples tab.",
"is_bot": false,
"headline": "List every 2.3.0 API in the README roadmap and the demo examples",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T16:17:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7e63a3d75a08d0390b4f63237cd1922023f3af34",
"body": null,
"is_bot": false,
"headline": "Bump to 2.3.0 and document subdivision inference",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T15:34:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5da7dd41577b612b749ef2654f71a6ab704502fd",
"body": "Add a Subdivision panel to the playground defaulting to CA / K1A 0T6, which\nresolves to both Ontario and Quebec — the panel teaches the ambiguous case on\nfirst render, and countries with no upstream data get an explicit explanation\nrather than an empty list that reads as broken. Add a Subdivision code-examples\ntab and per-country subdivision counts in the dataset browser, note it in\nwhat's new, and drop subdivision lookup from the roadmap now that it ships.",
"is_bot": false,
"headline": "Surface subdivision inference across the demo",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T15:28:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88065947d9ce599e0d6d1e5d710bc0233a6e5fac",
"body": "…aset-free\n\nPutting {subdivision} on validatePostalCode coupled it to inferSubdivision and\nso to the 11.6KB subdivision asset — a real bundler then pulled that data into\nevery consumer who merely validates a postal code, which is the majority case\nand the exact cost this release is designed to avoid\n[…]\nports of every\ndefault-path utility and asserts the subdivision asset is unreachable — the\ninvariant a bundler relies on, checked in milliseconds with no bundler\ndependency. It caught this regression.",
"is_bot": false,
"headline": "Move the subdivision constraint off validatePostalCode to keep it dat…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T15:23:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8535cb40ad16001ee2c426bf2c20f5290cc774fc",
"body": "Passing a subdivision for a country with no subdivision data returns false\nrather than ignoring the argument — the caller believes they checked\nsomething, and quietly passing would be worse than failing.\n\nExtract the core country-level match into matchesPostalCode so validate and\ninferSubdivision ca\n[…]\nre it: validatePostalCode now needs inferSubdivision\nfor the constraint, and inferSubdivision needs to validate first, which would\notherwise be an import cycle. Both depend on the shared core instead.",
"is_bot": false,
"headline": "Let validatePostalCode take an optional subdivision constraint",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T15:08:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e92d11dc95adfba24eba062e6929395c5975e56f",
"body": null,
"is_bot": false,
"headline": "Add getPostalLabel so forms can name the field the way each country does",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T15:04:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e9be0c975c7c0a5d47000e8519e8aced62e3827",
"body": "inferSubdivision validates before matching: sub_zips are leading-digit\nprefixes, so \"999999\" prefix-matches Alaska's 99[5-9] despite not being a\nvalid US ZIP, and would otherwise come back as a confident wrong answer. It\nreturns a sorted array because prefixes genuinely overlap — K1A 0T6 is both\nOntario and Quebec. hasSubdivisionData exists so callers can tell an empty\nresult caused by missing upstream data apart from one caused by no match.",
"is_bot": false,
"headline": "Add getSubdivisions, hasSubdivisionData and inferSubdivision",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T15:04:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80c2c54854896959bb5b700c778b9ccdec980545",
"body": "Upstream has always returned sub_zips, sub_isoids, sub_lnames and\nzip_name_type alongside the fields we already use; we fetched them on every\nsync and threw them away. Emit them as two generated assets — subdivision\npostal prefixes and the per-country postal-code label — gated by the same\ndrift check, so they cannot go stale without blocking a release. The country\nindex picks up a re-sync in the same pass: no upstream pattern changes, only\nthe snapshot date and the corrected license header move.",
"is_bot": false,
"headline": "Extract subdivision prefixes and postal-code labels in the sync script",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T15:03:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08303b9b9201e8e3e061aa132e352745b8bd090d",
"body": null,
"is_bot": false,
"headline": "Add the Subdivision type and the generated-asset shape it is built from",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T14:52:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2eac237fc04347d9e9093220b2a28c1ad38f517",
"body": "Make the test workflow actually run, and declare the Node baseline",
"is_bot": false,
"headline": "Merge pull request #51 from sashiksu/bugfix/ci-never-ran",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T06:02:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82f6356eb7a309fe8d862419907dac7008840fb8",
"body": "The workflow triggered on pull_request against `develop`, a branch that has\nnever existed in this repo, so it has not run once across the 1.x and 2.x\nlines — every release so far was gated only by local test runs. Point it at\nmaster, and run on pushes to master too so a bad merge surfaces immediatel\n[…]\ne the tests, and run the matrix across Node 18, 20\nand 22 — package.json claimed a Node 18+ baseline in the docs but never\ndeclared engines.node, so the floor was never enforced or tested. Declare it.",
"is_bot": false,
"headline": "Make the test workflow actually run, and declare the Node baseline",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T06:00:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3bb276b3546b6d6c991a6a373207a722d5b83b51",
"body": "…e-8.0.16\n\nBump vite from 8.0.8 to 8.0.16 in /demo",
"is_bot": false,
"headline": "Merge pull request #49 from sashiksu/dependabot/npm_and_yarn/demo/vit…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T05:50:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a960611e27df13e9ee334288e2624cc3eb34d290",
"body": "2.2.0 — correct data license in NOTICE, fix ESM resolution",
"is_bot": false,
"headline": "Merge pull request #50 from sashiksu/release/2.2.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T05:49:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ae6e90e8d2a9bb46aa968a2e2f21e6ece9342c2",
"body": "Google's libaddressinput splits licensing by component — source code under\nApache-2.0, data under CC-BY 4.0 — and this package incorporates only the\ndata, so CC-BY 4.0 is what applies. NOTICE claimed Apache-2.0 while also\ncorrectly stating that no upstream source code is included, which is exactly\nw\n[…]\nEADME's pitch around data provenance. Zero-dependencies,\nTypeScript-first, and dual ESM/CJS are table stakes in this category; the\ngenerated-and-drift-gated pipeline is the part nothing else here has.",
"is_bot": false,
"headline": "Correct the data license in NOTICE and fix ESM resolution for 2.2.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-07-17T05:40:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "79cdabe3bd3b659cd81746f64bbe48fd5534f91a",
"body": "Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 8.0.8 to 8.0.16.\n- [Release notes](https://github.com/vitejs/vite/releases)\n- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)\n- [Commits](https://github.com/vitejs/vite/commits/v8.0.16/packages/vite)\n\n---\nupdated-dependencies:\n- dependency-name: vite\n dependency-version: 8.0.16\n dependency-type: direct:development\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump vite from 8.0.8 to 8.0.16 in /demo",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-16T01:47:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0fdd83fbfc5e1c4c3459eba7772f4a8f2fe8c76e",
"body": "2.1.0",
"is_bot": false,
"headline": "Merge pull request #48 from sashiksu/release/2.1.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T18:13:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7add1db2e20e25b9f3355cb332ca281bcb59669f",
"body": "…ode-injection, CWE-94) flagged that a crafted ?ex-* query param would auto-execute arbitrary JavaScript via new Function() on mount. Drop the URL-share wiring (readShareParam, ShareButton, shareKey prop) from ExamplePlayground so URL-supplied strings can no longer reach the execution sink. Other panels that share non-code URL params (postal-code inputs, tab slugs, config JSON) are unchanged.",
"is_bot": false,
"headline": "Close a code-injection vector in the live-editor panel — CodeQL (js/c…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T18:09:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f64a0dae25033222b99ca621b5ad557241d4a14b",
"body": "… into a single GA release note, flip the demo version badge and install snippets off @next, and drop the preview comments now that format(), guessCountries(), configure(), and resetConfig() ship on the stable channel",
"is_bot": false,
"headline": "Bump to 2.1.0 — consolidate the alpha.1 and alpha.2 changelog entries…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T17:46:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "875da0e9a3c7ddf28ed71d3df45f637c81f6f0b2",
"body": "…yling, and drop configure() from the demo's What's Next roadmap since it ships in 2.1.0",
"is_bot": false,
"headline": "Promote the live-demo CTA under the hero GIF and tighten the badge st…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T17:45:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6681b1e69828b26c41097c471a21f16bd725660f",
"body": "…command",
"is_bot": false,
"headline": "Update release:next script in package.json to remove redundant build …",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T07:17:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a796ecfd68acca7333dd6dabb11c67f77c6f9e0",
"body": "Feature/configure override",
"is_bot": false,
"headline": "Merge pull request #47 from sashiksu/feature/configure-override",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T07:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51b1abe37a2545e1a543cb6928a3b37b2e44c568",
"body": "…ow they can ship a corrected pattern without waiting for the next release",
"is_bot": false,
"headline": "Surface upstream-churn patching in the custom country CTA so users kn…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T07:11:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86c3001f2588f2e62fcb4b45d421d5412284f397",
"body": "Normalizes every method name / filename / CLI token in the FAQ strings with backticks, then splits the answer on backtick pairs in the Faq component so each span renders as <code>. The answer type stays ReactNode so richer answers still drop in untouched.",
"is_bot": false,
"headline": "Render backtick spans in FAQ answers as inline code",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T07:08:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2269fc8906646c484b75916c9d03eca6376e73a",
"body": "… the wiring block",
"is_bot": false,
"headline": "Revert configuration panel to stacked rows — title, description, then…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T07:06:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2364bfa866a4c9282f076f5827d3ffa87f68c1c5",
"body": "… to X.Y.Z\n\n- Put the Install section's share icon inline next to the package-manager tabs instead of absolute top-right — the pill group was overlapping the icon.\n- In the Configuration panel, set the title + description beside the \"How it wires into your app\" code block in a 2-column grid so the r\n[…]\ne + note, InstallMatrix commands (now call out 2.0.0 stable / 2.1.0 alpha explicitly instead of the generic \"v2 alpha\" wording), CTA badge. Update navbar version from the stale 2.0.1 to 2.1.0-alpha.2.",
"is_bot": false,
"headline": "Tighten configuration layout, fix install overlap, normalize versions…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T07:04:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e5433875455fbd868c486e6bebec2f5545d01e1f",
"body": "- Add a \"Don't see your country? Add your own.\" CTA right under the hero, linking to the Configuration tab.\n- Share icons wired onto the hero validator, install matrix, code examples, and each use-case card (with scroll-into-view + brief highlight on arrival).\n- Revert \"How it wires into your app\" i\n[…]\nstate — all now use accent on accent-soft for legible contrast in both themes.\n- Add a WHATS_NEW entry for configure() at the top of the feature grid.\n- Gitignore the per-project Claude settings file.",
"is_bot": false,
"headline": "Market configure() across the demo and fix washed-out accent badges",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T06:58:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fa883e133b5f967b11c3b68eeac72c0b521e43b7",
"body": "…the rest of the playground.\n\nThe ExamplePlayground now exposes every library utility (configure, resetConfig, format, guessCountries alongside the existing set), auto-resets the active config after each run so snippets don't leak into other panels, accepts a shareKey so its code state round-trips t\n[…]\nthe old static wiring block, so users can actually edit the three-line setup and see validate + guess respond. DatasetPanel gains a Share button that carries the search query and the selected country.",
"is_bot": false,
"headline": "Make the configure() wiring example runnable and spread Share across …",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T06:39:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "af92f25a5cf796539111289bb9b9a26fe850fade",
"body": "…red, and promote Share to a first-class panel affordance across the playground.\n\nAdds a \"How it wires into your app\" code block above the JSON editor with a three-line import-configure-validate sequence, plus a numbered step strip explaining edit / apply / test / share-or-reset. Moves Apply config \n[…]\n path, and pins it to the top-right corner of every panel card — Batch, Format, Guess, and Configuration. Drops a library comparison phrase from the panel copy, CHANGELOG, and the configuration guide.",
"is_bot": false,
"headline": "Teach the demo Configuration panel how the singleton actually gets wi…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T06:34:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9f6a847b39af3a07aa1e20b73e290e9378c9dcdf",
"body": "…setConfig() end-to-end.\n\nThe panel pairs an editable JSON document (seeded with Kosovo and a tightened US pattern) with a live validator, guessCountries output, and a bundled-vs-applied diff, plus a shareable URL that encodes the config into the hash. Drop the captureStackTrace branch from ConfigurationError to keep lint happy without weakening instanceof behavior.",
"is_bot": false,
"headline": "Add a Configuration tab to the demo that exercises configure() and re…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T06:22:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0aa2ae7b9a5c7b16c834ef825f98b1e48ccfcb8",
"body": "…README API Reference and Types, add docs/CONFIGURATION.md with the full guide, and move user-supplied country overrides from Planned to Shipped in the roadmap.",
"is_bot": false,
"headline": "Bump to 2.1.0-alpha.2. Document configure() and resetConfig() in the …",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T06:09:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "749390c8ab13b5d1bb4c4b0aa6926ceb26cec80f",
"body": "…s, idempotent replace, and override propagation through all six utilities",
"is_bot": false,
"headline": "Add tests for configure() and resetConfig() covering validation error…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T06:07:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "badf13d4a4a127b29b1327dd4e4154da69ac421e",
"body": "…. All utilities now read through a single active-data accessor so overrides flow through uniformly, and the public country-code input type widens to AnyCountryCode to accept custom alpha-2 codes.",
"is_bot": false,
"headline": "Add configure() and resetConfig() for user-supplied country overrides…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T06:05:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d26488fbe7e936fc50e13f53107a2d2483525ea9",
"body": "…Kit and StackBlitz links",
"is_bot": false,
"headline": "Promote the live demo to a prominent centered button and drop the Run…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-20T05:59:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fd4397f55bcbfed7084272d914fe918b5e3e6ae",
"body": "Drop sync:check from prepublishOnly so it only runs once per release",
"is_bot": false,
"headline": "Merge pull request #46 from sashiksu/bugfix/dedupe-sync-check",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T19:03:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8aaec44121b7cfe2a80a273bdd741805aaba9523",
"body": "… The release and release:next scripts already run it explicitly before npm publish.",
"is_bot": false,
"headline": "Drop sync:check from prepublishOnly so it only runs once per release.…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T19:00:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ba08a4d4107ef21dbbd9f7fbcb2dc2f025484f0",
"body": "Bump version to 2.1.0-alpha.1 to open the 2.1.0 release cycle",
"is_bot": false,
"headline": "Merge pull request #44 from sashiksu/release/2.1.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T18:50:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a416df5073b34cfd2db9acefa3f63d25d00c6925",
"body": "Feature/format and guess countries",
"is_bot": false,
"headline": "Merge pull request #45 from sashiksu/feature/format-and-guess-countries",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T18:49:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8718387be7cf262f3c42f67ec7742cee70a94bf0",
"body": "…g them under 2.1.0-alpha.1",
"is_bot": false,
"headline": "Document format and guessCountries in the README API reference and lo…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T18:46:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f569a9d3d14fade8e82512d7fd6eb61dd4c4faed",
"body": "… and matching code examples",
"is_bot": false,
"headline": "Surface format and guessCountries in the demo with interactive panels…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T18:45:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3882816c47ecfdffb9b00eea7e38c4d6bcb2c051",
"body": "…identifying likely countries",
"is_bot": false,
"headline": "Add format and guessCountries utilities for canonicalizing codes and …",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T18:40:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30b4af1b9ab7c42467485a51fd5115aec7e154a6",
"body": null,
"is_bot": false,
"headline": "Bump version to 2.1.0-alpha.1 to open the 2.1.0 release cycle",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T18:37:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05286e672004a91662bc8d10d8b2b8a27fbcc7f4",
"body": "Potential fix for code scanning alert no. 2: Workflow does not contain permissions",
"is_bot": false,
"headline": "Merge pull request #43 from sashiksu/bugfix/alert-autofix-2",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T16:46:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "262954db5edf36b4f15f869c3ca92895496dd546",
"body": "Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>",
"is_bot": false,
"headline": "Workflow does not contain permissions",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T16:44:30Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "55feec88ee81da5e1cdc5c9432c3aa93241e5b88",
"body": "Remove scss.api option that Vite 8 dropped from preprocessor types",
"is_bot": false,
"headline": "Merge pull request #42 from sashiksu/bugfix/demo-vite8-sass-typecheck",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T16:42:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49d994fe480f9679a1a88d0a1d08f6c0adeb0fc9",
"body": null,
"is_bot": false,
"headline": "Remove scss.api option that Vite 8 dropped from preprocessor types",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T16:40:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad7a28897d416e8a222cef1d2afaec43e982bdbe",
"body": "Release/2.0.1",
"is_bot": false,
"headline": "Merge pull request #41 from sashiksu/release/2.0.1",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T16:34:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "15abb7ff31c92d9e70864c32d2ae836539c4d4c3",
"body": null,
"is_bot": false,
"headline": "Fix demo Pages deploy by bumping plugin-react to match Vite 8",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T16:30:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74f85f2b6f80beb4092f9a5de9e196e3f72878a3",
"body": "…moval of legacy playground, and cleanup of devDependencies. Updated demo navbar version badge and metadata for improved SEO. Removed unnecessary Babel and Webpack configurations.",
"is_bot": false,
"headline": "Release version 2.0.1: Maintenance update focusing on demo polish, re…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T16:19:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8faf89fa49d749c4c926aed654f48e0a71dd4510",
"body": "…view image",
"is_bot": false,
"headline": "Update index.html for improved SEO and social sharing; add social-pre…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T14:15:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "251fd46b9d8d1ee9d11023bf50d70312bc6618f3",
"body": null,
"is_bot": false,
"headline": "Remove GitHub Actions workflow for publishing package",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T13:35:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "302075d0667f916f75e379256b48a33b800f94f6",
"body": "…angelog to reflect the addition of the demo site and full ISO 3166-1 coverage. Improve contribution guidelines for clarity.",
"is_bot": false,
"headline": "Enhance README with a link to the live interactive demo and update ch…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T13:34:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26510c1f4c59c8e3b54f9f6d00506cad86d6fb19",
"body": "…ti-4ba2d64a52\n\nBump esbuild and vite in /demo",
"is_bot": false,
"headline": "Merge pull request #40 from sashiksu/dependabot/npm_and_yarn/demo/mul…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T13:18:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f109b7bea474fa5579b982f4bfd914f2503373f0",
"body": "Removes [esbuild](https://github.com/evanw/esbuild). It's no longer used after updating ancestor dependency [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). These dependencies need to be updated together.\n\n\nRemoves `esbuild`\n\nUpdates `vite` from 5.4.21 to 8.0.8\n- [Release notes](https\n[…]\nld\n dependency-version: \n dependency-type: indirect\n- dependency-name: vite\n dependency-version: 8.0.8\n dependency-type: direct:development\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump esbuild and vite in /demo",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-19T12:59:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8073868dc550189a9b65a6bf2a68446803aed77f",
"body": "Update package.json and package-lock.json to include @types/node",
"is_bot": false,
"headline": "Merge pull request #38 from sashiksu/release/2.0.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T12:57:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3422444b1a3ee3d5dd8c2acab74c249776d6e650",
"body": "…ion 25.6.0 and undici-types version 7.19.2 in devDependencies",
"is_bot": false,
"headline": "Update package.json and package-lock.json to include @types/node vers…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T12:56:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7dbea9c505462e3501a67425890d7f265ddb89ae",
"body": "Release/2.0.0",
"is_bot": false,
"headline": "Merge pull request #37 from sashiksu/release/2.0.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T12:51:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3333616a0af9843f2d4d9998f0e97f0ebd2d9638",
"body": "V2.0.0 alpha.2",
"is_bot": false,
"headline": "Merge pull request #36 from sashiksu/v2.0.0-alpha.2",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T12:42:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c09bc05256c6f7958d1ccabd1cd2ddf04b23b43",
"body": "…aset from Google's libaddressinput, enhancing support for 249 countries, and implementing a reproducible data pipeline. Breaking changes include updates to the Country shape and canonicalization of country names. Added interactive demo app and comprehensive documentation for migration and contribution guidelines.",
"is_bot": false,
"headline": "Release version 2.0.0: Major update introducing a new postal-code dat…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T12:39:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb20cc5375c96787710b84d99c2d850f5a0a21e2",
"body": "…deploying demo to GitHub Pages, and configure Vite for deployment base path.",
"is_bot": false,
"headline": "Update homepage URL in package.json, add GitHub Actions workflow for …",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T09:24:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bb9198d3c6c0fb08d4569589ea6dfc126252400",
"body": "…usage instructions",
"is_bot": false,
"headline": "Add Playwright for social preview generation and enhance README with …",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T09:09:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7154ee4f77a5ea0df7ce6c685bd1af1e4956075",
"body": "… for bug reports, feature requests, and country data tracking. This enhances contribution guidelines and improves issue management for the project.",
"is_bot": false,
"headline": "Add CONTRIBUTING.md and SECURITY.md files, and create issue templates…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T08:49:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5c3dd4289fd3b4b825f3a77041f29b4e21431c2",
"body": "…ng new terms while removing outdated ones.",
"is_bot": false,
"headline": "Update package.json keywords for improved clarity and relevance, addi…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T08:46:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e17d9e386acae93db790b4f824b75026d8a03a1b",
"body": "…hance demo application. Update App component to include new sections in the layout.",
"is_bot": false,
"headline": "Add UseCases and WhyChoose components with corresponding styles to en…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T08:41:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5a14f4e31839a098f00572b47de1ceae091899d",
"body": "… and components",
"is_bot": false,
"headline": "Add demo files for postal-code-checker including HTML, configuration,…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-19T06:27:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d5002669771cf37b233bf876b30fd019e42c894",
"body": "V2.0.0 alpha.1",
"is_bot": false,
"headline": "Merge pull request #34 from sashiksu/v2.0.0-alpha.1",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T18:19:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7527994ec274da41baf9a0a94dc83b49ce1beca0",
"body": "…bility by consolidating multiline entries into single lines.",
"is_bot": false,
"headline": "Refactor country postal code data structure for consistency and reada…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T18:06:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a978d4a757d18913401b1129bfd74c81f62a9d72",
"body": "Prettier's printWidth wraps long country entries across multiple lines;\nthe sync script emits one entry per line. Without this guard, every\nrelease run fails sync:check after prettier rewrites the file.",
"is_bot": false,
"headline": "chore(prettier): ignore auto-generated src/assets/index.ts",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T18:02:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b93e86189e1b35d3c479b8e17551e8de3f255446",
"body": null,
"is_bot": false,
"headline": "Code formatting with prettier",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T18:00:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cb747ce8e228c5904119e0bf113ceae2647aa6d",
"body": "Keeps stable releases on the default 'latest' dist-tag while alpha/beta\npublishes go under 'next', so 'npm install postal-code-checker' still\nresolves to the stable line.",
"is_bot": false,
"headline": "chore(release): add release:next script for pre-release publishing",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T17:52:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97e434f37a98192981eee2f92fd71c8917fefa74",
"body": "… with prettier. Update console log statements to remove ESLint disable comments for cleaner code.",
"is_bot": false,
"headline": "Refactor serialization of postal data to ensure consistent formatting…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T12:02:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c178fd0b2edecfe6b76f7d094e94a5df619671c",
"body": "…up with updated rules and dependencies. Bump package version to 2.0.0-alpha.1 and update README with new features and migration guide.",
"is_bot": false,
"headline": "Remove legacy ESLint configuration files and introduce new ESLint set…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T10:25:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fe9494ce7b1b651d36f2b91865781cd554ca0cd",
"body": null,
"is_bot": false,
"headline": "Refactor postal code data structure and validation logic",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T09:40:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93723ec25eb3247fbb3904d57c79948c33507064",
"body": null,
"is_bot": false,
"headline": "Refactor postal code handling in tests and package scripts",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T09:39:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4bb40ccca1570b3304fc60750192ddf75d429d3",
"body": null,
"is_bot": false,
"headline": "Add script to sync postal data from upstream source",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T09:32:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f334a267c373ae85044df409237f326bc4a16397",
"body": "…clude it in distribution.",
"is_bot": false,
"headline": "Add NOTICE file for postal-code-checker and update package.json to in…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T09:26:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8c31783013b32fb73dc2d4993a8fc3f547b7b2e",
"body": "…tePostalCodes",
"is_bot": false,
"headline": "Enhance coverage for getCountryByCode, validatePostalCode, and valida…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-18T09:17:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef002d7e6299149260de2189c492f310edf94281",
"body": "V1.1.0",
"is_bot": false,
"headline": "Merge pull request #33 from sashiksu/v1.1.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:48:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59b5d6e5fec9d7a80b2a60ee6b13af5e1f90803b",
"body": null,
"is_bot": false,
"headline": "docs: trim roadmap to focused, on-theme items",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:43:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c30801c5a0313fbeb94ee4e2f6fc6ca6b5b91f15",
"body": "- Leads with zero runtime dependencies as the primary user benefit\n- Replaces the thin pre-1.1.0 Features list with a concrete pitch block\n covering zero-deps, 200+ countries, TypeScript-first, framework-agnostic,\n forgiving input, batch-friendly, and dual ESM/CJS\n- Intro paragraph trimmed for rhythm without losing information\n- Drops the redundant Compatibility paragraph (now covered by the Why block)",
"is_bot": false,
"headline": "docs(readme): add 'Why postal-code-checker?' section and tighten intro",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:36:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f57487f5b438800143d4b5f8db6d5b3f44595466",
"body": null,
"is_bot": false,
"headline": "chore(release): bump version to 1.1.0",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:32:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b92bf31d2ad947c79f76716cfd29e420e6737eaf",
"body": "…es for 1.1.0\n\n- New 'What's New in 1.1.0' section at the top summarizing the release\n- Basic / NodeJS / React examples rewritten to use the direct API\n- New 'Batch Validation' usage block\n- API Reference restructured: documents validatePostalCode,\n validatePostalCodes, getCountryByCode, getAllCountries; marks\n usePostalCodeValidation as deprecated\n- New 'Migration Guide' section covering the hook → direct-function move\n- CountryCode type doc updated to note alpha-3 support",
"is_bot": false,
"headline": "docs(readme): add What's New, migration guide and update usage exampl…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:31:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6900f0ce613f1586c6a67192ea08d9471138e50",
"body": "New top-level helper that validates an array of postal codes against a\nsingle country, returning an index-aligned array of booleans. Useful for\nCSV imports, bulk address verification, and form-array inputs.\n\nInherits normalization and alpha-3 support from validatePostalCode.",
"is_bot": false,
"headline": "feat(api): add validatePostalCodes batch helper",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:30:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc593c0d59e316880bfa93a72c63b936f34dd05e",
"body": "- New ALPHA3_TO_ALPHA2 map covering all ~249 ISO 3166-1 countries\n- getCountryByCode now normalizes input to uppercase and resolves\n 3-letter alpha-3 codes to their 2-letter alpha-2 equivalents\n- validatePostalCode inherits this automatically via getCountryByCode\n- Zero new runtime dependencies; mapping is maintained manually\n- Added parametrized tests for both utilities covering alpha-3,\n lowercase, and unknown-code cases",
"is_bot": false,
"headline": "feat(api): accept ISO 3166-1 alpha-3 country codes",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:29:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b92812df0764fb1def56f19345da15bf18b807e5",
"body": "Surrounding whitespace is now stripped and letters uppercased before the\nregex test, so common user-input variations like 'k1a 0t6' or ' K1A 0T6 '\nvalidate correctly. Internal separators (spaces, dashes) are preserved\nbecause country regexes rely on their exact position.\n\nUpdated the existing Canadian lowercase test to reflect the new behavior\nand added parametrized normalization tests for CA, US, and GB.",
"is_bot": false,
"headline": "feat(api): normalize input with trim and uppercase before validation",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:28:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e694fe56e8157e80950ded560ee41813911e658f",
"body": "…ostalCodeValidation hook\n\n- New direct function removes the need to call a factory and destructure\n- Old hook delegates to the new function so both stay in sync\n- Hook is marked @deprecated with migration guidance; will be removed in 2.0\n- Added unit tests for the new function and a delegation parity test",
"is_bot": false,
"headline": "feat(api): add top-level validatePostalCode export and deprecate useP…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:25:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d5d242de07f226003fcc173834f6aafc61a29e0",
"body": "…anned sections",
"is_bot": false,
"headline": "docs(readme): add shields.io badges and split roadmap into shipped/pl…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T17:24:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "210d12c458d2f7c98523aaff6730805b851817df",
"body": "Fix(scripts): rename 'publish' to 'release' to avoid npm lifecycle re…",
"is_bot": false,
"headline": "Merge pull request #32 from sashiksu/v1.0.12",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:57:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f39bf11bd3c0cfc964f405b705fce26fc55a9bde",
"body": "…cursion",
"is_bot": false,
"headline": "Fix(scripts): rename 'publish' to 'release' to avoid npm lifecycle re…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:55:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39f09db72c5065971237aff797d9c344a0fd3e69",
"body": "V1.0.11",
"is_bot": false,
"headline": "Merge pull request #31 from sashiksu/v1.0.11",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:34:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4349419d311fb255ad42623da8faca2d867974e0",
"body": "…ty and maintainability in usePostalCodeValidation.test.ts",
"is_bot": false,
"headline": "Refactor Canadian postal code validation tests for improved readabili…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:33:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fba83266ec94388af8e48a9d6196c17c90d1302c",
"body": "…lock.json for improved stability and performance.",
"is_bot": false,
"headline": "Update package version to 1.0.11 and upgrade dependencies in package-…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:27:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0dd53af7ce80d4e5d83b846a1bd598ab9b177e36",
"body": "…alidation.test.ts",
"is_bot": false,
"headline": "Add tests for Canadian postal code validation rules in usePostalCodeV…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:26:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "087f26572519c0e09e528c1f226e6773d701b4f6",
"body": "…dation.",
"is_bot": false,
"headline": "Update Canada regex pattern in index.ts for accurate postal code vali…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:26:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7789bac3789e9083953418934af125a2cdbf130f",
"body": "V1.0.10",
"is_bot": false,
"headline": "Merge pull request #30 from sashiksu/v1.0.10",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T16:16:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26c3632cf2d8fc239f7a2b7e0df220b1d42a321d",
"body": null,
"is_bot": false,
"headline": "Remove unnecessary blank line in index.ts for cleaner code structure.",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T14:19:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4581efc4de7b098c5379d034a98e6b5653dcf681",
"body": "…eatures for postal code validation across 200+ countries.",
"is_bot": false,
"headline": "Update README.md to enhance project description and clarify library f…",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2026-04-14T14:13:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da45b8508df6e5a828428407b28702a0f0d4f76d",
"body": "Develop",
"is_bot": false,
"headline": "Merge pull request #28 from sashiksu/develop",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2024-08-10T13:24:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5785fcc910a8fc7a9e8d707ca37e8a376147ee3",
"body": "Release v1.0.9 with reducing no. of packing files",
"is_bot": false,
"headline": "Merge pull request #27 from sashiksu/v1.0.9",
"author_name": "Sashika Suraweera",
"author_login": "sashiksu",
"committed_at": "2024-08-10T13:24:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "77d587ae64ef923ecc4da18ba97abe57fd45069a",
"body": null,
"is_bot": false,
"headline": "Removed unwanted script files",
"author_name": "sashiksu",
"author_login": "sashiksu",
"committed_at": "2024-08-10T13:23:50Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 5,
"commits_last_year": 97,
"latest_release_at": "2026-07-17T16:32:58Z",
"latest_release_tag": "v2.3.0",
"releases_from_tags": false,
"days_since_last_push": 5,
"active_weeks_last_year": 4,
"days_since_latest_release": 5,
"mean_days_between_releases": 178.2
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 85,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "postal-code-checker",
"exists": true,
"license": "MIT",
"keywords": [
"postcode",
"postal-code",
"zipcode",
"zip",
"validation",
"validator",
"address",
"country",
"iso-3166",
"typescript",
"zero-dependencies",
"form",
"batch-validation",
"react",
"checkout"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/postal-code-checker",
"is_deprecated": false,
"latest_version": "2.3.0",
"repository_url": "https://github.com/sashiksu/postal-code-checker",
"versions_count": 21,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 1,
"monthly_downloads": 90090,
"first_published_at": "2024-08-08T16:35:45.050000Z",
"latest_published_at": "2026-07-17T16:35:54.842000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 0,
"stars": 7,
"watchers": 1,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"demo/tsconfig.json",
"tsconfig.json"
],
"toolchain_manifests": [],
"largest_source_bytes": 54880,
"source_files_sampled": 88,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"demo/package.json",
"package.json"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "brace-expansion",
"direct": false,
"version": "1.1.14",
"severity": "high",
"ecosystem": "npm",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-3jxr-9vmj-r5cp"
],
"fixed_version": "5.0.7",
"advisory_count": 1,
"oldest_advisory_days": 2
},
{
"name": "brace-expansion",
"direct": false,
"version": "2.1.0",
"severity": "high",
"ecosystem": "npm",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-3jxr-9vmj-r5cp"
],
"fixed_version": "5.0.7",
"advisory_count": 1,
"oldest_advisory_days": 2
},
{
"name": "brace-expansion",
"direct": false,
"version": "5.0.5",
"severity": "high",
"ecosystem": "npm",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-3jxr-9vmj-r5cp",
"GHSA-jxxr-4gwj-5jf2"
],
"fixed_version": "5.0.7",
"advisory_count": 2,
"oldest_advisory_days": 65
},
{
"name": "immutable",
"direct": false,
"version": "5.1.5",
"severity": "high",
"ecosystem": "npm",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-v56q-mh7h-f735",
"GHSA-xvcm-6775-5m9r"
],
"fixed_version": "5.1.8",
"advisory_count": 2,
"oldest_advisory_days": 1
},
{
"name": "js-yaml",
"direct": false,
"version": "3.14.2",
"severity": "high",
"ecosystem": "npm",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-52cp-r559-cp3m",
"GHSA-h67p-54hq-rp68"
],
"fixed_version": "4.3.0",
"advisory_count": 2,
"oldest_advisory_days": 37
},
{
"name": "js-yaml",
"direct": false,
"version": "4.1.1",
"severity": "high",
"ecosystem": "npm",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-52cp-r559-cp3m",
"GHSA-h67p-54hq-rp68"
],
"fixed_version": "4.3.0",
"advisory_count": 2,
"oldest_advisory_days": 37
},
{
"name": "@babel/core",
"direct": false,
"version": "7.24.9",
"severity": "low",
"ecosystem": "npm",
"cvss_score": 3.2,
"advisory_ids": [
"GHSA-4x5r-pxfx-6jf8"
],
"fixed_version": "8.0.0-rc.6",
"advisory_count": 1,
"oldest_advisory_days": 37
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"low": 1,
"high": 6
},
"advisory_count": 11,
"affected_count": 7,
"assessed_count": 546,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "@ampproject/remapping",
"direct": false,
"version": "2.3.0",
"ecosystem": "npm"
},
{
"name": "@babel/code-frame",
"direct": false,
"version": "7.29.0",
"ecosystem": "npm"
},
{
"name": "@babel/compat-data",
"direct": false,
"version": "7.24.9",
"ecosystem": "npm"
},
{
"name": "@babel/core",
"direct": false,
"version": "7.24.9",
"ecosystem": "npm"
},
{
"name": "@babel/generator",
"direct": false,
"version": "7.24.10",
"ecosystem": "npm"
},
{
"name": "@babel/helper-compilation-targets",
"direct": false,
"version": "7.24.8",
"ecosystem": "npm"
},
{
"name": "@babel/helper-environment-visitor",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/helper-function-name",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/helper-hoist-variables",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/helper-module-imports",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/helper-module-transforms",
"direct": false,
"version": "7.24.9",
"ecosystem": "npm"
},
{
"name": "@babel/helper-plugin-utils",
"direct": false,
"version": "7.24.8",
"ecosystem": "npm"
},
{
"name": "@babel/helper-simple-access",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/helper-split-export-declaration",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/helper-string-parser",
"direct": false,
"version": "7.27.1",
"ecosystem": "npm"
},
{
"name": "@babel/helper-validator-identifier",
"direct": false,
"version": "7.28.5",
"ecosystem": "npm"
},
{
"name": "@babel/helper-validator-option",
"direct": false,
"version": "7.24.8",
"ecosystem": "npm"
},
{
"name": "@babel/helpers",
"direct": false,
"version": "7.29.2",
"ecosystem": "npm"
},
{
"name": "@babel/parser",
"direct": false,
"version": "7.29.2",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-async-generators",
"direct": false,
"version": "7.8.4",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-bigint",
"direct": false,
"version": "7.8.3",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-class-properties",
"direct": false,
"version": "7.12.13",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-import-meta",
"direct": false,
"version": "7.10.4",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-json-strings",
"direct": false,
"version": "7.8.3",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-jsx",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-logical-assignment-operators",
"direct": false,
"version": "7.10.4",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-nullish-coalescing-operator",
"direct": false,
"version": "7.8.3",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-numeric-separator",
"direct": false,
"version": "7.10.4",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-object-rest-spread",
"direct": false,
"version": "7.8.3",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-optional-catch-binding",
"direct": false,
"version": "7.8.3",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-optional-chaining",
"direct": false,
"version": "7.8.3",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-top-level-await",
"direct": false,
"version": "7.14.5",
"ecosystem": "npm"
},
{
"name": "@babel/plugin-syntax-typescript",
"direct": false,
"version": "7.24.7",
"ecosystem": "npm"
},
{
"name": "@babel/runtime",
"direct": false,
"version": "7.29.2",
"ecosystem": "npm"
},
{
"name": "@babel/template",
"direct": false,
"version": "7.28.6",
"ecosystem": "npm"
},
{
"name": "@babel/traverse",
"direct": false,
"version": "7.24.8",
"ecosystem": "npm"
},
{
"name": "@babel/types",
"direct": false,
"version": "7.29.0",
"ecosystem": "npm"
},
{
"name": "@bcoe/v8-coverage",
"direct": false,
"version": "0.2.3",
"ecosystem": "npm"
},
{
"name": "@codemirror/autocomplete",
"direct": false,
"version": "6.20.1",
"ecosystem": "npm"
},
{
"name": "@codemirror/commands",
"direct": false,
"version": "6.10.3",
"ecosystem": "npm"
},
{
"name": "@codemirror/lang-javascript",
"direct": false,
"version": "6.2.5",
"ecosystem": "npm"
},
{
"name": "@codemirror/language",
"direct": false,
"version": "6.12.3",
"ecosystem": "npm"
},
{
"name": "@codemirror/lint",
"direct": false,
"version": "6.9.5",
"ecosystem": "npm"
},
{
"name": "@codemirror/search",
"direct": false,
"version": "6.6.0",
"ecosystem": "npm"
},
{
"name": "@codemirror/state",
"direct": false,
"version": "6.6.0",
"ecosystem": "npm"
},
{
"name": "@codemirror/theme-one-dark",
"direct": false,
"version": "6.1.3",
"ecosystem": "npm"
},
{
"name": "@codemirror/view",
"direct": false,
"version": "6.41.1",
"ecosystem": "npm"
},
{
"name": "@cspotcode/source-map-support",
"direct": false,
"version": "0.8.1",
"ecosystem": "npm"
},
{
"name": "@emnapi/core",
"direct": false,
"version": "1.10.0",
"ecosystem": "npm"
},
{
"name": "@emnapi/runtime",
"direct": false,
"version": "1.10.0",
"ecosystem": "npm"
},
{
"name": "@emnapi/wasi-threads",
"direct": false,
"version": "1.2.1",
"ecosystem": "npm"
},
{
"name": "@eslint-community/eslint-utils",
"direct": false,
"version": "4.9.1",
"ecosystem": "npm"
},
{
"name": "@eslint-community/regexpp",
"direct": false,
"version": "4.12.2",
"ecosystem": "npm"
},
{
"name": "@eslint/config-array",
"direct": false,
"version": "0.17.0",
"ecosystem": "npm"
},
{
"name": "@eslint/eslintrc",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "@eslint/js",
"direct": false,
"version": "9.7.0",
"ecosystem": "npm"
},
{
"name": "@eslint/object-schema",
"direct": false,
"version": "2.1.4",
"ecosystem": "npm"
},
{
"name": "@humanwhocodes/module-importer",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "@humanwhocodes/retry",
"direct": false,
"version": "0.3.0",
"ecosystem": "npm"
},
{
"name": "@isaacs/cliui",
"direct": false,
"version": "8.0.2",
"ecosystem": "npm"
},
{
"name": "@isaacs/cliui",
"direct": false,
"version": "9.0.0",
"ecosystem": "npm"
},
{
"name": "@istanbuljs/load-nyc-config",
"direct": false,
"version": "1.1.0",
"ecosystem": "npm"
},
{
"name": "@istanbuljs/schema",
"direct": false,
"version": "0.1.3",
"ecosystem": "npm"
},
{
"name": "@jest/console",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/core",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/environment",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/expect",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/expect-utils",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/fake-timers",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/globals",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/reporters",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/schemas",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "@jest/source-map",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "@jest/test-result",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/test-sequencer",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/transform",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "@jest/types",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "@jridgewell/gen-mapping",
"direct": false,
"version": "0.3.5",
"ecosystem": "npm"
},
{
"name": "@jridgewell/resolve-uri",
"direct": false,
"version": "3.1.2",
"ecosystem": "npm"
},
{
"name": "@jridgewell/set-array",
"direct": false,
"version": "1.2.1",
"ecosystem": "npm"
},
{
"name": "@jridgewell/sourcemap-codec",
"direct": false,
"version": "1.5.0",
"ecosystem": "npm"
},
{
"name": "@jridgewell/trace-mapping",
"direct": false,
"version": "0.3.25",
"ecosystem": "npm"
},
{
"name": "@jridgewell/trace-mapping",
"direct": false,
"version": "0.3.9",
"ecosystem": "npm"
},
{
"name": "@lezer/common",
"direct": false,
"version": "1.5.2",
"ecosystem": "npm"
},
{
"name": "@lezer/highlight",
"direct": false,
"version": "1.2.3",
"ecosystem": "npm"
},
{
"name": "@lezer/javascript",
"direct": false,
"version": "1.5.4",
"ecosystem": "npm"
},
{
"name": "@lezer/lr",
"direct": false,
"version": "1.4.10",
"ecosystem": "npm"
},
{
"name": "@marijn/find-cluster-break",
"direct": false,
"version": "1.0.2",
"ecosystem": "npm"
},
{
"name": "@napi-rs/wasm-runtime",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@nodelib/fs.scandir",
"direct": false,
"version": "2.1.5",
"ecosystem": "npm"
},
{
"name": "@nodelib/fs.stat",
"direct": false,
"version": "2.0.5",
"ecosystem": "npm"
},
{
"name": "@nodelib/fs.walk",
"direct": false,
"version": "1.2.8",
"ecosystem": "npm"
},
{
"name": "@oxc-project/types",
"direct": false,
"version": "0.133.0",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-android-arm64",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-darwin-arm64",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-darwin-x64",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-freebsd-x64",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-linux-arm-glibc",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-linux-arm-musl",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-linux-arm64-glibc",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-linux-arm64-musl",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-linux-x64-glibc",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-linux-x64-musl",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-win32-arm64",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-win32-ia32",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@parcel/watcher-win32-x64",
"direct": false,
"version": "2.5.6",
"ecosystem": "npm"
},
{
"name": "@pkgjs/parseargs",
"direct": false,
"version": "0.11.0",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-android-arm64",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-darwin-arm64",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-darwin-x64",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-freebsd-x64",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-arm-gnueabihf",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-arm64-gnu",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-arm64-musl",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-ppc64-gnu",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-s390x-gnu",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-x64-gnu",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-x64-musl",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-openharmony-arm64",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-wasm32-wasi",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-win32-arm64-msvc",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-win32-x64-msvc",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@rolldown/pluginutils",
"direct": false,
"version": "1.0.0-rc.7",
"ecosystem": "npm"
},
{
"name": "@rolldown/pluginutils",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "@rollup/plugin-commonjs",
"direct": false,
"version": "26.0.1",
"ecosystem": "npm"
},
{
"name": "@rollup/plugin-node-resolve",
"direct": false,
"version": "15.2.3",
"ecosystem": "npm"
},
{
"name": "@rollup/plugin-typescript",
"direct": false,
"version": "11.1.6",
"ecosystem": "npm"
},
{
"name": "@rollup/pluginutils",
"direct": false,
"version": "5.1.0",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-android-arm-eabi",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-android-arm64",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-darwin-arm64",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-darwin-x64",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-freebsd-arm64",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-freebsd-x64",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-arm-gnueabihf",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-arm-musleabihf",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-arm64-gnu",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-arm64-musl",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-loong64-gnu",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-loong64-musl",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-ppc64-gnu",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-ppc64-musl",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-riscv64-gnu",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-riscv64-musl",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-s390x-gnu",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-x64-gnu",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-linux-x64-musl",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-openbsd-x64",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-openharmony-arm64",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-win32-arm64-msvc",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-win32-ia32-msvc",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-win32-x64-gnu",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@rollup/rollup-win32-x64-msvc",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "@sinclair/typebox",
"direct": false,
"version": "0.27.8",
"ecosystem": "npm"
},
{
"name": "@sinonjs/commons",
"direct": false,
"version": "3.0.1",
"ecosystem": "npm"
},
{
"name": "@sinonjs/fake-timers",
"direct": false,
"version": "10.3.0",
"ecosystem": "npm"
},
{
"name": "@tsconfig/node10",
"direct": false,
"version": "1.0.11",
"ecosystem": "npm"
},
{
"name": "@tsconfig/node12",
"direct": false,
"version": "1.0.11",
"ecosystem": "npm"
},
{
"name": "@tsconfig/node14",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "@tsconfig/node16",
"direct": false,
"version": "1.0.4",
"ecosystem": "npm"
},
{
"name": "@tybys/wasm-util",
"direct": false,
"version": "0.10.2",
"ecosystem": "npm"
},
{
"name": "@types/babel__core",
"direct": false,
"version": "7.20.5",
"ecosystem": "npm"
},
{
"name": "@types/babel__generator",
"direct": false,
"version": "7.6.8",
"ecosystem": "npm"
},
{
"name": "@types/babel__template",
"direct": false,
"version": "7.4.4",
"ecosystem": "npm"
},
{
"name": "@types/babel__traverse",
"direct": false,
"version": "7.20.6",
"ecosystem": "npm"
},
{
"name": "@types/estree",
"direct": false,
"version": "1.0.8",
"ecosystem": "npm"
},
{
"name": "@types/graceful-fs",
"direct": false,
"version": "4.1.9",
"ecosystem": "npm"
},
{
"name": "@types/istanbul-lib-coverage",
"direct": false,
"version": "2.0.6",
"ecosystem": "npm"
},
{
"name": "@types/istanbul-lib-report",
"direct": false,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "@types/istanbul-reports",
"direct": false,
"version": "3.0.4",
"ecosystem": "npm"
},
{
"name": "@types/jest",
"direct": false,
"version": "29.5.12",
"ecosystem": "npm"
},
{
"name": "@types/node",
"direct": false,
"version": "20.14.11",
"ecosystem": "npm"
},
{
"name": "@types/node",
"direct": false,
"version": "25.6.0",
"ecosystem": "npm"
},
{
"name": "@types/prop-types",
"direct": false,
"version": "15.7.15",
"ecosystem": "npm"
},
{
"name": "@types/react",
"direct": false,
"version": "18.3.28",
"ecosystem": "npm"
},
{
"name": "@types/react-dom",
"direct": false,
"version": "18.3.7",
"ecosystem": "npm"
},
{
"name": "@types/resolve",
"direct": false,
"version": "1.20.2",
"ecosystem": "npm"
},
{
"name": "@types/stack-utils",
"direct": false,
"version": "2.0.3",
"ecosystem": "npm"
},
{
"name": "@types/yargs",
"direct": false,
"version": "17.0.32",
"ecosystem": "npm"
},
{
"name": "@types/yargs-parser",
"direct": false,
"version": "21.0.3",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/eslint-plugin",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/parser",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/project-service",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/scope-manager",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/tsconfig-utils",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/type-utils",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/types",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/typescript-estree",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/utils",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@typescript-eslint/visitor-keys",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "@uiw/codemirror-extensions-basic-setup",
"direct": false,
"version": "4.25.9",
"ecosystem": "npm"
},
{
"name": "@uiw/codemirror-theme-darcula",
"direct": false,
"version": "4.25.9",
"ecosystem": "npm"
},
{
"name": "@uiw/codemirror-themes",
"direct": false,
"version": "4.25.9",
"ecosystem": "npm"
},
{
"name": "@uiw/react-codemirror",
"direct": false,
"version": "4.25.9",
"ecosystem": "npm"
},
{
"name": "@vitejs/plugin-react",
"direct": false,
"version": "6.0.1",
"ecosystem": "npm"
},
{
"name": "acorn",
"direct": false,
"version": "8.16.0",
"ecosystem": "npm"
},
{
"name": "acorn-jsx",
"direct": false,
"version": "5.3.2",
"ecosystem": "npm"
},
{
"name": "acorn-walk",
"direct": false,
"version": "8.3.3",
"ecosystem": "npm"
},
{
"name": "ajv",
"direct": false,
"version": "6.14.0",
"ecosystem": "npm"
},
{
"name": "ansi-escapes",
"direct": false,
"version": "4.3.2",
"ecosystem": "npm"
},
{
"name": "ansi-regex",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "ansi-regex",
"direct": false,
"version": "6.0.1",
"ecosystem": "npm"
},
{
"name": "ansi-styles",
"direct": false,
"version": "4.3.0",
"ecosystem": "npm"
},
{
"name": "ansi-styles",
"direct": false,
"version": "5.2.0",
"ecosystem": "npm"
},
{
"name": "ansi-styles",
"direct": false,
"version": "6.2.1",
"ecosystem": "npm"
},
{
"name": "anymatch",
"direct": false,
"version": "3.1.3",
"ecosystem": "npm"
},
{
"name": "arg",
"direct": false,
"version": "4.1.3",
"ecosystem": "npm"
},
{
"name": "argparse",
"direct": false,
"version": "1.0.10",
"ecosystem": "npm"
},
{
"name": "argparse",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "async",
"direct": false,
"version": "3.2.5",
"ecosystem": "npm"
},
{
"name": "babel-jest",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "babel-plugin-istanbul",
"direct": false,
"version": "6.1.1",
"ecosystem": "npm"
},
{
"name": "babel-plugin-jest-hoist",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "babel-preset-current-node-syntax",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "babel-preset-jest",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "balanced-match",
"direct": false,
"version": "1.0.2",
"ecosystem": "npm"
},
{
"name": "balanced-match",
"direct": false,
"version": "4.0.4",
"ecosystem": "npm"
},
{
"name": "baseline-browser-mapping",
"direct": false,
"version": "2.10.19",
"ecosystem": "npm"
},
{
"name": "brace-expansion",
"direct": false,
"version": "1.1.14",
"ecosystem": "npm"
},
{
"name": "brace-expansion",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "brace-expansion",
"direct": false,
"version": "5.0.5",
"ecosystem": "npm"
},
{
"name": "braces",
"direct": false,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "browserslist",
"direct": false,
"version": "4.28.2",
"ecosystem": "npm"
},
{
"name": "bs-logger",
"direct": false,
"version": "0.2.6",
"ecosystem": "npm"
},
{
"name": "bser",
"direct": false,
"version": "2.1.1",
"ecosystem": "npm"
},
{
"name": "buffer-from",
"direct": false,
"version": "1.1.2",
"ecosystem": "npm"
},
{
"name": "builtin-modules",
"direct": false,
"version": "3.3.0",
"ecosystem": "npm"
},
{
"name": "callsites",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "camelcase",
"direct": false,
"version": "5.3.1",
"ecosystem": "npm"
},
{
"name": "camelcase",
"direct": false,
"version": "6.3.0",
"ecosystem": "npm"
},
{
"name": "caniuse-lite",
"direct": false,
"version": "1.0.30001788",
"ecosystem": "npm"
},
{
"name": "chalk",
"direct": false,
"version": "4.1.2",
"ecosystem": "npm"
},
{
"name": "char-regex",
"direct": false,
"version": "1.0.2",
"ecosystem": "npm"
},
{
"name": "chokidar",
"direct": false,
"version": "4.0.3",
"ecosystem": "npm"
},
{
"name": "ci-info",
"direct": false,
"version": "3.9.0",
"ecosystem": "npm"
},
{
"name": "cjs-module-lexer",
"direct": false,
"version": "1.3.1",
"ecosystem": "npm"
},
{
"name": "cliui",
"direct": false,
"version": "8.0.1",
"ecosystem": "npm"
},
{
"name": "co",
"direct": false,
"version": "4.6.0",
"ecosystem": "npm"
},
{
"name": "codemirror",
"direct": false,
"version": "6.0.2",
"ecosystem": "npm"
},
{
"name": "collect-v8-coverage",
"direct": false,
"version": "1.0.2",
"ecosystem": "npm"
},
{
"name": "color-convert",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "color-name",
"direct": false,
"version": "1.1.4",
"ecosystem": "npm"
},
{
"name": "commondir",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "compute-scroll-into-view",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "concat-map",
"direct": false,
"version": "0.0.1",
"ecosystem": "npm"
},
{
"name": "convert-source-map",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "create-jest",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "create-require",
"direct": false,
"version": "1.1.1",
"ecosystem": "npm"
},
{
"name": "crelt",
"direct": false,
"version": "1.0.6",
"ecosystem": "npm"
},
{
"name": "cross-spawn",
"direct": false,
"version": "7.0.6",
"ecosystem": "npm"
},
{
"name": "csstype",
"direct": false,
"version": "3.2.3",
"ecosystem": "npm"
},
{
"name": "debug",
"direct": false,
"version": "4.4.3",
"ecosystem": "npm"
},
{
"name": "dedent",
"direct": false,
"version": "1.5.3",
"ecosystem": "npm"
},
{
"name": "deep-is",
"direct": false,
"version": "0.1.4",
"ecosystem": "npm"
},
{
"name": "deepmerge",
"direct": false,
"version": "4.3.1",
"ecosystem": "npm"
},
{
"name": "detect-libc",
"direct": false,
"version": "2.1.2",
"ecosystem": "npm"
},
{
"name": "detect-newline",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "diff",
"direct": false,
"version": "4.0.4",
"ecosystem": "npm"
},
{
"name": "diff-sequences",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "downshift",
"direct": false,
"version": "9.3.2",
"ecosystem": "npm"
},
{
"name": "dts-bundle-generator",
"direct": false,
"version": "9.5.1",
"ecosystem": "npm"
},
{
"name": "eastasianwidth",
"direct": false,
"version": "0.2.0",
"ecosystem": "npm"
},
{
"name": "ejs",
"direct": false,
"version": "3.1.10",
"ecosystem": "npm"
},
{
"name": "electron-to-chromium",
"direct": false,
"version": "1.5.336",
"ecosystem": "npm"
},
{
"name": "emittery",
"direct": false,
"version": "0.13.1",
"ecosystem": "npm"
},
{
"name": "emoji-regex",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "emoji-regex",
"direct": false,
"version": "9.2.2",
"ecosystem": "npm"
},
{
"name": "error-ex",
"direct": false,
"version": "1.3.2",
"ecosystem": "npm"
},
{
"name": "escalade",
"direct": false,
"version": "3.2.0",
"ecosystem": "npm"
},
{
"name": "escape-string-regexp",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "escape-string-regexp",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "eslint",
"direct": false,
"version": "9.7.0",
"ecosystem": "npm"
},
{
"name": "eslint-scope",
"direct": false,
"version": "8.0.2",
"ecosystem": "npm"
},
{
"name": "eslint-visitor-keys",
"direct": false,
"version": "3.4.3",
"ecosystem": "npm"
},
{
"name": "eslint-visitor-keys",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "eslint-visitor-keys",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "espree",
"direct": false,
"version": "10.1.0",
"ecosystem": "npm"
},
{
"name": "esprima",
"direct": false,
"version": "4.0.1",
"ecosystem": "npm"
},
{
"name": "esquery",
"direct": false,
"version": "1.6.0",
"ecosystem": "npm"
},
{
"name": "esrecurse",
"direct": false,
"version": "4.3.0",
"ecosystem": "npm"
},
{
"name": "estraverse",
"direct": false,
"version": "5.3.0",
"ecosystem": "npm"
},
{
"name": "estree-walker",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "esutils",
"direct": false,
"version": "2.0.3",
"ecosystem": "npm"
},
{
"name": "execa",
"direct": false,
"version": "5.1.1",
"ecosystem": "npm"
},
{
"name": "exit",
"direct": false,
"version": "0.1.2",
"ecosystem": "npm"
},
{
"name": "expect",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "fast-deep-equal",
"direct": false,
"version": "3.1.3",
"ecosystem": "npm"
},
{
"name": "fast-json-stable-stringify",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "fast-levenshtein",
"direct": false,
"version": "2.0.6",
"ecosystem": "npm"
},
{
"name": "fastq",
"direct": false,
"version": "1.17.1",
"ecosystem": "npm"
},
{
"name": "fb-watchman",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "fdir",
"direct": false,
"version": "6.5.0",
"ecosystem": "npm"
},
{
"name": "file-entry-cache",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "filelist",
"direct": false,
"version": "1.0.4",
"ecosystem": "npm"
},
{
"name": "fill-range",
"direct": false,
"version": "7.1.1",
"ecosystem": "npm"
},
{
"name": "find-up",
"direct": false,
"version": "4.1.0",
"ecosystem": "npm"
},
{
"name": "find-up",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "flat-cache",
"direct": false,
"version": "4.0.1",
"ecosystem": "npm"
},
{
"name": "flatted",
"direct": false,
"version": "3.4.2",
"ecosystem": "npm"
},
{
"name": "foreground-child",
"direct": false,
"version": "3.3.1",
"ecosystem": "npm"
},
{
"name": "fs.realpath",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "fsevents",
"direct": false,
"version": "2.3.2",
"ecosystem": "npm"
},
{
"name": "fsevents",
"direct": false,
"version": "2.3.3",
"ecosystem": "npm"
},
{
"name": "function-bind",
"direct": false,
"version": "1.1.2",
"ecosystem": "npm"
},
{
"name": "gensync",
"direct": false,
"version": "1.0.0-beta.2",
"ecosystem": "npm"
},
{
"name": "get-caller-file",
"direct": false,
"version": "2.0.5",
"ecosystem": "npm"
},
{
"name": "get-package-type",
"direct": false,
"version": "0.1.0",
"ecosystem": "npm"
},
{
"name": "get-stream",
"direct": false,
"version": "6.0.1",
"ecosystem": "npm"
},
{
"name": "glob",
"direct": false,
"version": "10.5.0",
"ecosystem": "npm"
},
{
"name": "glob",
"direct": false,
"version": "11.1.0",
"ecosystem": "npm"
},
{
"name": "glob",
"direct": false,
"version": "7.2.3",
"ecosystem": "npm"
},
{
"name": "glob-parent",
"direct": false,
"version": "6.0.2",
"ecosystem": "npm"
},
{
"name": "globals",
"direct": false,
"version": "11.12.0",
"ecosystem": "npm"
},
{
"name": "globals",
"direct": false,
"version": "14.0.0",
"ecosystem": "npm"
},
{
"name": "globals",
"direct": false,
"version": "15.15.0",
"ecosystem": "npm"
},
{
"name": "graceful-fs",
"direct": false,
"version": "4.2.11",
"ecosystem": "npm"
},
{
"name": "has-flag",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "hasown",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "html-escaper",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "human-signals",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "ignore",
"direct": false,
"version": "5.3.1",
"ecosystem": "npm"
},
{
"name": "ignore",
"direct": false,
"version": "7.0.5",
"ecosystem": "npm"
},
{
"name": "immutable",
"direct": false,
"version": "5.1.5",
"ecosystem": "npm"
},
{
"name": "import-fresh",
"direct": false,
"version": "3.3.0",
"ecosystem": "npm"
},
{
"name": "import-local",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "imurmurhash",
"direct": false,
"version": "0.1.4",
"ecosystem": "npm"
},
{
"name": "inflight",
"direct": false,
"version": "1.0.6",
"ecosystem": "npm"
},
{
"name": "inherits",
"direct": false,
"version": "2.0.4",
"ecosystem": "npm"
},
{
"name": "is-arrayish",
"direct": false,
"version": "0.2.1",
"ecosystem": "npm"
},
{
"name": "is-builtin-module",
"direct": false,
"version": "3.2.1",
"ecosystem": "npm"
},
{
"name": "is-core-module",
"direct": false,
"version": "2.15.0",
"ecosystem": "npm"
},
{
"name": "is-extglob",
"direct": false,
"version": "2.1.1",
"ecosystem": "npm"
},
{
"name": "is-fullwidth-code-point",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "is-generator-fn",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "is-glob",
"direct": false,
"version": "4.0.3",
"ecosystem": "npm"
},
{
"name": "is-module",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "is-number",
"direct": false,
"version": "7.0.0",
"ecosystem": "npm"
},
{
"name": "is-path-inside",
"direct": false,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "is-reference",
"direct": false,
"version": "1.2.1",
"ecosystem": "npm"
},
{
"name": "is-stream",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "isexe",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "istanbul-lib-coverage",
"direct": false,
"version": "3.2.2",
"ecosystem": "npm"
},
{
"name": "istanbul-lib-instrument",
"direct": false,
"version": "5.2.1",
"ecosystem": "npm"
},
{
"name": "istanbul-lib-instrument",
"direct": false,
"version": "6.0.3",
"ecosystem": "npm"
},
{
"name": "istanbul-lib-report",
"direct": false,
"version": "3.0.1",
"ecosystem": "npm"
},
{
"name": "istanbul-lib-source-maps",
"direct": false,
"version": "4.0.1",
"ecosystem": "npm"
},
{
"name": "istanbul-reports",
"direct": false,
"version": "3.1.7",
"ecosystem": "npm"
},
{
"name": "jackspeak",
"direct": false,
"version": "3.4.3",
"ecosystem": "npm"
},
{
"name": "jackspeak",
"direct": false,
"version": "4.2.3",
"ecosystem": "npm"
},
{
"name": "jake",
"direct": false,
"version": "10.9.2",
"ecosystem": "npm"
},
{
"name": "jest",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-changed-files",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-circus",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-cli",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-config",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-diff",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-docblock",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-each",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-environment-node",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-get-type",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "jest-haste-map",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-leak-detector",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-matcher-utils",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-message-util",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-mock",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-pnp-resolver",
"direct": false,
"version": "1.2.3",
"ecosystem": "npm"
},
{
"name": "jest-regex-util",
"direct": false,
"version": "29.6.3",
"ecosystem": "npm"
},
{
"name": "jest-resolve",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-resolve-dependencies",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-runner",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-runtime",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-snapshot",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-util",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-validate",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-watcher",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "jest-worker",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "js-tokens",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "js-yaml",
"direct": false,
"version": "3.14.2",
"ecosystem": "npm"
},
{
"name": "js-yaml",
"direct": false,
"version": "4.1.1",
"ecosystem": "npm"
},
{
"name": "jsesc",
"direct": false,
"version": "2.5.2",
"ecosystem": "npm"
},
{
"name": "json-buffer",
"direct": false,
"version": "3.0.1",
"ecosystem": "npm"
},
{
"name": "json-parse-even-better-errors",
"direct": false,
"version": "2.3.1",
"ecosystem": "npm"
},
{
"name": "json-schema-traverse",
"direct": false,
"version": "0.4.1",
"ecosystem": "npm"
},
{
"name": "json-stable-stringify-without-jsonify",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "json5",
"direct": false,
"version": "2.2.3",
"ecosystem": "npm"
},
{
"name": "keyv",
"direct": false,
"version": "4.5.4",
"ecosystem": "npm"
},
{
"name": "kleur",
"direct": false,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "leven",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "levn",
"direct": false,
"version": "0.4.1",
"ecosystem": "npm"
},
{
"name": "lightningcss",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-android-arm64",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-darwin-arm64",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-darwin-x64",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-freebsd-x64",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-linux-arm-gnueabihf",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-linux-arm64-gnu",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-linux-arm64-musl",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-linux-x64-gnu",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-linux-x64-musl",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-win32-arm64-msvc",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lightningcss-win32-x64-msvc",
"direct": false,
"version": "1.32.0",
"ecosystem": "npm"
},
{
"name": "lines-and-columns",
"direct": false,
"version": "1.2.4",
"ecosystem": "npm"
},
{
"name": "locate-path",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "locate-path",
"direct": false,
"version": "6.0.0",
"ecosystem": "npm"
},
{
"name": "lodash.memoize",
"direct": false,
"version": "4.1.2",
"ecosystem": "npm"
},
{
"name": "lodash.merge",
"direct": false,
"version": "4.6.2",
"ecosystem": "npm"
},
{
"name": "loose-envify",
"direct": false,
"version": "1.4.0",
"ecosystem": "npm"
},
{
"name": "lru-cache",
"direct": false,
"version": "10.4.3",
"ecosystem": "npm"
},
{
"name": "lru-cache",
"direct": false,
"version": "11.0.0",
"ecosystem": "npm"
},
{
"name": "lru-cache",
"direct": false,
"version": "5.1.1",
"ecosystem": "npm"
},
{
"name": "magic-string",
"direct": false,
"version": "0.30.11",
"ecosystem": "npm"
},
{
"name": "make-dir",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "make-error",
"direct": false,
"version": "1.3.6",
"ecosystem": "npm"
},
{
"name": "makeerror",
"direct": false,
"version": "1.0.12",
"ecosystem": "npm"
},
{
"name": "merge-stream",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "micromatch",
"direct": false,
"version": "4.0.8",
"ecosystem": "npm"
},
{
"name": "mimic-fn",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "minimatch",
"direct": false,
"version": "10.2.5",
"ecosystem": "npm"
},
{
"name": "minimatch",
"direct": false,
"version": "3.1.5",
"ecosystem": "npm"
},
{
"name": "minimatch",
"direct": false,
"version": "5.1.9",
"ecosystem": "npm"
},
{
"name": "minimatch",
"direct": false,
"version": "9.0.9",
"ecosystem": "npm"
},
{
"name": "minipass",
"direct": false,
"version": "7.1.2",
"ecosystem": "npm"
},
{
"name": "ms",
"direct": false,
"version": "2.1.3",
"ecosystem": "npm"
},
{
"name": "nanoid",
"direct": false,
"version": "3.3.12",
"ecosystem": "npm"
},
{
"name": "natural-compare",
"direct": false,
"version": "1.4.0",
"ecosystem": "npm"
},
{
"name": "node-addon-api",
"direct": false,
"version": "7.1.1",
"ecosystem": "npm"
},
{
"name": "node-int64",
"direct": false,
"version": "0.4.0",
"ecosystem": "npm"
},
{
"name": "node-releases",
"direct": false,
"version": "2.0.37",
"ecosystem": "npm"
},
{
"name": "normalize-path",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "npm-run-path",
"direct": false,
"version": "4.0.1",
"ecosystem": "npm"
},
{
"name": "object-assign",
"direct": false,
"version": "4.1.1",
"ecosystem": "npm"
},
{
"name": "once",
"direct": false,
"version": "1.4.0",
"ecosystem": "npm"
},
{
"name": "onetime",
"direct": false,
"version": "5.1.2",
"ecosystem": "npm"
},
{
"name": "optionator",
"direct": false,
"version": "0.9.4",
"ecosystem": "npm"
},
{
"name": "p-limit",
"direct": false,
"version": "2.3.0",
"ecosystem": "npm"
},
{
"name": "p-limit",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "p-locate",
"direct": false,
"version": "4.1.0",
"ecosystem": "npm"
},
{
"name": "p-locate",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "p-try",
"direct": false,
"version": "2.2.0",
"ecosystem": "npm"
},
{
"name": "package-json-from-dist",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "parent-module",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "parse-json",
"direct": false,
"version": "5.2.0",
"ecosystem": "npm"
},
{
"name": "path-exists",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "path-is-absolute",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "path-key",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "path-parse",
"direct": false,
"version": "1.0.7",
"ecosystem": "npm"
},
{
"name": "path-scurry",
"direct": false,
"version": "1.11.1",
"ecosystem": "npm"
},
{
"name": "path-scurry",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "picocolors",
"direct": false,
"version": "1.1.1",
"ecosystem": "npm"
},
{
"name": "picomatch",
"direct": false,
"version": "2.3.2",
"ecosystem": "npm"
},
{
"name": "picomatch",
"direct": false,
"version": "4.0.4",
"ecosystem": "npm"
},
{
"name": "pirates",
"direct": false,
"version": "4.0.6",
"ecosystem": "npm"
},
{
"name": "pkg-dir",
"direct": false,
"version": "4.2.0",
"ecosystem": "npm"
},
{
"name": "playwright",
"direct": false,
"version": "1.59.1",
"ecosystem": "npm"
},
{
"name": "playwright-core",
"direct": false,
"version": "1.59.1",
"ecosystem": "npm"
},
{
"name": "postcss",
"direct": false,
"version": "8.5.15",
"ecosystem": "npm"
},
{
"name": "prelude-ls",
"direct": false,
"version": "1.2.1",
"ecosystem": "npm"
},
{
"name": "prettier",
"direct": false,
"version": "3.3.3",
"ecosystem": "npm"
},
{
"name": "pretty-format",
"direct": false,
"version": "29.7.0",
"ecosystem": "npm"
},
{
"name": "prompts",
"direct": false,
"version": "2.4.2",
"ecosystem": "npm"
},
{
"name": "prop-types",
"direct": false,
"version": "15.8.1",
"ecosystem": "npm"
},
{
"name": "punycode",
"direct": false,
"version": "2.3.1",
"ecosystem": "npm"
},
{
"name": "pure-rand",
"direct": false,
"version": "6.1.0",
"ecosystem": "npm"
},
{
"name": "queue-microtask",
"direct": false,
"version": "1.2.3",
"ecosystem": "npm"
},
{
"name": "react",
"direct": false,
"version": "18.3.1",
"ecosystem": "npm"
},
{
"name": "react-dom",
"direct": false,
"version": "18.3.1",
"ecosystem": "npm"
},
{
"name": "react-is",
"direct": false,
"version": "16.13.1",
"ecosystem": "npm"
},
{
"name": "react-is",
"direct": false,
"version": "18.3.1",
"ecosystem": "npm"
},
{
"name": "readdirp",
"direct": false,
"version": "4.1.2",
"ecosystem": "npm"
},
{
"name": "require-directory",
"direct": false,
"version": "2.1.1",
"ecosystem": "npm"
},
{
"name": "resolve",
"direct": false,
"version": "1.22.8",
"ecosystem": "npm"
},
{
"name": "resolve-cwd",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "resolve-from",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "resolve-from",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "resolve.exports",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "reusify",
"direct": false,
"version": "1.0.4",
"ecosystem": "npm"
},
{
"name": "rimraf",
"direct": false,
"version": "6.0.1",
"ecosystem": "npm"
},
{
"name": "rolldown",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "rollup",
"direct": false,
"version": "4.60.1",
"ecosystem": "npm"
},
{
"name": "run-parallel",
"direct": false,
"version": "1.2.0",
"ecosystem": "npm"
},
{
"name": "sass",
"direct": false,
"version": "1.99.0",
"ecosystem": "npm"
},
{
"name": "scheduler",
"direct": false,
"version": "0.23.2",
"ecosystem": "npm"
},
{
"name": "semver",
"direct": false,
"version": "6.3.1",
"ecosystem": "npm"
},
{
"name": "semver",
"direct": false,
"version": "7.6.3",
"ecosystem": "npm"
},
{
"name": "semver",
"direct": false,
"version": "7.7.4",
"ecosystem": "npm"
},
{
"name": "shebang-command",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "shebang-regex",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "signal-exit",
"direct": false,
"version": "3.0.7",
"ecosystem": "npm"
},
{
"name": "signal-exit",
"direct": false,
"version": "4.1.0",
"ecosystem": "npm"
},
{
"name": "sisteransi",
"direct": false,
"version": "1.0.5",
"ecosystem": "npm"
},
{
"name": "slash",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "source-map",
"direct": false,
"version": "0.6.1",
"ecosystem": "npm"
},
{
"name": "source-map-js",
"direct": false,
"version": "1.2.1",
"ecosystem": "npm"
},
{
"name": "source-map-support",
"direct": false,
"version": "0.5.13",
"ecosystem": "npm"
},
{
"name": "sprintf-js",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "stack-utils",
"direct": false,
"version": "2.0.6",
"ecosystem": "npm"
},
{
"name": "string-length",
"direct": false,
"version": "4.0.2",
"ecosystem": "npm"
},
{
"name": "string-width",
"direct": false,
"version": "4.2.3",
"ecosystem": "npm"
},
{
"name": "string-width",
"direct": false,
"version": "5.1.2",
"ecosystem": "npm"
},
{
"name": "strip-ansi",
"direct": false,
"version": "6.0.1",
"ecosystem": "npm"
},
{
"name": "strip-ansi",
"direct": false,
"version": "7.1.0",
"ecosystem": "npm"
},
{
"name": "strip-bom",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "strip-final-newline",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "strip-json-comments",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "style-mod",
"direct": false,
"version": "4.1.3",
"ecosystem": "npm"
},
{
"name": "supports-color",
"direct": false,
"version": "7.2.0",
"ecosystem": "npm"
},
{
"name": "supports-color",
"direct": false,
"version": "8.1.1",
"ecosystem": "npm"
},
{
"name": "supports-preserve-symlinks-flag",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "test-exclude",
"direct": false,
"version": "6.0.0",
"ecosystem": "npm"
},
{
"name": "text-table",
"direct": false,
"version": "0.2.0",
"ecosystem": "npm"
},
{
"name": "tinyglobby",
"direct": false,
"version": "0.2.16",
"ecosystem": "npm"
},
{
"name": "tinyglobby",
"direct": false,
"version": "0.2.17",
"ecosystem": "npm"
},
{
"name": "tmpl",
"direct": false,
"version": "1.0.5",
"ecosystem": "npm"
},
{
"name": "to-regex-range",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "ts-api-utils",
"direct": false,
"version": "2.5.0",
"ecosystem": "npm"
},
{
"name": "ts-jest",
"direct": false,
"version": "29.2.4",
"ecosystem": "npm"
},
{
"name": "ts-node",
"direct": false,
"version": "10.9.2",
"ecosystem": "npm"
},
{
"name": "tslib",
"direct": false,
"version": "2.8.1",
"ecosystem": "npm"
},
{
"name": "type-check",
"direct": false,
"version": "0.4.0",
"ecosystem": "npm"
},
{
"name": "type-detect",
"direct": false,
"version": "4.0.8",
"ecosystem": "npm"
},
{
"name": "type-fest",
"direct": false,
"version": "0.21.3",
"ecosystem": "npm"
},
{
"name": "typescript",
"direct": false,
"version": "5.5.4",
"ecosystem": "npm"
},
{
"name": "typescript",
"direct": false,
"version": "5.9.3",
"ecosystem": "npm"
},
{
"name": "typescript-eslint",
"direct": false,
"version": "8.58.2",
"ecosystem": "npm"
},
{
"name": "undici-types",
"direct": false,
"version": "5.26.5",
"ecosystem": "npm"
},
{
"name": "undici-types",
"direct": false,
"version": "7.19.2",
"ecosystem": "npm"
},
{
"name": "update-browserslist-db",
"direct": false,
"version": "1.2.3",
"ecosystem": "npm"
},
{
"name": "uri-js",
"direct": false,
"version": "4.4.1",
"ecosystem": "npm"
},
{
"name": "v8-compile-cache-lib",
"direct": false,
"version": "3.0.1",
"ecosystem": "npm"
},
{
"name": "v8-to-istanbul",
"direct": false,
"version": "9.3.0",
"ecosystem": "npm"
},
{
"name": "vite",
"direct": false,
"version": "8.0.16",
"ecosystem": "npm"
},
{
"name": "w3c-keyname",
"direct": false,
"version": "2.2.8",
"ecosystem": "npm"
},
{
"name": "walker",
"direct": false,
"version": "1.0.8",
"ecosystem": "npm"
},
{
"name": "which",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "word-wrap",
"direct": false,
"version": "1.2.5",
"ecosystem": "npm"
},
{
"name": "wrap-ansi",
"direct": false,
"version": "7.0.0",
"ecosystem": "npm"
},
{
"name": "wrap-ansi",
"direct": false,
"version": "8.1.0",
"ecosystem": "npm"
},
{
"name": "wrappy",
"direct": false,
"version": "1.0.2",
"ecosystem": "npm"
},
{
"name": "write-file-atomic",
"direct": false,
"version": "4.0.2",
"ecosystem": "npm"
},
{
"name": "y18n",
"direct": false,
"version": "5.0.8",
"ecosystem": "npm"
},
{
"name": "yallist",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "yargs",
"direct": false,
"version": "17.7.2",
"ecosystem": "npm"
},
{
"name": "yargs-parser",
"direct": false,
"version": "21.1.1",
"ecosystem": "npm"
},
{
"name": "yn",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "yocto-queue",
"direct": false,
"version": "0.1.0",
"ecosystem": "npm"
}
],
"collected": true,
"truncated": false,
"total_count": 546,
"direct_count": 0,
"indirect_count": 546
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 47,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 1,
"closed_unmerged_prs": 4
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "sashiksu",
"commits": 174,
"avatar_url": "https://avatars.githubusercontent.com/u/20171631?v=4"
},
{
"type": "User",
"login": "actions-user",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/65916846?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.994
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"Unit Test Automation.yml",
"deploy-demo.yml"
],
"has_docs_dir": true,
"linter_configs": [
"eslint.config.mjs"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 3,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 6,
"reason": "4 out of 6 merged PRs checked by a CI test -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/5 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "16 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 2,
"reason": "dependency not pinned by hash detected -- score normalized to 2",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 7,
"reason": "SAST tool is not run on all commits -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 10,
"reason": "security policy file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 3,
"reason": "7 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "1d20cb9d668936dd2f3ba1e99149c65079e15f44",
"ran_at": "2026-07-23T00:24:06Z",
"aggregate_score": 6.3,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": true,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-21T08:37:53Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-17T16:31:20Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/sashiksu/postal-code-checker",
"host": "github.com",
"name": "postal-code-checker",
"owner": "sashiksu"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"security": 70,
"vitality": 74,
"community": 56,
"governance": 56,
"engineering": 82
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"commits_last_year": 97,
"human_commit_share": 0.98,
"days_since_last_push": 5,
"active_weeks_last_year": 4
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "4/52 weeks with commits",
"points": 2.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 4
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "97 commits in the last year",
"points": 17.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 97
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "16 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 84,
"inputs": {
"releases_count": 5,
"latest_release_tag": "v2.3.0",
"releases_from_tags": false,
"days_since_latest_release": 5,
"mean_days_between_releases": 178.2
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "5 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 5
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~178.2 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 178.2
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 5,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 5 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 5
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 56,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 13,
"inputs": {
"forks": 0,
"stars": 7,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "7 stars",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 7
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 13.5,
"status": "met",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "good",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 83,
"inputs": {
"packages": [
"postal-code-checker"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 90090
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "90,090 downloads/month across npm",
"points": 66.1,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 90090,
"ecosystems": "npm"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 56,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 12,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.994
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 99% of commits",
"points": 0.1,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 99
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"merged_prs": 47,
"open_issues": 0,
"closed_issues": 1,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 4
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 46.8,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "47/51 decided PRs merged",
"points": 35.2,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 47,
"decided": 51
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/5 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 47,
"inputs": {
"followers": 9,
"owner_type": "User",
"is_verified": null,
"owner_login": "sashiksu",
"public_repos": 12,
"account_age_days": 3677
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "9 followers of sashiksu",
"points": 7.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 9,
"login": "sashiksu"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "12 public repos, account ~10 yr old",
"points": 20.1,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 12
}
},
{
"code": "account_age_years",
"params": {
"years": 10
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"postal-code-checker"
],
"ecosystems": "npm",
"any_deprecated": false,
"min_days_since_publish": 5
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on npm",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "npm"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 5 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 5
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "21 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 21
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 82,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 76,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": "eslint.config.mjs",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "eslint.config.mjs"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "4 out of 6 merged PRs checked by a CI test -- score normalized to 6",
"points": 12,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"topics": [
"postal",
"validation",
"validation-library",
"zip",
"postal-codes"
],
"has_wiki": false,
"homepage": "https://sashiksu.github.io/postal-code-checker/",
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": "https://sashiksu.github.io/postal-code-checker/",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "5 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 5
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "good",
"name": "Security",
"value": 70,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 63,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 6.3
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection is not maximal on development and all release branches",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "4 out of 6 merged PRs checked by a CI test -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/5 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "16 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 2",
"points": 1,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 7",
"points": 3.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "7 existing vulnerabilities detected",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 546 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 546
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 11,
"affected_packages": 7,
"assessed_packages": 546,
"unassessed_packages": 0,
"affected_by_severity": "high 6, low 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 546,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 61,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 34,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.633,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "62 of 98 human commits state their intent (structured subject or explanatory body)",
"points": 33.7,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 62,
"sampled": 98
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [
"demo/tsconfig.json",
"tsconfig.json"
],
"agent_commit_share": 0.01,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0.02
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": "eslint.config.mjs",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "eslint.config.mjs"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "demo/tsconfig.json, tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "demo/tsconfig.json, tsconfig.json"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "1 of the last 100 commits agent-authored or agent-credited",
"points": 2,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 1,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "2 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 2,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 2",
"points": 2,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "TypeScript",
"largest_source_bytes": 54880,
"source_files_sampled": 88,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "TypeScript (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "TypeScript"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/88 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 88,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"deps.dev does not index npm:postal-code-checker@2.3.0; advisories assessed against the repository dependency graph instead"
],
"report_type": "repository",
"generated_at": "2026-07-23T00:24:20.222007Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/sashiksu/postal-code-checker.svg",
"full_name": "sashiksu/postal-code-checker",
"license_state": "standard",
"license_spdx": "MIT"
}