Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 3020,
"has_wiki": true,
"homepage": "http://www.liedman.net/leaflet-control-geocoder/",
"languages": {
"CSS": 3720,
"HTML": 4449,
"JavaScript": 2117,
"TypeScript": 120411
},
"pushed_at": "2026-07-18T18:09:36Z",
"created_at": "2013-09-27T10:44:00Z",
"owner_type": "User",
"updated_at": "2026-07-22T15:00:07Z",
"description": "A simple geocoder form to locate places. Easily extended to multiple data providers.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "BSD-2-Clause",
"default_branch": "master",
"license_spdx_raw": "BSD-2-Clause",
"primary_language": "TypeScript",
"significant_languages": [
"TypeScript"
]
},
"owner": {
"blog": "https://www.liedman.net/",
"name": "Per Liedman",
"type": "User",
"login": "perliedman",
"company": "Solvi",
"location": "Göteborg, Sweden",
"followers": 571,
"avatar_url": "https://avatars.githubusercontent.com/u/1246614?v=4",
"created_at": "2011-12-07T08:48:12Z",
"is_verified": null,
"public_repos": 110,
"account_age_days": 5342
},
"license": {
"state": "standard",
"spdx_id": "BSD-2-Clause",
"raw_spdx": "BSD-2-Clause",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "4.0.0",
"kind": "major",
"published_at": "2026-07-18T18:09:51Z"
},
{
"tag": "3.3.1",
"kind": "patch",
"published_at": "2025-09-14T09:49:07Z"
},
{
"tag": "3.3.0",
"kind": "minor",
"published_at": "2025-08-16T20:16:23Z"
},
{
"tag": "3.2.1",
"kind": "patch",
"published_at": "2025-08-12T16:49:10Z"
},
{
"tag": "3.2.0",
"kind": "minor",
"published_at": "2025-05-18T19:28:25Z"
},
{
"tag": "3.1.0",
"kind": "minor",
"published_at": "2024-12-21T09:52:30Z"
},
{
"tag": "3.0.1",
"kind": "patch",
"published_at": "2024-12-21T09:52:16Z"
},
{
"tag": "3.0.0",
"kind": "major",
"published_at": "2024-12-21T09:52:06Z"
},
{
"tag": "2.4.0",
"kind": "minor",
"published_at": "2022-02-06T18:53:07Z"
},
{
"tag": "2.3.0",
"kind": "minor",
"published_at": "2021-11-06T10:31:17Z"
},
{
"tag": "2.2.0",
"kind": "minor",
"published_at": "2021-03-08T19:31:58Z"
},
{
"tag": "2.1.0",
"kind": "minor",
"published_at": "2020-12-10T22:53:04Z"
},
{
"tag": "2.0.1",
"kind": "patch",
"published_at": "2020-11-30T21:14:07Z"
},
{
"tag": "2.0.0",
"kind": "major",
"published_at": "2020-11-28T19:04:54Z"
}
],
"recent_commits": [
{
"oid": "fcb11352f47e31974a46bbd7d0849b0376ad836f",
"body": null,
"is_bot": false,
"headline": "4.0.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-18T18:04:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "114de5f635118576f4a5ada8d8fc5a35cca7b355",
"body": null,
"is_bot": false,
"headline": "package: update devDependencies",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-18T18:02:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4112b29b087d8a5d834071b431aaffe524d4a541",
"body": "Fixes #329.",
"is_bot": false,
"headline": "check data and response payload exists in Here response",
"author_name": "Marcin",
"author_login": null,
"committed_at": "2026-07-18T18:01:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "017d56620b26c1a3241df5e75ba8131408e2380d",
"body": "The usage policy governs nominatim.openstreetmap.org, but the rate limit was\napplied unconditionally, capping own installations at one request per second\nwith no way to opt out.\n\nSkip the limit unless the request goes to the public service, and reuse its URL\nas the default serviceUrl so the host is defined in one place. Hosts are\ncompared, so a differing path or trailing slash still counts as the public one.",
"is_bot": false,
"headline": "Nominatim: rate limit the public service only",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-18T17:56:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fef1ab8972d743ff1223a2d4336fa18ed2ec5fd3",
"body": "Geocode the same query twice and assert a single request reaches the network.\nVerified to fail without the cache: bypassing the lookup makes it fetch twice.\n\nUses a fresh geocoder, as the cache is per instance.",
"is_bot": false,
"headline": "Nominatim: test that identical queries are cached",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-18T17:50:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a48115830ec23f474e38fe633716f50bb5c459ac",
"body": "The usage policy asks to \"enable caching of requests\" and warns that repeating\nidentical queries may result in blocking, but every submit hit the network --\nsearching the same term twice sent two identical requests.\n\nReuse the response of an identical earlier request, keyed by URL and\nparameters. Th\n[…]\nsts share one fetch, and a cache hit neither waits for a rate\nlimit slot nor consumes one. Failed requests are evicted so they can be retried.\n\nhttps://operations.osmfoundation.org/policies/nominatim/",
"is_bot": false,
"headline": "Nominatim: cache responses",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-18T17:49:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5bb5635d1a9ab9c23dc73b2dcadc390fd7ffafcd",
"body": "The Nominatim usage policy allows \"an absolute maximum of 1 request per\nsecond\", but nothing throttled submits: holding Enter or clicking the search\nbutton repeatedly sent one request per keypress.\n\nQueue geocode() and reverse() behind a per-instance promise chain that spaces\nthe start of consecutiv\n[…]\nnd apart. Requests are\ndelayed rather than dropped, and the chain resolves to a timestamp so a failed\nrequest cannot stall the ones behind it.\n\nhttps://operations.osmfoundation.org/policies/nominatim/",
"is_bot": false,
"headline": "Nominatim: limit requests to one per second",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-18T17:47:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "68bfbf6389afab537ddf99951d2f7d992a6abf71",
"body": "The Nominatim usage policy forbids auto-complete: \"you must not implement\nsuch a service on the client side using the API\". Implement suggest() so\nthat it throws a dedicated SuggestUnsupportedError referencing the policy,\nrather than leaving the method absent.\n\nSince the control feature-detects sugg\n[…]\nSuggestUnsupportedError, detaches the input listener and stops issuing\nsuggestion requests -- so the default geocoder keeps working on submit.\n\nhttps://operations.osmfoundation.org/policies/nominatim/",
"is_bot": false,
"headline": "Nominatim: reject suggest() per usage policy",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-18T17:15:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d8f8c8a60371cee8d3deeb411d7650a4a750044e",
"body": "This reverts commit d8cfcfa80f6ac13c3669dafb5d1cb96117504e28.",
"is_bot": false,
"headline": "Revert \"package: leaflet 2.0.0 compatibility\"",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-17T11:46:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e1f4843b06620e7890d7d92c908547c07241525",
"body": "https://viteplus.dev/",
"is_bot": false,
"headline": "Migrate to Vite+",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-17T11:45:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e933e22f46abead963482f654cba8198e14bc95c",
"body": null,
"is_bot": false,
"headline": "package: update devDependencies",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2026-07-17T11:38:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e71ac077ae073c488444923140c9502adc262874",
"body": null,
"is_bot": false,
"headline": "demo-unpkg: use leaflet@2.0.0-alpha.1",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-09-14T10:09:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61f02ad9e05e79633295ed3ae6a77ef622cbe663",
"body": null,
"is_bot": false,
"headline": "3.3.1",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-09-14T09:48:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a40fbba2921e3254ad8f1efdc4b45675ebfe483",
"body": "https://github.com/openstreetmap/operations/issues/737",
"is_bot": false,
"headline": "Use preferred tile.openstreetmap.org URL",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-09-14T09:46:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7646763eee986b0f8099542e476c8c5133ec25ad",
"body": null,
"is_bot": false,
"headline": "package: fix main and module entrypoints",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-09-14T09:44:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac35541665e95c9b5ab43cb454a66e8c6150dab2",
"body": null,
"is_bot": false,
"headline": "3.3.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-08-16T20:15:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ccccf756b4ecddb85bd0e33af4acc119bb780fe",
"body": "Ref: https://github.com/Leaflet/Leaflet/pull/9834",
"is_bot": false,
"headline": "Replace DomEvent.addListener with DomEvent.on",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-08-16T20:09:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7498d393e78e097f1042f4442d8a86e04eb93c7a",
"body": "Ref: https://github.com/Leaflet/Leaflet/pull/9841",
"is_bot": false,
"headline": "Fix EventedControl inheritance",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-08-16T20:08:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf6ee51f255c29e036d3f57dc0c4dab2df5982f1",
"body": null,
"is_bot": false,
"headline": "Add index.html for `npm run dev`",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-08-16T20:07:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d9c920873618bbe0e1090304e2f78f3b698b5b8",
"body": null,
"is_bot": false,
"headline": "3.2.1",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-08-12T16:46:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d67b8443ee3e8b6babe8b52a9f2b12f58be7953",
"body": null,
"is_bot": false,
"headline": "package: update devDependencies",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-08-12T16:45:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08cdf60a3acb16fe72174c18ae3f2ed7ed1943bb",
"body": null,
"is_bot": false,
"headline": "package: update devDependencies",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-08-12T16:42:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e11217bdca97395a5610f38ace393a173233b0f2",
"body": "* pelias: standardize bbox param, simplify parser\n* pelias: update type defs",
"is_bot": false,
"headline": "pelias: update Pelias provider (#365)",
"author_name": "Peter Johnson",
"author_login": "missinglink",
"committed_at": "2025-08-12T16:42:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "deabd80c8af50c89da4c7800560d7633fa633070",
"body": null,
"is_bot": false,
"headline": "3.2.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-18T19:25:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdb9435654dc4b45e88bda2ab9cb979584267074",
"body": null,
"is_bot": false,
"headline": "package: update devDependencies",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-18T19:18:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8cfcfa80f6ac13c3669dafb5d1cb96117504e28",
"body": null,
"is_bot": false,
"headline": "package: leaflet 2.0.0 compatibility",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-18T19:10:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ccd125164c7151e8f0671d9ff01780ba312e1e9",
"body": "Ref: https://github.com/Leaflet/Leaflet/pull/9626",
"is_bot": false,
"headline": "Remove use of factory methods",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-17T20:22:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d60a95b64c4bfe2ef87b8bbe255c2e620756f521",
"body": null,
"is_bot": false,
"headline": "Add mapquest.spec.ts",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-17T20:22:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee9402f02baf663e7818f02c2dd208a40ab44993",
"body": null,
"is_bot": false,
"headline": "Add opencage.spec.ts",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-17T20:22:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa94575a008b6f335ff41c478a08f21e902b230b",
"body": null,
"is_bot": false,
"headline": "Add bing.spec.ts",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-17T20:22:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03958902f390af871aa3b720fc9c0247bead0358",
"body": "Ref: https://github.com/Leaflet/Leaflet/pull/9652",
"is_bot": false,
"headline": "Replace Util.extend with ES6 Object.assign",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-05-17T20:22:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3efe9e8c2e2a2d06f4639a806ce9b13f3d744fb",
"body": null,
"is_bot": false,
"headline": "Use KeyboardEvent.key",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-01-05T13:45:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02f47ef657200052e3f3f46f158efef93260eef4",
"body": "https://github.com/Leaflet/Leaflet/pull/8727\nhttps://github.com/Leaflet/Leaflet/pull/8731\nhttps://github.com/Leaflet/Leaflet/pull/8732",
"is_bot": false,
"headline": "Use Element.classList",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2025-01-05T13:39:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d006cb52371e8f4ca3aaa442b90badebb066b3f",
"body": null,
"is_bot": false,
"headline": "README: add BAN Geocoder provider (France address API) (#360)",
"author_name": "Cyrille Giquello",
"author_login": "Cyrille37",
"committed_at": "2025-01-02T19:43:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ea1413ab34352e64ccb069747ac2e2dfd4be602",
"body": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/53761",
"is_bot": false,
"headline": "Drop type casts related to L.DomUtil.create",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-26T18:00:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e92025dbe8aafd437a7a72eb60c3eeb23cc3aea3",
"body": "See #357.",
"is_bot": false,
"headline": "nominatim: test htmTemplate",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-26T17:55:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d697fa08519f665cdda4a1f2d8b67568c8c7941b",
"body": "See #339.",
"is_bot": false,
"headline": "Add interface GeocodingContext",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-26T17:51:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4eb5e16c742c03a27a74ade482d7cadaf514299f",
"body": "See #339.",
"is_bot": false,
"headline": "Add interface GeocodingContext",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-26T17:49:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66e361ea10ccaa39c9959a6461fa58f9dec6fba1",
"body": "The Photon geocoder returns poor results unless the center point and\r\nzoom of the map are included as query parameters.",
"is_bot": false,
"headline": "Substantially improve Photon results with map-derived parameters. (#339)",
"author_name": "Shiva Kaul",
"author_login": "shivak",
"committed_at": "2024-12-26T17:48:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44628b18e29b015074f82a410f2d3d18f31195b8",
"body": null,
"is_bot": false,
"headline": "Use Array.map and Array.forEach",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-26T17:32:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8943dc4f13382413571d8506f4d7fe6e96c80648",
"body": null,
"is_bot": false,
"headline": "Add raw `properties` to result #358 (#359)",
"author_name": "Cyrille Giquello",
"author_login": "Cyrille37",
"committed_at": "2024-12-26T17:31:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a543d3546bdfedf85f7291c612e9abf6becb383",
"body": "Fixes #356.",
"is_bot": false,
"headline": "photon: photon.komoot.io",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-25T13:04:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4730511fe5d0451bc628b168068bfd379e40d988",
"body": null,
"is_bot": false,
"headline": "3.1.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:48:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e869c8a08596711d5f54ddc708af31afefdaba1",
"body": null,
"is_bot": false,
"headline": "CHANGELOG: clarify \"Migrate from callbacks to async-await\"",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:46:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "756dc27cc113a939cc0ff91494c6cdeb8a6e2f74",
"body": null,
"is_bot": false,
"headline": "demo: modernize code",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:40:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04031ac0d782d6f5e69fba0d15bfadbb2910efbb",
"body": null,
"is_bot": false,
"headline": "nominatim: use shorthand property for htmlTemplate",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:37:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4edf90934897fddc68c6c5c2f08af3b8af60dacf",
"body": "Fixes `error TS2792: Cannot find module 'undici-types'.`",
"is_bot": false,
"headline": "tsc: --skipLibCheck",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:31:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ba93ff04c1d8f80f56705c4eeee77216bdf225c",
"body": null,
"is_bot": false,
"headline": "GitHub Actions: Node.js 22",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:14:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e1da50bebdfca2114f18ab3670a37c4d62a4844",
"body": null,
"is_bot": false,
"headline": "azure: add to README",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:07:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1183f4b9559451a82f30f4120d2ddea155a0586",
"body": null,
"is_bot": false,
"headline": "azure: add types, add unit test",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:07:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0951831a26c46c354184caba6c3ac5edffd67e4b",
"body": null,
"is_bot": false,
"headline": "azure: update to leaflet-control-geocoder 3.0.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-21T09:07:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf04a88f0a8b0264bda1eff819126b55a583b602",
"body": "https://azure.microsoft.com/en-us/products/azure-maps",
"is_bot": false,
"headline": "Implement Azure Maps Geocoder (#351)",
"author_name": "Kálmán Neszlényi",
"author_login": "kamka427",
"committed_at": "2024-12-21T09:06:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51ed3ea115ddf134619b07617e92a2981292afed",
"body": null,
"is_bot": false,
"headline": "build: fix tsc --target ES2020",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-17T19:57:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04af7ea18d58f90e83c57f22d1555374a5f6c4d4",
"body": null,
"is_bot": false,
"headline": "3.0.1",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-17T19:53:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "503e6fca31e024563a6160e44f6b03cc1a8f2d28",
"body": null,
"is_bot": false,
"headline": "demo: fix geocoder.reverse usage",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-17T19:52:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9bfaa0f3083a9b66c4031a97b9ec21536fa08aa0",
"body": "Fixes #355.",
"is_bot": false,
"headline": "build: fix Control.Geocoder.css",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-17T19:51:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4681e8c09a3b552eb9772ee1ebb97c3dde048946",
"body": null,
"is_bot": false,
"headline": "3.0.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:35:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2232046dc1d77e1a538fed81f819812bae45161f",
"body": null,
"is_bot": false,
"headline": "Add response types to geocoders",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:29:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f7ccf5ae3c62914ef24648315377c2dd835b8ae",
"body": null,
"is_bot": false,
"headline": "Migrate from callbacks to async-await",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:29:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa13fcbca58161e05b1c960029a29b965fdb9557",
"body": null,
"is_bot": false,
"headline": "Migrate to URLSearchParams",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:29:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe751be6994d60f896e08fdd452e97da8acab480",
"body": null,
"is_bot": false,
"headline": "Migrate from XMLHttpRequest to fetch API",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:29:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce88eab7a5457bcec9e918ffe4d08ff42994a686",
"body": null,
"is_bot": false,
"headline": "bing: deprecated notice",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09f6a4eb61a66845560a9e53985e5f338e5f6c59",
"body": null,
"is_bot": false,
"headline": "bing: replace jsonp with AJAX",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "053e5a2de085be5d2ef67d1f29b44a5b04a78060",
"body": null,
"is_bot": false,
"headline": "bing: fix serviceUrl",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b41a7fb907f8dd23962c56ee5b6615ea832a7edd",
"body": null,
"is_bot": false,
"headline": "ESLint: prefer-arrow-callback",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62596084851feb8bb20fcd83082110c43f0d3012",
"body": null,
"is_bot": false,
"headline": "build: remove bower.json file",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5032da9ad8522e1f2e0931337e8a6ee1cab23891",
"body": null,
"is_bot": false,
"headline": "package: npm audit fix",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbcdad618e8b832d4997770c7d37a24702bf3c44",
"body": null,
"is_bot": false,
"headline": "Run Prettier on codebase",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dee11f3cea465700d85793f1cd794b434d57d7a4",
"body": null,
"is_bot": false,
"headline": "package: update devDependencies",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2211a7375836c8521d53d7635599c5c03bc71fd9",
"body": null,
"is_bot": false,
"headline": "package: build types using tsc",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e6ed14399dadb7dac3c751b751f173d77749949",
"body": "https://vite.dev/guide/build.html#library-mode\nhttps://rbardini.com/how-to-build-ts-library-with-vite/",
"is_bot": false,
"headline": "package: Migrate build to vite",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d997740db185ded7535fb2389aac9b7e887ca4fe",
"body": null,
"is_bot": false,
"headline": "tests: Migrate unit tests to Vitest",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:22:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89bb618b910bd68c77905c825e8c9a9763761af0",
"body": null,
"is_bot": false,
"headline": "GitHub Actions: Node.js 20.x",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:22:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "471932c18f2ce57aa5c0e7137419dabd1524e820",
"body": null,
"is_bot": false,
"headline": "npm i --lockfile-version 3 --frozen-lockfile",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2024-12-15T15:22:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be056ab13910c94639338268f0c5b6cdade01083",
"body": "Bing's Maps uri was failing due to a character missing",
"is_bot": false,
"headline": "fix: bingMaps uri (#342)",
"author_name": "duardographics",
"author_login": "duardographics",
"committed_at": "2023-08-20T06:09:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44cd093a3590386de057937ee39e063f2aa14567",
"body": "Ref: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/search",
"is_bot": false,
"headline": "Use a more precise input type (#331)",
"author_name": "Kristjan ESPERANTO",
"author_login": "KristjanESPERANTO",
"committed_at": "2022-12-18T09:13:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04e71a6d76fa8673a7b9c20c287d8241e53305bb",
"body": null,
"is_bot": false,
"headline": "2.4.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2022-02-06T18:50:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec173330ee27c6071ebeff52d09f5f092c3d6b18",
"body": "Fixes #333.",
"is_bot": false,
"headline": "export { Geocoder, geocoder, geocoders }",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2022-02-06T18:49:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7de67e6c54f9fd70e1fb969cf888e1ca8356b246",
"body": null,
"is_bot": false,
"headline": "2.3.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2021-05-25T21:19:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11835188ac2f90c6bbf118e45623d2bbe45e384a",
"body": null,
"is_bot": false,
"headline": "Specify TypeScript declaration file",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2021-05-25T21:17:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8450d43ae56c7c84a988515be1f471b269c17412",
"body": null,
"is_bot": false,
"headline": "Build: update to microbundle 0.13.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2021-05-25T21:15:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34a04886a3d67e9fce6bee99ef1e79e9ab110631",
"body": null,
"is_bot": false,
"headline": "2.2.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2021-03-08T19:27:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ffacc3ee1e029a40c92edac1681f0c6ac291106",
"body": null,
"is_bot": false,
"headline": "TypeScript: add event handler types",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2021-03-08T19:26:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3847008914efa610f6ea1b803666895207331fdd",
"body": null,
"is_bot": false,
"headline": "HERE: adding maxResults option (#317)",
"author_name": "Nick",
"author_login": "Nick59",
"committed_at": "2021-01-29T20:36:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b46ba01c033dbefc328241108ad02c8db3bdbf4",
"body": null,
"is_bot": false,
"headline": "parseFloat: use +(...) shorthand",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-12-10T23:04:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11a9e77a6804da1fa53570da1c46e20e4b0ffd4b",
"body": null,
"is_bot": false,
"headline": "encodeURIComponent is not needed for lat/lon",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-12-10T23:01:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24efc9963234265eafd2ef92932d626cd9903268",
"body": null,
"is_bot": false,
"headline": "2.1.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-12-10T22:51:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67b83628c4d070c4560f307aed4ceeb574c5237f",
"body": null,
"is_bot": false,
"headline": "here: code style, TSDoc",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-12-10T22:51:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c03cee7b56f52cb7a9faa0c4ee99c6773861f671",
"body": null,
"is_bot": false,
"headline": "here: remove reverseGeocodeUrl, use serviceUrl",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-12-10T22:51:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5bdee9c9c3051de1e9a2639435590e47cb9bd8fb",
"body": null,
"is_bot": false,
"headline": "Here maps new api",
"author_name": "Nick",
"author_login": "Nick59",
"committed_at": "2020-12-10T22:51:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4bdb0a4aa95db2b68c55e6e490606c2686455ef5",
"body": null,
"is_bot": false,
"headline": "2.0.1",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-30T21:12:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8793da556e1320a0a495a32a66c07ca93ff1587",
"body": null,
"is_bot": false,
"headline": "Fix L.Evented mixin",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-30T21:09:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6d99422dd0ce4b35d005e4b873046a81be06823",
"body": null,
"is_bot": false,
"headline": "2.0.0",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-28T19:00:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24447d87bb76f1f9f2240b6ede65a575de78d71f",
"body": null,
"is_bot": false,
"headline": "Rename interface NominatimAddress",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-28T11:34:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8a319a779e72e752d19865ef8e26322a36f2c58",
"body": "BREAKING CHANGE: `reverse` now returns bbox in field called `bbox` (previously `bounds`)",
"is_bot": false,
"headline": "Remove ReverseGeocodingResult interface",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-28T11:11:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06bb319558ca89159b1642a7a5ca712f4e25de76",
"body": "Ref: https://typedoc.org/guides/options/#mode",
"is_bot": false,
"headline": "TypeDoc: use file mode (instead of module)",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-28T10:47:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95a892ed74c6cac86d8f63a5b738e08754afd66a",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG.md",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-28T10:04:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ace940ffc30640ac99dbb0d5f42fd6ca28c9ebc",
"body": null,
"is_bot": false,
"headline": "Fix demo for IE11",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-28T09:58:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fc0eff9c49c0da8fc720fd52e94df5adea5923be",
"body": "https://github.com/developit/microbundle",
"is_bot": false,
"headline": "Migrate build to microbundle",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-28T09:58:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c143dd53b10b12eb9f0ab9a5d1d7541e0e5d6ee9",
"body": null,
"is_bot": false,
"headline": "GitHub Actions: deploy TypeDoc",
"author_name": "Simon Legner",
"author_login": "simon04",
"committed_at": "2020-11-27T23:41:55Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 14,
"commits_last_year": 22,
"latest_release_at": "2026-07-18T18:09:51Z",
"latest_release_tag": "4.0.0",
"releases_from_tags": false,
"days_since_last_push": 5,
"active_weeks_last_year": 4,
"days_since_latest_release": 5,
"mean_days_between_releases": 190.6
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "leaflet-control-geocoder",
"exists": true,
"license": "BSD-2-Clause",
"keywords": [
"leaflet",
"geocoder",
"locations",
"openstreetmap",
"nominatim",
"bing",
"bingmaps",
"googlemaps",
"google-maps",
"mapbox",
"mapquest",
"opencage",
"what3words",
"photon",
"mapzen",
"pelias",
"here",
"neutrino",
"pluscodes",
"open location code"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/leaflet-control-geocoder",
"is_deprecated": false,
"latest_version": "4.0.0",
"repository_url": "https://github.com/perliedman/leaflet-control-geocoder",
"versions_count": 48,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 2,
"monthly_downloads": 112503,
"first_published_at": "2013-10-08T19:26:20.426000Z",
"latest_published_at": "2026-07-18T18:08:56.399000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 226,
"stars": 618,
"watchers": 20,
"fork_history": {
"days": [
{
"date": "2013-11-29",
"count": 1
},
{
"date": "2014-02-23",
"count": 1
},
{
"date": "2014-03-07",
"count": 1
},
{
"date": "2014-03-12",
"count": 1
},
{
"date": "2014-03-17",
"count": 1
},
{
"date": "2014-04-03",
"count": 1
},
{
"date": "2014-04-18",
"count": 1
},
{
"date": "2014-05-08",
"count": 1
},
{
"date": "2014-07-08",
"count": 1
},
{
"date": "2014-09-05",
"count": 1
},
{
"date": "2014-09-24",
"count": 1
},
{
"date": "2014-09-26",
"count": 2
},
{
"date": "2014-10-24",
"count": 1
},
{
"date": "2014-10-28",
"count": 1
},
{
"date": "2014-11-05",
"count": 1
},
{
"date": "2014-11-23",
"count": 1
},
{
"date": "2014-12-26",
"count": 1
},
{
"date": "2015-01-09",
"count": 1
},
{
"date": "2015-01-15",
"count": 1
},
{
"date": "2015-02-22",
"count": 1
},
{
"date": "2015-03-01",
"count": 1
},
{
"date": "2015-03-03",
"count": 1
},
{
"date": "2015-03-13",
"count": 2
},
{
"date": "2015-03-17",
"count": 1
},
{
"date": "2015-03-18",
"count": 1
},
{
"date": "2015-03-30",
"count": 1
},
{
"date": "2015-04-24",
"count": 1
},
{
"date": "2015-05-01",
"count": 1
},
{
"date": "2015-05-06",
"count": 1
},
{
"date": "2015-05-21",
"count": 1
},
{
"date": "2015-06-30",
"count": 1
},
{
"date": "2015-07-02",
"count": 1
},
{
"date": "2015-07-04",
"count": 1
},
{
"date": "2015-08-17",
"count": 1
},
{
"date": "2015-08-18",
"count": 1
},
{
"date": "2015-08-25",
"count": 1
},
{
"date": "2015-09-01",
"count": 1
},
{
"date": "2015-09-04",
"count": 1
},
{
"date": "2015-09-07",
"count": 1
},
{
"date": "2015-09-27",
"count": 1
},
{
"date": "2015-09-30",
"count": 1
},
{
"date": "2015-10-16",
"count": 1
},
{
"date": "2015-10-22",
"count": 1
},
{
"date": "2015-10-27",
"count": 1
},
{
"date": "2015-11-13",
"count": 1
},
{
"date": "2015-11-23",
"count": 1
},
{
"date": "2015-12-01",
"count": 1
},
{
"date": "2015-12-09",
"count": 1
},
{
"date": "2015-12-15",
"count": 1
},
{
"date": "2016-01-06",
"count": 1
},
{
"date": "2016-01-26",
"count": 1
},
{
"date": "2016-02-09",
"count": 1
},
{
"date": "2016-02-16",
"count": 1
},
{
"date": "2016-03-08",
"count": 1
},
{
"date": "2016-03-15",
"count": 1
},
{
"date": "2016-03-29",
"count": 1
},
{
"date": "2016-04-18",
"count": 1
},
{
"date": "2016-05-20",
"count": 1
},
{
"date": "2016-05-25",
"count": 1
},
{
"date": "2016-06-13",
"count": 1
},
{
"date": "2016-10-15",
"count": 1
},
{
"date": "2016-10-26",
"count": 1
},
{
"date": "2016-11-07",
"count": 1
},
{
"date": "2017-01-08",
"count": 1
},
{
"date": "2017-01-16",
"count": 1
},
{
"date": "2017-02-14",
"count": 1
},
{
"date": "2017-02-21",
"count": 1
},
{
"date": "2017-02-27",
"count": 1
},
{
"date": "2017-03-10",
"count": 1
},
{
"date": "2017-04-26",
"count": 1
},
{
"date": "2017-04-27",
"count": 1
},
{
"date": "2017-05-04",
"count": 1
},
{
"date": "2017-05-10",
"count": 1
},
{
"date": "2017-05-13",
"count": 1
},
{
"date": "2017-05-17",
"count": 1
},
{
"date": "2017-05-18",
"count": 1
},
{
"date": "2017-05-19",
"count": 1
},
{
"date": "2017-05-23",
"count": 1
},
{
"date": "2017-05-30",
"count": 1
},
{
"date": "2017-08-29",
"count": 1
},
{
"date": "2017-09-18",
"count": 1
},
{
"date": "2017-11-02",
"count": 1
},
{
"date": "2017-11-03",
"count": 1
},
{
"date": "2017-11-12",
"count": 1
},
{
"date": "2017-11-13",
"count": 1
},
{
"date": "2017-11-28",
"count": 1
},
{
"date": "2017-12-06",
"count": 1
},
{
"date": "2018-01-01",
"count": 1
},
{
"date": "2018-01-12",
"count": 1
},
{
"date": "2018-01-18",
"count": 1
},
{
"date": "2018-01-24",
"count": 1
},
{
"date": "2018-02-06",
"count": 1
},
{
"date": "2018-03-03",
"count": 1
},
{
"date": "2018-03-05",
"count": 1
},
{
"date": "2018-03-11",
"count": 1
},
{
"date": "2018-03-16",
"count": 1
},
{
"date": "2018-03-31",
"count": 1
},
{
"date": "2018-04-06",
"count": 1
},
{
"date": "2018-05-24",
"count": 1
},
{
"date": "2018-06-05",
"count": 1
},
{
"date": "2018-07-10",
"count": 1
},
{
"date": "2018-07-11",
"count": 1
},
{
"date": "2018-07-19",
"count": 1
},
{
"date": "2018-08-09",
"count": 1
},
{
"date": "2018-08-29",
"count": 1
},
{
"date": "2018-09-04",
"count": 1
},
{
"date": "2018-11-06",
"count": 1
},
{
"date": "2018-11-17",
"count": 1
},
{
"date": "2018-11-19",
"count": 1
},
{
"date": "2018-12-14",
"count": 1
},
{
"date": "2019-01-11",
"count": 1
},
{
"date": "2019-01-31",
"count": 1
},
{
"date": "2019-02-06",
"count": 1
},
{
"date": "2019-02-07",
"count": 1
},
{
"date": "2019-02-27",
"count": 1
},
{
"date": "2019-03-21",
"count": 1
},
{
"date": "2019-05-15",
"count": 1
},
{
"date": "2019-06-03",
"count": 1
},
{
"date": "2019-06-12",
"count": 1
},
{
"date": "2019-07-11",
"count": 1
},
{
"date": "2019-07-14",
"count": 1
},
{
"date": "2019-08-06",
"count": 1
},
{
"date": "2019-08-09",
"count": 1
},
{
"date": "2019-08-13",
"count": 1
},
{
"date": "2019-09-12",
"count": 1
},
{
"date": "2019-09-28",
"count": 1
},
{
"date": "2019-10-08",
"count": 1
},
{
"date": "2019-10-11",
"count": 1
},
{
"date": "2019-10-13",
"count": 1
},
{
"date": "2019-11-02",
"count": 1
},
{
"date": "2019-11-07",
"count": 1
},
{
"date": "2019-12-06",
"count": 1
},
{
"date": "2019-12-17",
"count": 2
},
{
"date": "2019-12-22",
"count": 1
},
{
"date": "2020-01-16",
"count": 1
},
{
"date": "2020-01-20",
"count": 1
},
{
"date": "2020-01-30",
"count": 1
},
{
"date": "2020-02-13",
"count": 1
},
{
"date": "2020-02-17",
"count": 1
},
{
"date": "2020-02-19",
"count": 1
},
{
"date": "2020-02-29",
"count": 1
},
{
"date": "2020-03-05",
"count": 1
},
{
"date": "2020-03-23",
"count": 1
},
{
"date": "2020-04-03",
"count": 1
},
{
"date": "2020-04-07",
"count": 1
},
{
"date": "2020-05-11",
"count": 1
},
{
"date": "2020-05-26",
"count": 1
},
{
"date": "2020-07-10",
"count": 2
},
{
"date": "2020-09-11",
"count": 1
},
{
"date": "2020-09-29",
"count": 1
},
{
"date": "2020-10-11",
"count": 1
},
{
"date": "2020-10-18",
"count": 1
},
{
"date": "2020-10-26",
"count": 1
},
{
"date": "2020-11-20",
"count": 1
},
{
"date": "2020-11-28",
"count": 1
},
{
"date": "2021-02-19",
"count": 1
},
{
"date": "2021-03-05",
"count": 1
},
{
"date": "2021-03-08",
"count": 1
},
{
"date": "2021-03-17",
"count": 1
},
{
"date": "2021-04-14",
"count": 1
},
{
"date": "2021-05-17",
"count": 1
},
{
"date": "2021-05-31",
"count": 1
},
{
"date": "2021-06-14",
"count": 1
},
{
"date": "2021-08-02",
"count": 1
},
{
"date": "2021-08-18",
"count": 1
},
{
"date": "2021-08-25",
"count": 1
},
{
"date": "2021-08-31",
"count": 1
},
{
"date": "2021-09-08",
"count": 1
},
{
"date": "2021-09-20",
"count": 1
},
{
"date": "2021-10-07",
"count": 1
},
{
"date": "2021-11-01",
"count": 1
},
{
"date": "2021-11-03",
"count": 1
},
{
"date": "2022-05-04",
"count": 1
},
{
"date": "2022-05-14",
"count": 1
},
{
"date": "2022-05-21",
"count": 1
},
{
"date": "2022-05-31",
"count": 1
},
{
"date": "2022-06-12",
"count": 1
},
{
"date": "2022-09-02",
"count": 1
},
{
"date": "2022-09-05",
"count": 1
},
{
"date": "2022-10-26",
"count": 1
},
{
"date": "2022-12-18",
"count": 1
},
{
"date": "2023-01-11",
"count": 1
},
{
"date": "2023-02-14",
"count": 1
},
{
"date": "2023-02-16",
"count": 1
},
{
"date": "2023-05-07",
"count": 1
},
{
"date": "2023-06-26",
"count": 1
},
{
"date": "2023-06-30",
"count": 1
},
{
"date": "2023-07-10",
"count": 1
},
{
"date": "2023-08-14",
"count": 1
},
{
"date": "2023-09-05",
"count": 1
},
{
"date": "2023-11-16",
"count": 1
},
{
"date": "2023-11-24",
"count": 1
},
{
"date": "2024-01-20",
"count": 1
},
{
"date": "2024-02-22",
"count": 1
},
{
"date": "2024-05-16",
"count": 1
},
{
"date": "2024-07-21",
"count": 1
},
{
"date": "2024-09-04",
"count": 1
},
{
"date": "2024-09-22",
"count": 1
},
{
"date": "2024-11-01",
"count": 1
},
{
"date": "2024-12-09",
"count": 1
},
{
"date": "2024-12-10",
"count": 1
},
{
"date": "2025-03-01",
"count": 1
},
{
"date": "2025-03-09",
"count": 1
},
{
"date": "2025-03-20",
"count": 1
},
{
"date": "2025-03-28",
"count": 1
},
{
"date": "2025-05-26",
"count": 1
},
{
"date": "2025-05-29",
"count": 1
},
{
"date": "2025-09-27",
"count": 1
},
{
"date": "2025-10-28",
"count": 1
},
{
"date": "2026-01-25",
"count": 1
},
{
"date": "2026-03-08",
"count": 1
},
{
"date": "2026-06-18",
"count": 1
}
],
"complete": true,
"collected": 216,
"total_forks": 226
},
"star_history": null,
"open_issues_and_prs": 42
},
"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": [
"tsconfig.json"
],
"toolchain_manifests": [],
"largest_source_bytes": 15904,
"source_files_sampled": 41,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"demo-esbuild/package.json",
"demo-rollup/package.json",
"demo-webpack/package.json",
"package.json"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 1,
"malicious_count": 0,
"assessed_package": "npm:leaflet-control-geocoder@4.0.0",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [
{
"name": "leaflet",
"manifest": "demo-esbuild/package.json",
"ecosystem": "npm",
"version_constraint": "^1.5.1"
},
{
"name": "leaflet-control-geocoder",
"manifest": "demo-esbuild/package.json",
"ecosystem": "npm",
"version_constraint": "^1.8.0"
},
{
"name": "leaflet",
"manifest": "demo-rollup/package.json",
"ecosystem": "npm",
"version_constraint": "^1.5.1"
},
{
"name": "leaflet-control-geocoder",
"manifest": "demo-rollup/package.json",
"ecosystem": "npm",
"version_constraint": "^1.8.0"
},
{
"name": "leaflet",
"manifest": "demo-webpack/package.json",
"ecosystem": "npm",
"version_constraint": "^1.5.1"
},
{
"name": "leaflet-control-geocoder",
"manifest": "demo-webpack/package.json",
"ecosystem": "npm",
"version_constraint": "^1.8.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "leaflet",
"direct": true,
"version": "1.9.4",
"ecosystem": "npm"
},
{
"name": "leaflet",
"direct": true,
"version": "^1.5.1",
"ecosystem": "npm"
},
{
"name": "leaflet-control-geocoder",
"direct": true,
"version": "^1.8.0",
"ecosystem": "npm"
},
{
"name": "@babel/code-frame",
"direct": false,
"version": "7.27.1",
"ecosystem": "npm"
},
{
"name": "@babel/helper-validator-identifier",
"direct": false,
"version": "7.27.1",
"ecosystem": "npm"
},
{
"name": "@babel/runtime",
"direct": false,
"version": "7.29.7",
"ecosystem": "npm"
},
{
"name": "@blazediff/core",
"direct": false,
"version": "1.9.1",
"ecosystem": "npm"
},
{
"name": "@conventional-changelog/git-client",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "@emnapi/core",
"direct": false,
"version": "1.11.1",
"ecosystem": "npm"
},
{
"name": "@emnapi/runtime",
"direct": false,
"version": "1.11.1",
"ecosystem": "npm"
},
{
"name": "@emnapi/wasi-threads",
"direct": false,
"version": "1.2.2",
"ecosystem": "npm"
},
{
"name": "@gerrit0/mini-shiki",
"direct": false,
"version": "3.9.2",
"ecosystem": "npm"
},
{
"name": "@hutson/parse-repository-url",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "@jridgewell/sourcemap-codec",
"direct": false,
"version": "1.5.5",
"ecosystem": "npm"
},
{
"name": "@napi-rs/wasm-runtime",
"direct": false,
"version": "1.1.6",
"ecosystem": "npm"
},
{
"name": "@oxc-project/runtime",
"direct": false,
"version": "0.138.0",
"ecosystem": "npm"
},
{
"name": "@oxc-project/types",
"direct": false,
"version": "0.138.0",
"ecosystem": "npm"
},
{
"name": "@oxc-project/types",
"direct": false,
"version": "0.139.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-android-arm-eabi",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-android-arm64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-darwin-arm64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-darwin-x64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-freebsd-x64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm-gnueabihf",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm-musleabihf",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-arm64-musl",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-ppc64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-riscv64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-riscv64-musl",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-s390x-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-x64-gnu",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-linux-x64-musl",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-openharmony-arm64",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-win32-arm64-msvc",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-win32-ia32-msvc",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxfmt/binding-win32-x64-msvc",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "@oxlint-tsgolint/darwin-arm64",
"direct": false,
"version": "0.24.0",
"ecosystem": "npm"
},
{
"name": "@oxlint-tsgolint/darwin-x64",
"direct": false,
"version": "0.24.0",
"ecosystem": "npm"
},
{
"name": "@oxlint-tsgolint/linux-arm64",
"direct": false,
"version": "0.24.0",
"ecosystem": "npm"
},
{
"name": "@oxlint-tsgolint/linux-x64",
"direct": false,
"version": "0.24.0",
"ecosystem": "npm"
},
{
"name": "@oxlint-tsgolint/win32-arm64",
"direct": false,
"version": "0.24.0",
"ecosystem": "npm"
},
{
"name": "@oxlint-tsgolint/win32-x64",
"direct": false,
"version": "0.24.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-android-arm-eabi",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-android-arm64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-darwin-arm64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-darwin-x64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-freebsd-x64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm-gnueabihf",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm-musleabihf",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-arm64-musl",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-ppc64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-riscv64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-riscv64-musl",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-s390x-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-x64-gnu",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-linux-x64-musl",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-openharmony-arm64",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-win32-arm64-msvc",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-win32-ia32-msvc",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/binding-win32-x64-msvc",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "@oxlint/plugins",
"direct": false,
"version": "1.68.0",
"ecosystem": "npm"
},
{
"name": "@polka/url",
"direct": false,
"version": "1.0.0-next.29",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-android-arm64",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-darwin-arm64",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-darwin-x64",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-freebsd-x64",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-arm-gnueabihf",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-arm64-gnu",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-arm64-musl",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-ppc64-gnu",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-s390x-gnu",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-x64-gnu",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-linux-x64-musl",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-openharmony-arm64",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-wasm32-wasi",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-win32-arm64-msvc",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/binding-win32-x64-msvc",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "@rolldown/pluginutils",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "@shikijs/engine-oniguruma",
"direct": false,
"version": "3.9.2",
"ecosystem": "npm"
},
{
"name": "@shikijs/langs",
"direct": false,
"version": "3.9.2",
"ecosystem": "npm"
},
{
"name": "@shikijs/themes",
"direct": false,
"version": "3.9.2",
"ecosystem": "npm"
},
{
"name": "@shikijs/types",
"direct": false,
"version": "3.9.2",
"ecosystem": "npm"
},
{
"name": "@shikijs/vscode-textmate",
"direct": false,
"version": "10.0.2",
"ecosystem": "npm"
},
{
"name": "@standard-schema/spec",
"direct": false,
"version": "1.1.0",
"ecosystem": "npm"
},
{
"name": "@testing-library/dom",
"direct": false,
"version": "10.4.1",
"ecosystem": "npm"
},
{
"name": "@testing-library/user-event",
"direct": false,
"version": "14.6.1",
"ecosystem": "npm"
},
{
"name": "@tybys/wasm-util",
"direct": false,
"version": "0.10.3",
"ecosystem": "npm"
},
{
"name": "@types/aria-query",
"direct": false,
"version": "5.0.4",
"ecosystem": "npm"
},
{
"name": "@types/chai",
"direct": false,
"version": "5.2.3",
"ecosystem": "npm"
},
{
"name": "@types/deep-eql",
"direct": false,
"version": "4.0.2",
"ecosystem": "npm"
},
{
"name": "@types/estree",
"direct": false,
"version": "1.0.8",
"ecosystem": "npm"
},
{
"name": "@types/geojson",
"direct": false,
"version": "7946.0.16",
"ecosystem": "npm"
},
{
"name": "@types/hast",
"direct": false,
"version": "3.0.4",
"ecosystem": "npm"
},
{
"name": "@types/leaflet",
"direct": false,
"version": "1.9.20",
"ecosystem": "npm"
},
{
"name": "@types/node",
"direct": false,
"version": "20.19.10",
"ecosystem": "npm"
},
{
"name": "@types/normalize-package-data",
"direct": false,
"version": "2.4.4",
"ecosystem": "npm"
},
{
"name": "@types/semver",
"direct": false,
"version": "7.7.0",
"ecosystem": "npm"
},
{
"name": "@types/unist",
"direct": false,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "@types/whatwg-mimetype",
"direct": false,
"version": "3.0.2",
"ecosystem": "npm"
},
{
"name": "@types/ws",
"direct": false,
"version": "8.18.1",
"ecosystem": "npm"
},
{
"name": "@vitest/browser",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/browser-preview",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/expect",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/mocker",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/pretty-format",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/runner",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/snapshot",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/spy",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@vitest/utils",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-core",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-darwin-arm64",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-darwin-x64",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-linux-arm64-gnu",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-linux-arm64-musl",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-linux-x64-gnu",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-linux-x64-musl",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-win32-arm64-msvc",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "@voidzero-dev/vite-plus-win32-x64-msvc",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "add-stream",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "ansi-regex",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "ansi-styles",
"direct": false,
"version": "5.2.0",
"ecosystem": "npm"
},
{
"name": "argparse",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "aria-query",
"direct": false,
"version": "5.3.0",
"ecosystem": "npm"
},
{
"name": "array-ify",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "assertion-error",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "balanced-match",
"direct": false,
"version": "1.0.2",
"ecosystem": "npm"
},
{
"name": "brace-expansion",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "buffer-image-size",
"direct": false,
"version": "0.6.4",
"ecosystem": "npm"
},
{
"name": "chai",
"direct": false,
"version": "6.2.2",
"ecosystem": "npm"
},
{
"name": "compare-func",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog",
"direct": false,
"version": "6.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-angular",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-atom",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-cli",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-codemirror",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-conventionalcommits",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-core",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-ember",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-eslint",
"direct": false,
"version": "6.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-express",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-jquery",
"direct": false,
"version": "6.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-jshint",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-preset-loader",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-changelog-writer",
"direct": false,
"version": "8.2.0",
"ecosystem": "npm"
},
{
"name": "conventional-commits-filter",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "conventional-commits-parser",
"direct": false,
"version": "6.2.0",
"ecosystem": "npm"
},
{
"name": "convert-source-map",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "css-loader",
"direct": false,
"version": "^5.0.0",
"ecosystem": "npm"
},
{
"name": "dequal",
"direct": false,
"version": "2.0.3",
"ecosystem": "npm"
},
{
"name": "detect-libc",
"direct": false,
"version": "2.1.2",
"ecosystem": "npm"
},
{
"name": "dom-accessibility-api",
"direct": false,
"version": "0.5.16",
"ecosystem": "npm"
},
{
"name": "dot-prop",
"direct": false,
"version": "5.3.0",
"ecosystem": "npm"
},
{
"name": "entities",
"direct": false,
"version": "4.5.0",
"ecosystem": "npm"
},
{
"name": "entities",
"direct": false,
"version": "7.0.1",
"ecosystem": "npm"
},
{
"name": "es-module-lexer",
"direct": false,
"version": "2.3.1",
"ecosystem": "npm"
},
{
"name": "esbuild",
"direct": false,
"version": "^0.8.0",
"ecosystem": "npm"
},
{
"name": "estree-walker",
"direct": false,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "expect-type",
"direct": false,
"version": "1.4.0",
"ecosystem": "npm"
},
{
"name": "fdir",
"direct": false,
"version": "6.5.0",
"ecosystem": "npm"
},
{
"name": "file-loader",
"direct": false,
"version": "^6.2.0",
"ecosystem": "npm"
},
{
"name": "find-up-simple",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "fsevents",
"direct": false,
"version": "2.3.3",
"ecosystem": "npm"
},
{
"name": "git-raw-commits",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "git-semver-tags",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "handlebars",
"direct": false,
"version": "4.7.8",
"ecosystem": "npm"
},
{
"name": "happy-dom",
"direct": false,
"version": "20.11.0",
"ecosystem": "npm"
},
{
"name": "hosted-git-info",
"direct": false,
"version": "7.0.2",
"ecosystem": "npm"
},
{
"name": "index-to-position",
"direct": false,
"version": "1.1.0",
"ecosystem": "npm"
},
{
"name": "is-obj",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "js-tokens",
"direct": false,
"version": "4.0.0",
"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": "linkify-it",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "lru-cache",
"direct": false,
"version": "10.4.3",
"ecosystem": "npm"
},
{
"name": "lunr",
"direct": false,
"version": "2.3.9",
"ecosystem": "npm"
},
{
"name": "lz-string",
"direct": false,
"version": "1.5.0",
"ecosystem": "npm"
},
{
"name": "magic-string",
"direct": false,
"version": "0.30.21",
"ecosystem": "npm"
},
{
"name": "markdown-it",
"direct": false,
"version": "14.1.0",
"ecosystem": "npm"
},
{
"name": "mdurl",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "meow",
"direct": false,
"version": "13.2.0",
"ecosystem": "npm"
},
{
"name": "mini-css-extract-plugin",
"direct": false,
"version": "^1.2.1",
"ecosystem": "npm"
},
{
"name": "minimatch",
"direct": false,
"version": "9.0.5",
"ecosystem": "npm"
},
{
"name": "minimist",
"direct": false,
"version": "1.2.8",
"ecosystem": "npm"
},
{
"name": "mrmime",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "nanoid",
"direct": false,
"version": "3.3.16",
"ecosystem": "npm"
},
{
"name": "neo-async",
"direct": false,
"version": "2.6.2",
"ecosystem": "npm"
},
{
"name": "normalize-package-data",
"direct": false,
"version": "6.0.2",
"ecosystem": "npm"
},
{
"name": "obug",
"direct": false,
"version": "2.1.4",
"ecosystem": "npm"
},
{
"name": "open-location-code",
"direct": false,
"version": "1.0.3",
"ecosystem": "npm"
},
{
"name": "oxfmt",
"direct": false,
"version": "0.57.0",
"ecosystem": "npm"
},
{
"name": "oxlint",
"direct": false,
"version": "1.72.0",
"ecosystem": "npm"
},
{
"name": "oxlint-tsgolint",
"direct": false,
"version": "0.24.0",
"ecosystem": "npm"
},
{
"name": "parse-json",
"direct": false,
"version": "8.3.0",
"ecosystem": "npm"
},
{
"name": "pathe",
"direct": false,
"version": "2.0.3",
"ecosystem": "npm"
},
{
"name": "picocolors",
"direct": false,
"version": "1.1.1",
"ecosystem": "npm"
},
{
"name": "picomatch",
"direct": false,
"version": "4.0.5",
"ecosystem": "npm"
},
{
"name": "pngjs",
"direct": false,
"version": "7.0.0",
"ecosystem": "npm"
},
{
"name": "postcss",
"direct": false,
"version": "8.5.19",
"ecosystem": "npm"
},
{
"name": "pretty-format",
"direct": false,
"version": "27.5.1",
"ecosystem": "npm"
},
{
"name": "punycode.js",
"direct": false,
"version": "2.3.1",
"ecosystem": "npm"
},
{
"name": "react-is",
"direct": false,
"version": "17.0.2",
"ecosystem": "npm"
},
{
"name": "read-package-up",
"direct": false,
"version": "11.0.0",
"ecosystem": "npm"
},
{
"name": "read-pkg",
"direct": false,
"version": "9.0.1",
"ecosystem": "npm"
},
{
"name": "rolldown",
"direct": false,
"version": "1.1.5",
"ecosystem": "npm"
},
{
"name": "rollup",
"direct": false,
"version": "^1.14.4",
"ecosystem": "npm"
},
{
"name": "rollup-plugin-commonjs",
"direct": false,
"version": "^10.0.0",
"ecosystem": "npm"
},
{
"name": "rollup-plugin-node-resolve",
"direct": false,
"version": "^5.0.1",
"ecosystem": "npm"
},
{
"name": "semver",
"direct": false,
"version": "7.7.2",
"ecosystem": "npm"
},
{
"name": "siginfo",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "sirv",
"direct": false,
"version": "3.0.2",
"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": "spdx-correct",
"direct": false,
"version": "3.2.0",
"ecosystem": "npm"
},
{
"name": "spdx-exceptions",
"direct": false,
"version": "2.5.0",
"ecosystem": "npm"
},
{
"name": "spdx-expression-parse",
"direct": false,
"version": "3.0.1",
"ecosystem": "npm"
},
{
"name": "spdx-license-ids",
"direct": false,
"version": "3.0.22",
"ecosystem": "npm"
},
{
"name": "stackback",
"direct": false,
"version": "0.0.2",
"ecosystem": "npm"
},
{
"name": "std-env",
"direct": false,
"version": "4.2.0",
"ecosystem": "npm"
},
{
"name": "temp-dir",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "tempfile",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "tinybench",
"direct": false,
"version": "2.9.0",
"ecosystem": "npm"
},
{
"name": "tinyexec",
"direct": false,
"version": "1.2.4",
"ecosystem": "npm"
},
{
"name": "tinyglobby",
"direct": false,
"version": "0.2.17",
"ecosystem": "npm"
},
{
"name": "tinypool",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "tinyrainbow",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "totalist",
"direct": false,
"version": "3.0.1",
"ecosystem": "npm"
},
{
"name": "tslib",
"direct": false,
"version": "2.8.1",
"ecosystem": "npm"
},
{
"name": "type-fest",
"direct": false,
"version": "4.41.0",
"ecosystem": "npm"
},
{
"name": "typedoc",
"direct": false,
"version": "0.28.10",
"ecosystem": "npm"
},
{
"name": "typescript",
"direct": false,
"version": "5.9.2",
"ecosystem": "npm"
},
{
"name": "uc.micro",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "uglify-js",
"direct": false,
"version": "3.19.3",
"ecosystem": "npm"
},
{
"name": "undici-types",
"direct": false,
"version": "6.21.0",
"ecosystem": "npm"
},
{
"name": "unicorn-magic",
"direct": false,
"version": "0.1.0",
"ecosystem": "npm"
},
{
"name": "validate-npm-package-license",
"direct": false,
"version": "3.0.4",
"ecosystem": "npm"
},
{
"name": "vite",
"direct": false,
"version": "8.1.5",
"ecosystem": "npm"
},
{
"name": "vite-plus",
"direct": false,
"version": "0.2.4",
"ecosystem": "npm"
},
{
"name": "vitest",
"direct": false,
"version": "4.1.10",
"ecosystem": "npm"
},
{
"name": "webpack",
"direct": false,
"version": "^5.3.0",
"ecosystem": "npm"
},
{
"name": "webpack-cli",
"direct": false,
"version": "^4.1.0",
"ecosystem": "npm"
},
{
"name": "whatwg-mimetype",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "why-is-node-running",
"direct": false,
"version": "2.3.0",
"ecosystem": "npm"
},
{
"name": "wordwrap",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "ws",
"direct": false,
"version": "8.21.1",
"ecosystem": "npm"
},
{
"name": "yaml",
"direct": false,
"version": "2.8.1",
"ecosystem": "npm"
}
],
"collected": true,
"truncated": false,
"total_count": 257,
"direct_count": 3,
"indirect_count": 254
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 95,
"open_issues": 40,
"closed_ratio": 0.831,
"closed_issues": 197,
"closed_unmerged_prs": 36
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "simon04",
"commits": 217,
"avatar_url": "https://avatars.githubusercontent.com/u/782446?v=4"
},
{
"type": "User",
"login": "perliedman",
"commits": 123,
"avatar_url": "https://avatars.githubusercontent.com/u/1246614?v=4"
},
{
"type": "User",
"login": "Cyrille37",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/368965?v=4"
},
{
"type": "User",
"login": "keul",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/284924?v=4"
},
{
"type": "User",
"login": "Nick59",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/661550?v=4"
},
{
"type": "User",
"login": "tomhughes",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/147741?v=4"
},
{
"type": "User",
"login": "gregallensworth",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/3117633?v=4"
},
{
"type": "User",
"login": "KristjanESPERANTO",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/35647502?v=4"
},
{
"type": "User",
"login": "LiaanM",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/23698341?v=4"
},
{
"type": "User",
"login": "sa3m",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/301632?v=4"
}
],
"contributors_sampled": 49,
"top_contributor_share": 0.528
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"compressed-size.yml",
"nodejs.yml"
],
"has_docs_dir": false,
"linter_configs": [
".eslintrc.json"
],
"has_editorconfig": true,
"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": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 0,
"reason": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"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 1/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 9 contributing companies or organizations",
"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": 0,
"reason": "no 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": 9,
"reason": "11 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 9",
"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": 3,
"reason": "dependency not pinned by hash detected -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "19 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "fcb11352f47e31974a46bbd7d0849b0376ad836f",
"ran_at": "2026-07-24T04:06:22Z",
"aggregate_score": 3.1,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-18T18:09:41Z",
"oldest_open_prs": [
{
"number": 189,
"created_at": "2018-01-08T21:02:44Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 369,
"created_at": "2025-10-28T23:27:17Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2025-08-12T16:42:57Z",
"ci_last_conclusion": "FAILURE",
"oldest_open_issues": [
{
"number": 43,
"created_at": "2014-12-03T13:58:30Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 48,
"created_at": "2015-02-03T17:56:51Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 59,
"created_at": "2015-04-23T16:46:25Z",
"last_comment_at": "2018-03-04T15:50:01Z",
"last_comment_author": "marcus-at-localhost"
},
{
"number": 72,
"created_at": "2015-06-13T09:04:05Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 79,
"created_at": "2015-07-08T19:45:23Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 88,
"created_at": "2015-08-24T21:31:29Z",
"last_comment_at": "2015-08-25T13:28:42Z",
"last_comment_author": "amyleew"
},
{
"number": 215,
"created_at": "2018-08-29T13:37:11Z",
"last_comment_at": "2018-08-31T13:15:53Z",
"last_comment_author": "shazahm1"
},
{
"number": 220,
"created_at": "2018-10-05T17:39:15Z",
"last_comment_at": "2018-11-21T19:33:02Z",
"last_comment_author": "perliedman"
},
{
"number": 228,
"created_at": "2019-01-18T16:42:08Z",
"last_comment_at": "2020-02-26T01:34:06Z",
"last_comment_author": "burritojustice"
},
{
"number": 231,
"created_at": "2019-02-12T13:03:33Z",
"last_comment_at": "2019-08-06T22:58:20Z",
"last_comment_author": null
},
{
"number": 267,
"created_at": "2019-10-20T19:49:28Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 277,
"created_at": "2020-03-26T23:36:16Z",
"last_comment_at": "2020-03-28T07:42:07Z",
"last_comment_author": "simon04"
},
{
"number": 284,
"created_at": "2020-05-18T04:00:29Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 289,
"created_at": "2020-09-10T13:31:05Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 290,
"created_at": "2020-09-19T12:49:54Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 292,
"created_at": "2020-10-06T07:10:04Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 311,
"created_at": "2020-11-28T19:35:38Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 318,
"created_at": "2021-02-04T17:09:36Z",
"last_comment_at": "2021-02-16T22:32:10Z",
"last_comment_author": "simon04"
},
{
"number": 321,
"created_at": "2021-03-08T15:12:04Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 324,
"created_at": "2021-03-10T16:06:06Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/perliedman/leaflet-control-geocoder",
"host": "github.com",
"name": "leaflet-control-geocoder",
"owner": "perliedman"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"security": 45,
"vitality": 66,
"community": 67,
"governance": 66,
"engineering": 68
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 66,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"commits_last_year": 22,
"human_commit_share": 1,
"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": "22 commits in the last year",
"points": 12.2,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 22
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "11 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 9",
"points": 9,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 76,
"inputs": {
"releases_count": 14,
"latest_release_tag": "4.0.0",
"releases_from_tags": false,
"days_since_latest_release": 5,
"mean_days_between_releases": 190.6
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "14 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 14
}
}
],
"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 ~190.6 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 190.6
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"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": 67,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "good",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"forks": 226,
"stars": 618,
"watchers": 20,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "618 stars",
"points": 45.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 618
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "226 forks",
"points": 19.6,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 226
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "20 watchers",
"points": 7.1,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 20
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"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 (BSD-2-Clause)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "BSD-2-Clause"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"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": 84,
"inputs": {
"packages": [
"leaflet-control-geocoder"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 112503
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "112,503 downloads/month across npm",
"points": 67.3,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 112503,
"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": 66,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 43,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 49,
"top_contributor_share": 0.528
},
"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 53% of commits",
"points": 10.6,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 53
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "49 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 49
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 9 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"merged_prs": 95,
"open_issues": 40,
"closed_issues": 197,
"issue_closed_ratio": 0.831,
"closed_unmerged_prs": 36
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "83% of issues closed",
"points": 38.8,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 83
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "95/131 decided PRs merged",
"points": 27.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 95,
"decided": 131
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"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": 68,
"inputs": {
"followers": 571,
"owner_type": "User",
"is_verified": null,
"owner_login": "perliedman",
"public_repos": 110,
"account_age_days": 5342
},
"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": "571 followers of perliedman",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 571,
"login": "perliedman"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "110 public repos, account ~14 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 110
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"leaflet-control-geocoder"
],
"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": "48 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 48
}
}
],
"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": "moderate",
"name": "Engineering Quality",
"value": 68,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": true,
"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": ".eslintrc.json",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".eslintrc.json"
}
}
],
"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": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": "http://www.liedman.net/leaflet-control-geocoder/",
"has_readme": true,
"has_docs_dir": false,
"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": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": "http://www.liedman.net/leaflet-control-geocoder/",
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 45,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 31,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 3.1
},
"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 not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"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 1/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 9 contributing companies or organizations",
"points": 2.5,
"status": "met",
"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": "no update tool detected",
"points": 0,
"status": "missed",
"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": "11 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 9",
"points": 6.8,
"status": "partial",
"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 3",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "19 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): No advisories left outstanding. Remaining weights renormalized. Matched the npm:leaflet-control-geocoder@4.0.0 runtime dependency closure — what installing the published package pulls in — 1 packages. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_published",
"params": {
"package": "npm:leaflet-control-geocoder@4.0.0",
"assessed": 1
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 1,
"unassessed_packages": 0,
"affected_by_severity": "none",
"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": "no indirect dependency carries a known advisory",
"points": 25,
"status": "met",
"details": [
{
"code": "no_indirect_advisories",
"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": 1,
"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": 19
},
"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": 53,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.44,
"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": "44 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 23.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 44,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 57,
"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": [
"tsconfig.json"
],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"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": ".eslintrc.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".eslintrc.json"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "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": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 3",
"points": 3,
"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": 15904,
"source_files_sampled": 41,
"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/41 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 41,
"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"
],
"report_type": "repository",
"generated_at": "2026-07-24T04:06:39.767762Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/p/perliedman/leaflet-control-geocoder.svg",
"full_name": "perliedman/leaflet-control-geocoder",
"license_state": "standard",
"license_spdx": "BSD-2-Clause"
}