, which is invalid\nPostgreSQL syntax\n- SELECT querie\n[…]\n for PG\n- [x] All 271 existing tests continue to pass (`npm test`)\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by: Claude Sonnet 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "fix: correctly number bare ? placeholders in PGQB as $1, $2, ... (#161)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-14T15:39:41Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "1ae866ede3b85d6bcc2ccfdd90d30ee86e76291d", "body": "## Summary\n\n- Truthiness checks like `params.where?.params` silently dropped valid\nfalsy parameter values (`false`, `0`, `''`) in `update()`, `delete()`,\nand `fetchAll()`/`fetchOne()` queries\n- Changed all such null-guards to `!= null` so that falsy-but-present\nvalues are correctly included in query\n[…]\ntBuilder.where()`)\n- [x] All 276 existing tests continue to pass (`npm test`)\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Sonnet 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "fix: correctly handle falsy WHERE params (false, 0, empty string) (#160)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-14T13:26:34Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "306e973ffd66f75a4112845a93260b35a29c1bf3", "body": "## Summary\n\n- `crossJoin()` convenience method previously generated `CROSS JOIN\ntable ON 1=1`, but CROSS JOIN does not accept an ON condition in\nstandard SQL and this is invalid syntax in SQLite/D1.\n- The `_join()` internal method now omits the `ON` clause when the `on`\nfield is empty/falsy, which i\n[…]\nossJoin convenience method` asserts `CROSS JOIN\nproducts` with no `ON` clause\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Sonnet 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "fix: crossJoin() no longer emits spurious ON clause (#159)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-14T13:26:01Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "91d4cc198a765db3d4227c4d65f446434865f62a", "body": "## Summary\n\n- Adds a new `orWhere()` fluent method to `SelectBuilder` for building\nOR WHERE clauses in query chains\n- When called after one or more `.where()` calls, all previous\nconditions are grouped and ORed with the new condition\n- When called with no prior where conditions, it behaves like `.wh\n[…]\n param count in orWhere`\n\nAll 274 existing tests continue to pass.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by: Claude Sonnet 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "feat: add orWhere() method to SelectBuilder for OR conditions (#162)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-14T13:25:20Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "84b5d0f33aa1cbec4cef4b1ae3dc24e2dc4e5d09", "body": "## Summary\n\n- Adds an optional third argument `otherwise` to the `.when()` fluent\nmethod on `SelectBuilder`\n- When the condition is falsy and `otherwise` is provided, the\n`otherwise` callback is invoked with the current builder\n- When the condition is falsy and no `otherwise` is provided, the\nbuilde\n[…]\nan compose multiple builder methods\n\nAll 271 existing tests continue to pass.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Sonnet 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "feat: add optional otherwise callback to .when() (#163)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-14T13:17:58Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "58cdffc89a19d854369c68c2cbc068e2ac5c7c84", "body": "…ies (#157)\n\n## Summary\n\nThe `_delete()` method in `builder.ts` generates the `RETURNING` clause\nbefore `ORDER BY`, `LIMIT`, and `OFFSET`, producing invalid SQL when\nthese clauses are combined.\n\n**Before (incorrect):**\n```sql\nDELETE FROM testTable WHERE ... RETURNING id, field ORDER BY id LIMIT 1000\n[…]\ning tests pass (240 existing + 1 new)\n- [x] Type checks pass\n- [x] Lint passes\n\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "fix: move RETURNING clause after ORDER BY/LIMIT/OFFSET in DELETE quer…", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-13T11:35:22Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "8d1e2ec7e40a0ffda22dae68875e42c74574a9c7", "body": "## Summary\n- Add 8 new convenience methods to the `SelectBuilder` fluent API for\ncommon WHERE clause patterns: `.when()`, `.whereNull()`,\n`.whereNotNull()`, `.whereBetween()`, `.whereNotBetween()`,\n`.whereLike()`, `.whereNotLike()`, and `.whereNotIn()`\n- All methods delegate to the existing `.where(\n[…]\n empty array, all methods chaining together with\nexisting `.where()`\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "feat: add WHERE clause convenience methods to SelectBuilder (#158)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-13T11:34:41Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "c4c04432a9455391b60e567f48e4ec340f13ca7e", "body": "## Summary\n\n- **SelectBuilder.where()** and **SelectBuilder.having()** now throw\n`ParameterMismatchError` instead of generic `Error` when\nplaceholder/parameter counts don't match\n- Error messages now include clause name, query text, expected vs\nreceived parameter counts, and actionable hints — match\n[…]\nes — `ParameterMismatchError` extends\n`QueryBuilderError` which extends `Error`\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "Use ParameterMismatchError in SelectBuilder where/having methods (#154)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-09T20:19:48Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "2c2a47736a1a362b9d164882188c3f8e90cefdff", "body": "… (#155)\n\n## Summary\n\n- Replace `CallableFunction` with a specific `LoggerFunction` type in\n`asyncLoggerWrapper` and `syncLoggerWrapper` for better type checking at\ncall sites\n- Type `Raw.content` and its constructor parameter as `string` instead\nof `any`, matching how it's actually used throughout \n[…]\nnot `any`\n- [x] No breaking changes — all changes are type-level narrowing only\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "Improve type safety: replace any/CallableFunction with specific types…", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-09T19:49:23Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "aedba28fb12fcb6b5e905381fcb1a4a5d0ca67a0", "body": "## Summary\n\n- Adds validation for `page` and `perPage` parameters in the\n`paginate()` method on `SelectBuilder`\n- Throws `InvalidConfigurationError` (existing error class) with a\nhelpful hint when invalid values are provided\n- Prevents silent incorrect behavior: `page: 0` produced negative\noffsets, \n[…]\neld\n\n## Test plan\n\n- [x] All 250 existing tests continue to pass\n- [x] 7 new unit tests for edge cases added and passing\n- [x] Linter (`biome check`) passes cleanly\n- [x] TypeScript compilation passes", "is_bot": false, "headline": "Add input validation for paginate() options (#153)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-09T19:29:54Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "ce124817885b1deb6db24eefa8e2332b3aee382b", "body": "## Summary\nAdds a GitHub Actions workflow that enforces every PR to include a\nchangeset entry before merging.\n\nThe workflow runs `npx changeset status --since=origin/main` on every\npull request to `main`, and skips the automated `changeset-release/main`\nbranch.\n\n## Why\nThe repo already uses changesets for versioning and publishing, but PRs\ncould be merged without a changeset — meaning releases could miss\nchanges. This ensures every PR is tracked.", "is_bot": false, "headline": "ci: add changeset check for pull requests (#156)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-09T19:28:11Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b46915743eacfc749292bc8a22b51a1f0d8b81a2", "body": "## Summary\n\n- The \"Create GitHub Release\" step runs unconditionally after\n`changesets/action`, including when the action merely creates/updates a\nversion PR (no actual publish)\n- When changesets exist, the action switches to `changeset-release/main`\nwith a bumped `package.json` version, causing `gh \n[…]\nto\ncreate a premature release\n- Fix: gate the step on `steps.changesets.outputs.published == 'true'`\nso it only runs after an actual npm publish\n\n🤖 Generated with [Claude Code](https://claude.ai/code)", "is_bot": false, "headline": "fix: only create GitHub release after npm publish succeeds (#152)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-09T14:48:19Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "8f99e93d9bd1d35c3ba406f7a491eb670c37f79d", "body": "## Summary\n\n- Add [Changesets](https://github.com/changesets/changesets) for\nautomated versioning, changelog generation, and npm publishing\n- Add a `release.yml` GitHub Actions workflow that runs on push to\n`main`\n- Install `@changesets/cli` and `@changesets/changelog-github` as dev\ndependencies\n\n##\n[…]\nAll 238 tests pass (17 test files, 3 skipped)\n- [x] Type checks pass\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "Add Changesets for automated versioning and releases (#149)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-09T09:36:14Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "4256b75eee972fc56483905ff5eb032ba00f4f66", "body": "## Summary\n\n- Fix SQL injection vulnerability in `syncMigrationsBuilder.apply()` and\n`asyncMigrationsBuilder.apply()` where `migration.name` was directly\ninterpolated into SQL via string concatenation\n- Separate migration SQL execution from name recording, using the query\nbuilder's `insert()` method\n[…]\nbjects\n- [x] Linter passes with no issues\n- [x] Type checking passes\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "Fix SQL injection in migration name recording (#150)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-09T09:35:39Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "81ad8e0f0ea8366af69155b13b2eebf341dac068", "body": "## Summary\n\n- Fix `_getQueryType()` in both `D1QB` and `DOQB` to classify CTE\nqueries (starting with `WITH`) as `'SELECT'` instead of `'RAW'`\n\n## Problem\n\nQueries built with the `.with()` CTE method generate SQL starting with\n`WITH ... AS (...) SELECT ...`. The `_getQueryType()` method only checks\nf\n[…]\ns (17 test files)\n- [x] Linter passes with no issues\n- [x] Type checking passes\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "Fix _getQueryType misclassifying CTE (WITH) queries as RAW (#151)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-08T19:20:07Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "af2f2a5c7c127d21b39c5599f3207e344e97ed1b", "body": "## Summary\n\n- Fix `_limit()` and `_offset()` methods in `QueryBuilder` using\n`!value` to check for missing values, which incorrectly treats `0` as\nfalsy\n- Passing `limit: 0` previously produced no `LIMIT` clause instead of\n`LIMIT 0`, silently returning all rows when zero rows were expected\n- Changed\n[…]\n238 existing + 2 new)\n- [x] Linter passes with no issues\n- [x] Type checks pass\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>", "is_bot": false, "headline": "Fix _limit and _offset treating 0 as falsy (#148)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-03-08T19:16:42Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "3f8583f49d0e4c9cf472c3fe480ba25ca0996aa2", "body": null, "is_bot": false, "headline": "Update dependencies", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-24T16:31:05Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "47fe83bacfc29a35306d03fe29a1741a861f9a53", "body": null, "is_bot": false, "headline": "Add more sql features, helpers and advanced features", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-24T16:20:13Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b3b73e71d9dca7c43fdc52e2e1c7ea9221f56a52", "body": null, "is_bot": false, "headline": "Update ai skills", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-24T14:27:41Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "ff7179302ee6f3fcdaa1b5f7323dec6deba3d735", "body": null, "is_bot": false, "headline": "Add skills", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-23T22:24:26Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "95a587e909a6deaef574ba65c76bb7a4a33df066", "body": null, "is_bot": false, "headline": "Update README.md", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T17:59:42Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "2035df8933d4305d2d380acdaf0ddd4682ddd379", "body": null, "is_bot": false, "headline": "Update README.md", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T17:57:49Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "474a3c9610133353c3fd4f435b6bcf195c122246", "body": null, "is_bot": false, "headline": "Add npm trusted publishers", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T17:18:52Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "f93c6cd315fb0bc1d2cd9e7d1a19752046e47a5c", "body": null, "is_bot": false, "headline": "Add npm trusted publishers", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T17:12:19Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "ca948ddd49d07b4d83e0643f56f3b84ed5411b28", "body": null, "is_bot": false, "headline": "Add npm trusted publishers", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T17:11:43Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "805fc195e12dde68fb80d0129981cfe1a676f660", "body": null, "is_bot": false, "headline": "Add support for ArrayBuffer (#143)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T17:06:34Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0a94fac092f7791a73806f76848281511a87949d", "body": null, "is_bot": false, "headline": "Add table schema for better ts type inference (#141)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T16:47:03Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "2e79111ed1090ff301e5571aa5d08a5ed97eef4b", "body": null, "is_bot": false, "headline": "Fix bug when reusing parameters (#142)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2026-01-18T15:43:57Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "c4e297356d944de159717d17d429c5b234da9da3", "body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to\n6.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/actions/checkout/releases\">actions/checkout's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v6.0.0\u003c/h2>\n\u003ch2>What's Changed\u003c/h2>\n\u003cul>\n\u003cli>Upd\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump actions/checkout from 5 to 6 (#139)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2026-01-12T21:26:17Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "88f7476b168d055af318b0daeac99ba0e15a41fa", "body": "Bumps [actions/setup-node](https://github.com/actions/setup-node) from 5\nto 6.\n\u003cdetails>\n\u003csummary>Release notes\u003c/summary>\n\u003cp>\u003cem>Sourced from \u003ca\nhref=\"https://github.com/actions/setup-node/releases\">actions/setup-node's\nreleases\u003c/a>.\u003c/em>\u003c/p>\n\u003cblockquote>\n\u003ch2>v6.0.0\u003c/h2>\n\u003ch2>What's Changed\u003c/h2>\n\u003cp>\u003c\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n\u003c/details>\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump actions/setup-node from 5 to 6 (#137)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2025-11-08T19:43:59Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "75afc4b6a5452d70f00677efd0a7d82670ddf0bc", "body": null, "is_bot": false, "headline": "Fix DOQB type check", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-13T17:56:36Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e53581637bba8d3756ecfc169ecd768e3c536564", "body": null, "is_bot": false, "headline": "Bump dependencies (#129)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-08T13:08:09Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "749ba23c64ffecb5ed4c581a60f7cb49fe285836", "body": null, "is_bot": false, "headline": "Update README.md", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-08T11:52:27Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "fb2bce819fd2fc62ac5563304a364a555763f0d4", "body": null, "is_bot": false, "headline": "Add more documentation redirects", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-08T11:51:48Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "5fec8aa6982eb13b902549e7ea825d096bfb84d4", "body": null, "is_bot": false, "headline": "Add docs for rowsRead and rowsWritten", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-08T11:45:31Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e0dcc97fc9e9ec2c77c609f0525b728e3f0b770a", "body": null, "is_bot": false, "headline": "Bump version", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-08T11:38:59Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "981ba11ff71378aff6f6751794b2e218ac64fc14", "body": null, "is_bot": false, "headline": "Add logger docs", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-08T11:38:37Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "790841267857a6d585aafb233abff255c8f1b9c5", "body": "This change exports `rowsRead` and `rowsWritten` from the `execute`\nfunction for both the D1 and Durable Objects query builders.\n\nFor D1, `rows_read` and `rows_written` are extracted from the `meta`\nobject in the response.\n\nFor Durable Objects, `rowsRead` and `rowsWritten` are read from the\n`SqlStor\n[…]\nen updated to include these\nnew fields, and integration tests have been added to verify the changes.\n\nCo-authored-by: google-labs-jules[bot] \u003c161369871+google-labs-jules[bot]@users.noreply.github.com>", "is_bot": false, "headline": "feat: export rowsRead and rowsWritten from execute (#126)", "author_name": "Caio Nogueira", "author_login": "Caio-Nogueira", "committed_at": "2025-09-08T11:14:12Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "b211ea0c73dfa51b8d21f3f4da8fabf77a43ddfd", "body": null, "is_bot": false, "headline": "Fix DOQB constructor parameter type (#128)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-09-08T11:08:27Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "cc6fce49eeb4dc54a4ed502d4ba6bc85745a0c93", "body": null, "is_bot": false, "headline": "Bump dependencies", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-08-17T15:32:55Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "1dff614a91bcfc4860aa68db11317bb2a0cab7a8", "body": null, "is_bot": false, "headline": "Add unit tests and documentation on json operations", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-08-17T15:17:13Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "da3f6c7de6ed61852717ee8edbd7b13c845b5bfd", "body": null, "is_bot": false, "headline": "Add gemini.md", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-08-17T14:12:23Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "caf3d8a8922a4f38e29ff8bbb131ce820c0ccb4b", "body": "This change adds a new documentation page, `docs/background-writes.md`,\nwhich explains how to use Cloudflare's `waitUntil` function to perform\nnon-blocking database writes. It provides examples for `insert`,\n`update`, and `delete` operations. The documentation sidebar is also\nupdated to include a link to this new page.\n\nCo-authored-by: google-labs-jules[bot] \u003c161369871+google-labs-jules[bot]@users.noreply.github.com>", "is_bot": true, "headline": "feat(docs): add documentation for background writes (#122)", "author_name": "google-labs-jules[bot]", "author_login": "google-labs-jules[bot]", "committed_at": "2025-08-17T14:11:47Z", "body_truncated": false, "is_coding_agent": true }, { "oid": "bbd2510e06d67592fe857f441a1fa2ccc12f42ce", "body": null, "is_bot": false, "headline": "Bundle docs folder with npm package", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-07-28T09:18:01Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "9528cd46092ad078a35264df50d07e15248fcc9d", "body": null, "is_bot": false, "headline": "Bump version", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-07-28T09:12:20Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "1e3af959081a03ee48378184f5d9a46a042f8138", "body": "This commit introduces support for using subqueries as parameters within\nthe `.where()` and `.having()` methods of the modular query builder.\n\nKey changes include:\n\n- Updated `SelectBuilder.where()` to recognize `SelectAll` objects\n(subquery configurations) as parameters. These are replaced with uni\n[…]\n more complex and powerful queries to be constructed in a\ntype-safe and organized manner.\n\n---------\n\nCo-authored-by: google-labs-jules[bot] \u003c161369871+google-labs-jules[bot]@users.noreply.github.com>", "is_bot": false, "headline": "feat: Add subquery support in .where() and .having() clauses (#118)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-07-21T08:40:21Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "94456daf7b43ad2ce517ed82960b67c6bd641a1b", "body": "Co-authored-by: google-labs-jules[bot] \u003c161369871+google-labs-jules[bot]@users.noreply.github.com>", "is_bot": false, "headline": "Docs sync durable objects (#121)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-07-03T12:06:58Z", "body_truncated": false, "is_coding_agent": true }, { "oid": "7c4f512539bb54568e9afaa082b1d3669cb82d09", "body": "We don't need to await the migrations apply on a durable object since a\nDOs sql execs happen in sync\n\nCo-authored-by: Tarush \u003ctnagpal@cloudflare.com>", "is_bot": false, "headline": "chore: remove un-needed await in docs (#120)", "author_name": "Tarush Nagpal", "author_login": "tarushnagpal", "committed_at": "2025-07-03T10:37:35Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "d4ea6e402903505f198f51ba12dd5bbe077f6abe", "body": "This commit introduces new unit tests to improve test coverage based on\nthe existing documentation.\n\n- Added tests for CROSS JOIN functionality in\n`tests/unit/select.test.ts`. These tests cover simple CROSS JOINs, CROSS\nJOINs with WHERE clauses, and CROSS JOINs with specific fields selected.\n\n- Crea\n[…]\nINSERT, UPDATE, and DELETE\nstatements, including the handling of parameterized arguments.\n\n---------\n\nCo-authored-by: google-labs-jules[bot] \u003c161369871+google-labs-jules[bot]@users.noreply.github.com>", "is_bot": false, "headline": "feat: Add missing unit tests for CROSS JOIN and Raw Queries (#115)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-06-15T15:07:07Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "d40821a0709bec1e3321e719695840540649cb9c", "body": "This commit includes the following changes:\n\n- Updated VitePress configuration to render outlines for h2 and h3\nheadings.\n- Removed references to subqueries within other queries from\n`docs/advanced-queries.md` as this feature is not currently supported.\n- Reviewed and made minor improvements to all \n[…]\nroving the structure and readability of examples, particularly in\n`docs/databases/do.md`.\n\n---------\n\nCo-authored-by: google-labs-jules[bot] \u003c161369871+google-labs-jules[bot]@users.noreply.github.com>", "is_bot": false, "headline": "Improve documentation and update VitePress config (#114)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-06-15T10:55:31Z", "body_truncated": true, "is_coding_agent": true }, { "oid": "2783082308748696730452ddfdf6b8101e50eddc", "body": null, "is_bot": false, "headline": "Fix lazy ts type in modular selects", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-03-03T23:31:53Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "88c64e5c742f6593f560feace21468ad81d2317a", "body": null, "is_bot": false, "headline": "Improve docs", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-02-17T13:14:09Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0d81911681af897cbe10434a603654f1c658a09a", "body": null, "is_bot": false, "headline": "Fix docs", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-02-11T22:34:14Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "09d58e62e3f745333ed8f673c44d085758721f9f", "body": null, "is_bot": false, "headline": "Fix image urls", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-02-11T22:29:25Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "15b9e2ac122527a808ac90627b132def86d21ef4", "body": null, "is_bot": false, "headline": "Migrate docs into vitepress", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-02-11T22:22:22Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "baeb138bca18a8df49f7875d765b71c55f861ce7", "body": null, "is_bot": false, "headline": "add redirects to old pages", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-02-02T11:19:32Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "c53b4d99273b75f91df4faab493ad9a53b89393a", "body": null, "is_bot": false, "headline": "Update docs", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-02-01T23:47:05Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b582ae09a46265447255088a4a4eb3bfe78a5d5d", "body": null, "is_bot": false, "headline": "Update docs", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-01-24T19:30:03Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "52f8e63d510043029fbb42869786edd1719c8557", "body": null, "is_bot": false, "headline": "Update README.md", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-01-24T19:13:09Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "633051b5587e0ddbfad00691e5247805da130596", "body": "Bumps the dev-deps group with 2 updates:\r\n[@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers)\r\nand\r\n[wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler).\r\n\r\nUpdates `@cloudflare/vitest-pool-workers` from 0.6\n[…]\n specified dependency and ignore\r\nconditions\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump the dev-deps group with 2 updates (#103)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2025-01-24T17:45:55Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "c67bd81c4678cd6b837dcbce8dba8376f6fd7f2c", "body": "Fixes #92", "is_bot": false, "headline": "Add support for unordered parameters in the update function (#104)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-01-24T17:45:42Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "15901e2fd5e4f47648bb252dbb67374261453f9c", "body": null, "is_bot": false, "headline": "Update README.md", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-01-20T22:17:07Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "0b9553b21fa0a72b980feee7d2f371c55986df4c", "body": null, "is_bot": false, "headline": "Bump version", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2025-01-14T15:04:09Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "c3196edc8db716b1110001f9b0e13de0981fe01c", "body": "Bumps the dev-deps group with 2 updates in the / directory:\r\n[@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers)\r\nand [typescript](https://github.com/microsoft/TypeScript).\r\n\r\nUpdates `@cloudflare/vitest-pool-workers` from 0.5.33 to 0.6\n[…]\n specified dependency and ignore\r\nconditions\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump the dev-deps group across 1 directory with 4 updates (#100)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2025-01-14T15:02:36Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "99181b4b44de0a02215e0633800c9c8a01f2184b", "body": "In a effort to make `workers-qb` more efficient for databases that can\r\nsupport cursors/iterables it now supports lazy selects so that, a query\r\nlike this doesn't potentially OoM the worker:\r\n\r\n```sql\r\n\tSELECT * FROM table\r\n```\r\n\r\nThe API for this is backwards-compatible and you can enable lazy sele\n[…]\nAll({tableName: \"table\", lazy: true})\r\n\t.execute()\r\n```\r\n\r\nBecause of TS type-system, lazy must be statically known at compile\r\notherwise this won't work properly and must always be true or undefined.", "is_bot": false, "headline": "feat: make selects optionally lazy (#101)", "author_name": "Luís Duarte", "author_login": "LuisDuarte1", "committed_at": "2025-01-14T15:01:38Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "d0211353816d384278c8740017868936fd9b1239", "body": null, "is_bot": false, "headline": "Bump version", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-12-16T22:17:35Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "ae8a5eeb69b4bfd32d0a1982ee0e4b2418661eba", "body": "Bumps the dev-deps group with 2 updates in the / directory:\r\n[@cloudflare/workers-types](https://github.com/cloudflare/workerd) and\r\n[wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler).\r\n\r\nUpdates `@cloudflare/workers-types` from 4.20241205.0 to 4.20241216.0\r\n\u003cdetails>\r\n[…]\n specified dependency and ignore\r\nconditions\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump the dev-deps group across 1 directory with 2 updates (#96)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-12-16T22:16:22Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "d9294d9e8e349ac09aa3762403d75f898c190e3c", "body": "This API abbreviates the usage of `(field, test) IN (VALUES (?, ?), (?,\r\n?))` in where conditions by dynamically constructing this query\r\ndynamically depending on the number of fields given and the length of\r\nvalues given.\r\n\r\nThis makes it really easy to build dynamic queries that filter by\r\nmultipl\n[…]\nields type (if the field type\r\nis a string, means that we can only pass a Primitive list, otherwise, if\r\nthe field type is an array of strings, means that we must pass a list of\r\na list of primitives)", "is_bot": false, "headline": "feat: add whereIn for SelectBuilder (#97)", "author_name": "Luís Duarte", "author_login": "LuisDuarte1", "committed_at": "2024-12-16T22:16:01Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "643f95f47256835910e7257d51a9fa4788a78afe", "body": "Bumps the dev-deps group with 5 updates:\r\n\r\n| Package | From | To |\r\n| --- | --- | --- |\r\n|\r\n[@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers)\r\n| `0.5.28` | `0.5.33` |\r\n| [@cloudflare/workers-types](https://github.com/cloudflare/worke\n[…]\n specified dependency and ignore\r\nconditions\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump the dev-deps group with 5 updates (#94)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-12-06T14:23:51Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "68a132689a9bc176cadfc316d64e6fe34cefac86", "body": null, "is_bot": false, "headline": "Update dependabot.yml", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-12-06T14:18:41Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "db358792c90024ca4f97814dce5f193c33190ca1", "body": null, "is_bot": false, "headline": "Update dependabot.yml (#93)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-12-06T14:18:01Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "69e6ed3fcdbe87bbab13436025c744a7b0a678a0", "body": null, "is_bot": false, "headline": "Update docs", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-11-23T21:03:47Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "98b8af4344e429e70e808b8e7c661bae79c7cb86", "body": "Bumps the cloudflare group with 3 updates:\r\n[@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers),\r\n[@cloudflare/workers-types](https://github.com/cloudflare/workerd) and\r\n[wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/pac\n[…]\n specified dependency and ignore\r\nconditions\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump the cloudflare group with 3 updates (#86)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-19T09:44:30Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "5631be5831b524ec0ca02d199609ec3b4120ec86", "body": "Bumps\r\n[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)\r\nfrom 2.1.4 to 2.1.5.\r\n\u003cdetails>\r\n\u003csummary>Release notes\u003c/summary>\r\n\u003cp>\u003cem>Sourced from \u003ca\r\nhref=\"https://github.com/vitest-dev/vitest/releases\">vitest's\r\nreleases\u003c/a>.\u003c/em>\u003c/p>\r\n\u003cblockquote>\r\n\u003ch2>v2.1.5\u003c/h2>\r\n\u003ch3>   🐞 B\n[…]\nou reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump vitest from 2.1.4 to 2.1.5 (#83)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-19T09:44:20Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "4dd10777264dbc4420a57a47fa2305151484ee6f", "body": "Bumps [husky](https://github.com/typicode/husky) from 9.1.6 to 9.1.7.\r\n\u003cdetails>\r\n\u003csummary>Release notes\u003c/summary>\r\n\u003cp>\u003cem>Sourced from \u003ca\r\nhref=\"https://github.com/typicode/husky/releases\">husky's\r\nreleases\u003c/a>.\u003c/em>\u003c/p>\r\n\u003cblockquote>\r\n\u003ch2>v9.1.7\u003c/h2>\r\n\u003ch2>What's Changed\u003c/h2>\r\n\u003cul>\r\n\u003cli>fix: add hu\n[…]\nou reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump husky from 9.1.6 to 9.1.7 (#82)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-19T09:44:11Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "a7893c58e84090030cda5153d1e675aeab947beb", "body": null, "is_bot": false, "headline": "Update dependabot.yml (#85)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-11-19T09:42:19Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e75f3a58eb40aa31857d17c5965338c90fbca173", "body": "[//]: # (dependabot-start)\r\n⚠️ **Dependabot is rebasing this PR** ⚠️ \r\n\r\nRebasing might not happen immediately, so don't worry if this takes some\r\ntime.\r\n\r\nNote: if you make any changes to this PR yourself, they will take\r\nprecedence over the rebase.\r\n\r\n---\r\n\r\n[//]: # (dependabot-end)\r\n\r\nBumps\r\n[@c\n[…]\nou reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump @cloudflare/vitest-pool-workers from 0.5.26 to 0.5.27 (#78)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-11T18:32:05Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "8a976a4ceb9360d93899aecc6d680abd9f4c8f99", "body": "Bumps\r\n[wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler)\r\nfrom 3.86.0 to 3.86.1.\r\n\u003cdetails>\r\n\u003csummary>Release notes\u003c/summary>\r\n\u003cp>\u003cem>Sourced from \u003ca\r\nhref=\"https://github.com/cloudflare/workers-sdk/releases\">wrangler's\r\nreleases\u003c/a>.\u003c/em>\u003c/p>\r\n\u003cblockquote>\r\n\u003ch2>wrang\n[…]\nou reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump wrangler from 3.86.0 to 3.86.1 (#77)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-11T18:31:45Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "a1341946d3b7ff93a30fcaa243b564d2dd604436", "body": "Bumps\r\n[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)\r\nfrom 2.0.5 to 2.1.4.\r\n\u003cdetails>\r\n\u003csummary>Release notes\u003c/summary>\r\n\u003cp>\u003cem>Sourced from \u003ca\r\nhref=\"https://github.com/vitest-dev/vitest/releases\">vitest's\r\nreleases\u003c/a>.\u003c/em>\u003c/p>\r\n\u003cblockquote>\r\n\u003ch2>v2.1.4\u003c/h2>\r\n\u003ch3>   🚀 F\n[…]\nou reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump vitest from 2.0.5 to 2.1.4 (#79)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-11T18:31:31Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "5088deabf95844e20eb06f332f9edfab23286354", "body": null, "is_bot": false, "headline": "Update migration docs", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-11-09T21:57:44Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "90f487d8f9542db85c36b42700765c69d6def9e8", "body": null, "is_bot": false, "headline": "Add migration tests and docs (#76)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-11-09T21:04:19Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "01f77bb9a5963227e0badffc8ffe2c9b358d2ccf", "body": null, "is_bot": false, "headline": "Add migration tests (#75)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-11-09T20:10:41Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "b647499848eb4cc7d65bf7bc9f3b7d03629922c1", "body": null, "is_bot": false, "headline": "Migrate to biomejs and vitest (#74)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-11-09T15:37:15Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "df0474f7cda1d355cd3de9c6409a0f7fcf10f7aa", "body": "Bumps [husky](https://github.com/typicode/husky) from 7.0.4 to 9.1.6.\r\n\u003cdetails>\r\n\u003csummary>Release notes\u003c/summary>\r\n\u003cp>\u003cem>Sourced from \u003ca\r\nhref=\"https://github.com/typicode/husky/releases\">husky's\r\nreleases\u003c/a>.\u003c/em>\u003c/p>\r\n\u003cblockquote>\r\n\u003ch2>v9.1.6\u003c/h2>\r\n\u003ch2>What's Changed\u003c/h2>\r\n\u003cul>\r\n\u003cli>Fix issue w\n[…]\nou reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump husky from 7.0.4 to 9.1.6 (#72)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-09T12:02:12Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "a46160cacc960fed7f058a8d115eee424060ebf6", "body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to\r\n4.\r\n\u003cdetails>\r\n\u003csummary>Release notes\u003c/summary>\r\n\u003cp>\u003cem>Sourced from \u003ca\r\nhref=\"https://github.com/actions/checkout/releases\">actions/checkout's\r\nreleases\u003c/a>.\u003c/em>\u003c/p>\r\n\u003cblockquote>\r\n\u003ch2>v4.0.0\u003c/h2>\r\n\u003ch2>What's Changed\u003c/h2>\r\n\u003cu\n[…]\ny: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>\r\nCo-authored-by: Gabriel Massadas \u003c5445926+G4brym@users.noreply.github.com>", "is_bot": true, "headline": "Bump actions/checkout from 3 to 4 (#67)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-09T12:01:56Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "d97f4d2467622422afbf81517cf99354edd905f4", "body": "Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3\r\nto 4.\r\n\u003cdetails>\r\n\u003csummary>Release notes\u003c/summary>\r\n\u003cp>\u003cem>Sourced from \u003ca\r\nhref=\"https://github.com/actions/setup-node/releases\">actions/setup-node's\r\nreleases\u003c/a>.\u003c/em>\u003c/p>\r\n\u003cblockquote>\r\n\u003ch2>v4.0.0\u003c/h2>\r\n\u003ch2>What's Changed\u003c\n[…]\nou reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n\u003c/details>\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com>\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com>", "is_bot": true, "headline": "Bump actions/setup-node from 3 to 4 (#68)", "author_name": "dependabot[bot]", "author_login": "dependabot[bot]", "committed_at": "2024-11-09T12:00:15Z", "body_truncated": true, "is_coding_agent": false }, { "oid": "37930f835577d596c09a64db186bc8bd86b19397", "body": null, "is_bot": false, "headline": "Add migrations (#66)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-11-09T11:57:32Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "5c1eb5fa69a1de63fe56b68a8aeb9fda9f8749e2", "body": "A sample fix for #64 \r\n\r\nAdds brackets around the conditions in where when using multiple\r\nconditions.\r\nWithout any kind of tokenisation, this requires adding brackets even\r\nwhere not required. I have updated the other tests for this.", "is_bot": false, "headline": "Wrap multiple conditions in brackets in WHERE. (#65)", "author_name": "Palash Bansal", "author_login": "repalash", "committed_at": "2024-10-23T11:45:40Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "c5eb1fb5f04f5619b9ce49f42bf40c2f04ca2fc7", "body": null, "is_bot": false, "headline": "Bump version", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-10-23T11:45:03Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "1cd846c43f0e58f4fde8e1a840aaf17b0b502455", "body": null, "is_bot": false, "headline": "Fix DOQB execute method (#63)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-10-02T18:07:27Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "6f2c41efd238469e6d62916b244afd0faea7ddc9", "body": null, "is_bot": false, "headline": "Add offset and order by to delete queries (#62)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-09-24T17:43:29Z", "body_truncated": false, "is_coding_agent": false }, { "oid": "e900a487aa8f4fa784e66ac1a0b391fc433c551b", "body": null, "is_bot": false, "headline": "Add limit to delete queries (#60)", "author_name": "Gabriel Massadas", "author_login": "G4brym", "committed_at": "2024-09-24T17:36:11Z", "body_truncated": false, "is_coding_agent": false } ], "releases_count": 52, "commits_last_year": 51, "latest_release_at": "2026-07-24T14:08:50Z", "latest_release_tag": "v1.15.0", "releases_from_tags": false, "days_since_last_push": 10, "active_weeks_last_year": 11, "days_since_latest_release": 10, "mean_days_between_releases": 61.8 }, "artifacts": { "collected": true, "structure": [], "declarations": [ { "name": "workers-qb", "path": "package.json", "tokens": [ "npm.entry" ], "ecosystem": "npm" } ] }, "community": { "has_readme": true, "has_license": true, "readme_badges": { "hosts": [ "shields.io" ], "total": 3, "header": 3, "collected": true, "has_inspect_badge": false }, "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": "workers-qb", "exists": true, "license": "MIT", "keywords": [ "cloudflare", "worker", "workers", "serverless", "cloudflare d1", "cloudflare DO", "cloudflare Durable Objects", "d1sql", "sql builder", "query builder", "cloudflare sql", "workers sql", "cf", "optional", "middleware", "query", "parameters", "typescript", "npm", "package", "cjs", "esm", "umd", "typed" ], "ecosystem": "npm", "categories": [], "matches_repo": true, "registry_url": "https://www.npmjs.com/package/workers-qb", "declared_type": null, "is_deprecated": false, "latest_version": "1.15.0", "repository_url": "https://github.com/G4brym/workers-qb", "versions_count": 53, "total_downloads": null, "dependents_count": null, "deprecation_note": null, "maintainers_count": 1, "monthly_downloads": 64152, "first_published_at": "2022-08-07T17:30:30.795000Z", "latest_published_at": "2026-07-24T14:08:48.233000Z", "latest_version_yanked": null, "days_since_latest_publish": 10 } ] }, "popularity": { "forks": 26, "stars": 398, "watchers": 3, "fork_history": { "days": [ { "date": "2022-09-30", "count": 1 }, { "date": "2022-10-25", "count": 1 }, { "date": "2022-10-26", "count": 1 }, { "date": "2022-11-07", "count": 1 }, { "date": "2023-05-08", "count": 1 }, { "date": "2023-05-12", "count": 1 }, { "date": "2023-06-14", "count": 1 }, { "date": "2023-07-11", "count": 1 }, { "date": "2023-07-18", "count": 1 }, { "date": "2023-08-15", "count": 1 }, { "date": "2023-09-16", "count": 1 }, { "date": "2024-04-27", "count": 1 }, { "date": "2024-05-17", "count": 1 }, { "date": "2024-07-04", "count": 1 }, { "date": "2024-07-08", "count": 1 }, { "date": "2024-08-21", "count": 1 }, { "date": "2024-10-14", "count": 1 }, { "date": "2024-11-22", "count": 1 }, { "date": "2024-11-25", "count": 1 }, { "date": "2025-05-07", "count": 1 }, { "date": "2025-07-03", "count": 1 }, { "date": "2025-07-24", "count": 1 }, { "date": "2025-07-28", "count": 1 }, { "date": "2025-08-27", "count": 1 }, { "date": "2025-10-08", "count": 1 }, { "date": "2026-03-23", "count": 1 } ], "complete": true, "collected": 26, "total_forks": 26 }, "star_history": null, "open_issues_and_prs": 2 }, "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": [ "tests/tsconfig.json", "tsconfig.json" ], "toolchain_manifests": [], "largest_source_bytes": 49305, "source_files_sampled": 39, "oversized_source_files": 0, "agent_instruction_files": [ "CLAUDE.md" ], "agent_instruction_max_bytes": 2784 }, "dependencies": { "manifests": [ "package.json" ], "advisories": { "error": null, "scope": "repository_graph", "source": "osv", "findings": [ { "name": "rollup", "direct": false, "version": "4.43.0", "severity": "critical", "ecosystem": "npm", "cvss_score": 9.1, "advisory_ids": [ "GHSA-mw96-cpmx-2vgc" ], "fixed_version": "4.59.0", "advisory_count": 1, "oldest_advisory_days": 159 }, { "name": "vitest", "direct": false, "version": "3.2.4", "severity": "critical", "ecosystem": "npm", "cvss_score": 9.8, "advisory_ids": [ "GHSA-5xrq-8626-4rwp" ], "fixed_version": "4.1.0", "advisory_count": 1, "oldest_advisory_days": 63 }, { "name": "brace-expansion", "direct": false, "version": "2.0.1", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-3jxr-9vmj-r5cp", "GHSA-f886-m6hf-6m8v", "GHSA-mh99-v99m-4gvg", "GHSA-rgw5-rvv9-x895", "GHSA-v6h2-p8h4-qcjw" ], "fixed_version": "5.0.9", "advisory_count": 5, "oldest_advisory_days": 420 }, { "name": "glob", "direct": false, "version": "10.4.5", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-5j98-mcp5-4vw2" ], "fixed_version": "11.1.0", "advisory_count": 1, "oldest_advisory_days": 259 }, { "name": "js-yaml", "direct": false, "version": "3.14.2", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-52cp-r559-cp3m", "GHSA-h67p-54hq-rp68" ], "fixed_version": "4.3.0", "advisory_count": 2, "oldest_advisory_days": 49 }, { "name": "js-yaml", "direct": false, "version": "4.1.1", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-52cp-r559-cp3m", "GHSA-h67p-54hq-rp68" ], "fixed_version": "4.3.0", "advisory_count": 2, "oldest_advisory_days": 49 }, { "name": "minimatch", "direct": false, "version": "9.0.5", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-23c5-xmqv-rm74", "GHSA-3ppc-4f35-3m26", "GHSA-7r86-cg39-jmmj" ], "fixed_version": "10.2.3", "advisory_count": 3, "oldest_advisory_days": 166 }, { "name": "picomatch", "direct": false, "version": "2.3.1", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-3v7f-55p6-f55p", "GHSA-c2c7-rcm5-vvqj" ], "fixed_version": "4.0.4", "advisory_count": 2, "oldest_advisory_days": 131 }, { "name": "picomatch", "direct": false, "version": "4.0.2", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-3v7f-55p6-f55p", "GHSA-c2c7-rcm5-vvqj" ], "fixed_version": "4.0.4", "advisory_count": 2, "oldest_advisory_days": 131 }, { "name": "postcss", "direct": false, "version": "8.5.2", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-6g55-p6wh-862q", "GHSA-fxqj-rqcc-2cmp", "GHSA-qx2v-qp2m-jg93", "GHSA-r28c-9q8g-f849" ], "fixed_version": "8.5.23", "advisory_count": 4, "oldest_advisory_days": 101 }, { "name": "sharp", "direct": false, "version": "0.34.5", "severity": "high", "ecosystem": "npm", "cvss_score": 7.3, "advisory_ids": [ "GHSA-f88m-g3jw-g9cj" ], "fixed_version": "0.35.0", "advisory_count": 1, "oldest_advisory_days": 13 }, { "name": "undici", "direct": false, "version": "7.18.2", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-2mjp-6q6p-2qxm", "GHSA-35p6-xmwp-9g52", "GHSA-4992-7rv2-5pvq", "GHSA-4cwx-7wf7-3272", "GHSA-8xcm-r25x-g524", "GHSA-f269-vfmq-vjvj", "GHSA-g8m3-5g58-fq7m", "GHSA-jr45-8vmc-qm54", "GHSA-m8rv-5g2x-5cg5", "GHSA-p88m-4jfj-68fv" ], "fixed_version": "8.9.0", "advisory_count": 16, "oldest_advisory_days": 143 }, { "name": "vite", "direct": false, "version": "5.4.14", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-356w-63v5-8wf4", "GHSA-4r4m-qw57-chr8", "GHSA-4w7w-66w2-5vf9", "GHSA-859w-5945-r5v3", "GHSA-93m4-6634-74q7", "GHSA-fx2h-pf6j-xcff", "GHSA-g4jq-h2w9-997c", "GHSA-jqfw-vq24-v9c3", "GHSA-v6wh-96g9-6wx3", "GHSA-x574-m823-4x7w" ], "fixed_version": "8.0.16", "advisory_count": 11, "oldest_advisory_days": 496 }, { "name": "ws", "direct": false, "version": "8.18.0", "severity": "high", "ecosystem": "npm", "cvss_score": 7.5, "advisory_ids": [ "GHSA-58qx-3vcg-4xpx", "GHSA-96hv-2xvq-fx4p" ], "fixed_version": "8.21.0", "advisory_count": 2, "oldest_advisory_days": 77 }, { "name": "esbuild", "direct": false, "version": "0.21.5", "severity": "moderate", "ecosystem": "npm", "cvss_score": 5.3, "advisory_ids": [ "GHSA-67mh-4wv8-2f99" ], "fixed_version": "0.25.0", "advisory_count": 1, "oldest_advisory_days": 539 }, { "name": "mdast-util-to-hast", "direct": false, "version": "13.2.0", "severity": "moderate", "ecosystem": "npm", "cvss_score": 5.3, "advisory_ids": [ "GHSA-4fh9-h7wg-q85m" ], "fixed_version": "13.2.1", "advisory_count": 1, "oldest_advisory_days": 245 } ], "collected": true, "malicious": [], "truncated": false, "by_severity": { "high": 12, "critical": 2, "moderate": 2 }, "advisory_count": 55, "affected_count": 16, "assessed_count": 469, "malicious_count": 0, "assessed_package": null, "unassessed_count": 0, "direct_affected_count": 0 }, "ecosystems": [ "npm" ], "dependencies": [], "all_dependencies": { "error": null, "source": "github-sbom", "packages": [ { "name": "@algolia/autocomplete-core", "direct": false, "version": "1.17.7", "ecosystem": "npm" }, { "name": "@algolia/autocomplete-plugin-algolia-insights", "direct": false, "version": "1.17.7", "ecosystem": "npm" }, { "name": "@algolia/autocomplete-preset-algolia", "direct": false, "version": "1.17.7", "ecosystem": "npm" }, { "name": "@algolia/autocomplete-shared", "direct": false, "version": "1.17.7", "ecosystem": "npm" }, { "name": "@algolia/client-abtesting", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/client-analytics", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/client-common", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/client-insights", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/client-personalization", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/client-query-suggestions", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/client-search", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/ingestion", "direct": false, "version": "1.20.2", "ecosystem": "npm" }, { "name": "@algolia/monitoring", "direct": false, "version": "1.20.2", "ecosystem": "npm" }, { "name": "@algolia/recommend", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/requester-browser-xhr", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/requester-fetch", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@algolia/requester-node-http", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "@babel/helper-string-parser", "direct": false, "version": "7.25.9", "ecosystem": "npm" }, { "name": "@babel/helper-validator-identifier", "direct": false, "version": "7.25.9", "ecosystem": "npm" }, { "name": "@babel/parser", "direct": false, "version": "7.26.8", "ecosystem": "npm" }, { "name": "@babel/runtime", "direct": false, "version": "7.28.6", "ecosystem": "npm" }, { "name": "@babel/types", "direct": false, "version": "7.26.8", "ecosystem": "npm" }, { "name": "@biomejs/biome", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-darwin-arm64", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-darwin-x64", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-linux-arm64", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-linux-arm64-musl", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-linux-x64", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-linux-x64-musl", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-win32-arm64", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@biomejs/cli-win32-x64", "direct": false, "version": "2.3.12", "ecosystem": "npm" }, { "name": "@changesets/apply-release-plan", "direct": false, "version": "7.1.0", "ecosystem": "npm" }, { "name": "@changesets/assemble-release-plan", "direct": false, "version": "6.0.9", "ecosystem": "npm" }, { "name": "@changesets/changelog-git", "direct": false, "version": "0.2.1", "ecosystem": "npm" }, { "name": "@changesets/changelog-github", "direct": false, "version": "0.6.0", "ecosystem": "npm" }, { "name": "@changesets/cli", "direct": false, "version": "2.30.0", "ecosystem": "npm" }, { "name": "@changesets/config", "direct": false, "version": "3.1.3", "ecosystem": "npm" }, { "name": "@changesets/errors", "direct": false, "version": "0.2.0", "ecosystem": "npm" }, { "name": "@changesets/get-dependents-graph", "direct": false, "version": "2.1.3", "ecosystem": "npm" }, { "name": "@changesets/get-github-info", "direct": false, "version": "0.8.0", "ecosystem": "npm" }, { "name": "@changesets/get-release-plan", "direct": false, "version": "4.0.15", "ecosystem": "npm" }, { "name": "@changesets/get-version-range-type", "direct": false, "version": "0.4.0", "ecosystem": "npm" }, { "name": "@changesets/git", "direct": false, "version": "3.0.4", "ecosystem": "npm" }, { "name": "@changesets/logger", "direct": false, "version": "0.1.1", "ecosystem": "npm" }, { "name": "@changesets/parse", "direct": false, "version": "0.4.3", "ecosystem": "npm" }, { "name": "@changesets/pre", "direct": false, "version": "2.0.2", "ecosystem": "npm" }, { "name": "@changesets/read", "direct": false, "version": "0.6.7", "ecosystem": "npm" }, { "name": "@changesets/should-skip-package", "direct": false, "version": "0.1.2", "ecosystem": "npm" }, { "name": "@changesets/types", "direct": false, "version": "4.1.0", "ecosystem": "npm" }, { "name": "@changesets/types", "direct": false, "version": "6.1.0", "ecosystem": "npm" }, { "name": "@changesets/write", "direct": false, "version": "0.4.0", "ecosystem": "npm" }, { "name": "@cloudflare/kv-asset-handler", "direct": false, "version": "0.4.2", "ecosystem": "npm" }, { "name": "@cloudflare/unenv-preset", "direct": false, "version": "2.11.0", "ecosystem": "npm" }, { "name": "@cloudflare/vitest-pool-workers", "direct": false, "version": "0.12.6", "ecosystem": "npm" }, { "name": "@cloudflare/workerd-darwin-64", "direct": false, "version": "1.20260120.0", "ecosystem": "npm" }, { "name": "@cloudflare/workerd-darwin-arm64", "direct": false, "version": "1.20260120.0", "ecosystem": "npm" }, { "name": "@cloudflare/workerd-linux-64", "direct": false, "version": "1.20260120.0", "ecosystem": "npm" }, { "name": "@cloudflare/workerd-linux-arm64", "direct": false, "version": "1.20260120.0", "ecosystem": "npm" }, { "name": "@cloudflare/workerd-windows-64", "direct": false, "version": "1.20260120.0", "ecosystem": "npm" }, { "name": "@cloudflare/workers-types", "direct": false, "version": "4.20260124.0", "ecosystem": "npm" }, { "name": "@cspotcode/source-map-support", "direct": false, "version": "0.8.1", "ecosystem": "npm" }, { "name": "@docsearch/css", "direct": false, "version": "3.8.2", "ecosystem": "npm" }, { "name": "@docsearch/js", "direct": false, "version": "3.8.2", "ecosystem": "npm" }, { "name": "@docsearch/react", "direct": false, "version": "3.8.2", "ecosystem": "npm" }, { "name": "@emnapi/runtime", "direct": false, "version": "1.8.1", "ecosystem": "npm" }, { "name": "@esbuild/aix-ppc64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/aix-ppc64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/android-arm", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/android-arm", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/android-arm64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/android-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/android-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/android-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/darwin-arm64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/darwin-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/darwin-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/darwin-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/freebsd-arm64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/freebsd-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/freebsd-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/freebsd-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-arm", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-arm", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-arm64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-ia32", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-ia32", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-loong64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-loong64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-mips64el", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-mips64el", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-ppc64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-ppc64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-riscv64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-riscv64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-s390x", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-s390x", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/linux-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/linux-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/netbsd-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/netbsd-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/netbsd-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/openbsd-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/openbsd-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/openbsd-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/openharmony-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/sunos-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/sunos-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/win32-arm64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/win32-arm64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/win32-ia32", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/win32-ia32", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@esbuild/win32-x64", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "@esbuild/win32-x64", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "@iconify-json/simple-icons", "direct": false, "version": "1.2.24", "ecosystem": "npm" }, { "name": "@iconify/types", "direct": false, "version": "2.0.0", "ecosystem": "npm" }, { "name": "@img/colour", "direct": false, "version": "1.0.0", "ecosystem": "npm" }, { "name": "@img/sharp-darwin-arm64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-darwin-x64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-darwin-arm64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-darwin-x64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linux-arm", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linux-arm64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linux-ppc64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linux-riscv64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linux-s390x", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linux-x64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linuxmusl-arm64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-libvips-linuxmusl-x64", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "@img/sharp-linux-arm", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-linux-arm64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-linux-ppc64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-linux-riscv64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-linux-s390x", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-linux-x64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-linuxmusl-arm64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-linuxmusl-x64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-wasm32", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-win32-arm64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-win32-ia32", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@img/sharp-win32-x64", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "@inquirer/external-editor", "direct": false, "version": "1.0.3", "ecosystem": "npm" }, { "name": "@isaacs/cliui", "direct": false, "version": "8.0.2", "ecosystem": "npm" }, { "name": "@jridgewell/gen-mapping", "direct": false, "version": "0.3.5", "ecosystem": "npm" }, { "name": "@jridgewell/resolve-uri", "direct": false, "version": "3.1.2", "ecosystem": "npm" }, { "name": "@jridgewell/set-array", "direct": false, "version": "1.2.1", "ecosystem": "npm" }, { "name": "@jridgewell/sourcemap-codec", "direct": false, "version": "1.5.0", "ecosystem": "npm" }, { "name": "@jridgewell/trace-mapping", "direct": false, "version": "0.3.25", "ecosystem": "npm" }, { "name": "@jridgewell/trace-mapping", "direct": false, "version": "0.3.9", "ecosystem": "npm" }, { "name": "@manypkg/find-root", "direct": false, "version": "1.1.0", "ecosystem": "npm" }, { "name": "@manypkg/get-packages", "direct": false, "version": "1.1.3", "ecosystem": "npm" }, { "name": "@nodelib/fs.scandir", "direct": false, "version": "2.1.5", "ecosystem": "npm" }, { "name": "@nodelib/fs.stat", "direct": false, "version": "2.0.5", "ecosystem": "npm" }, { "name": "@nodelib/fs.walk", "direct": false, "version": "1.2.8", "ecosystem": "npm" }, { "name": "@pkgjs/parseargs", "direct": false, "version": "0.11.0", "ecosystem": "npm" }, { "name": "@poppinss/colors", "direct": false, "version": "4.1.6", "ecosystem": "npm" }, { "name": "@poppinss/dumper", "direct": false, "version": "0.6.5", "ecosystem": "npm" }, { "name": "@poppinss/exception", "direct": false, "version": "1.2.3", "ecosystem": "npm" }, { "name": "@rollup/rollup-android-arm-eabi", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-android-arm64", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-darwin-arm64", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-darwin-x64", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-freebsd-arm64", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-freebsd-x64", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-arm-gnueabihf", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-arm-musleabihf", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-arm64-gnu", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-arm64-musl", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-loongarch64-gnu", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-powerpc64le-gnu", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-riscv64-gnu", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-riscv64-musl", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-s390x-gnu", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-x64-gnu", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-linux-x64-musl", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-win32-arm64-msvc", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-win32-ia32-msvc", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@rollup/rollup-win32-x64-msvc", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "@shikijs/core", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "@shikijs/engine-javascript", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "@shikijs/engine-oniguruma", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "@shikijs/langs", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "@shikijs/themes", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "@shikijs/transformers", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "@shikijs/types", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "@shikijs/vscode-textmate", "direct": false, "version": "10.0.1", "ecosystem": "npm" }, { "name": "@sindresorhus/is", "direct": false, "version": "7.2.0", "ecosystem": "npm" }, { "name": "@speed-highlight/core", "direct": false, "version": "1.2.14", "ecosystem": "npm" }, { "name": "@types/chai", "direct": false, "version": "5.2.2", "ecosystem": "npm" }, { "name": "@types/deep-eql", "direct": false, "version": "4.0.2", "ecosystem": "npm" }, { "name": "@types/estree", "direct": false, "version": "1.0.7", "ecosystem": "npm" }, { "name": "@types/hast", "direct": false, "version": "3.0.4", "ecosystem": "npm" }, { "name": "@types/linkify-it", "direct": false, "version": "5.0.0", "ecosystem": "npm" }, { "name": "@types/markdown-it", "direct": false, "version": "14.1.2", "ecosystem": "npm" }, { "name": "@types/mdast", "direct": false, "version": "4.0.4", "ecosystem": "npm" }, { "name": "@types/mdurl", "direct": false, "version": "2.0.0", "ecosystem": "npm" }, { "name": "@types/node", "direct": false, "version": "12.20.55", "ecosystem": "npm" }, { "name": "@types/node", "direct": false, "version": "22.9.0", "ecosystem": "npm" }, { "name": "@types/unist", "direct": false, "version": "3.0.3", "ecosystem": "npm" }, { "name": "@types/web-bluetooth", "direct": false, "version": "0.0.20", "ecosystem": "npm" }, { "name": "@ungap/structured-clone", "direct": false, "version": "1.3.0", "ecosystem": "npm" }, { "name": "@vitejs/plugin-vue", "direct": false, "version": "5.2.1", "ecosystem": "npm" }, { "name": "@vitest/expect", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "@vitest/mocker", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "@vitest/pretty-format", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "@vitest/runner", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "@vitest/snapshot", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "@vitest/spy", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "@vitest/utils", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "@vue/compiler-core", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/compiler-dom", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/compiler-sfc", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/compiler-ssr", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/devtools-api", "direct": false, "version": "7.7.1", "ecosystem": "npm" }, { "name": "@vue/devtools-kit", "direct": false, "version": "7.7.1", "ecosystem": "npm" }, { "name": "@vue/devtools-shared", "direct": false, "version": "7.7.1", "ecosystem": "npm" }, { "name": "@vue/reactivity", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/runtime-core", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/runtime-dom", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/server-renderer", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vue/shared", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "@vueuse/core", "direct": false, "version": "12.5.0", "ecosystem": "npm" }, { "name": "@vueuse/integrations", "direct": false, "version": "12.5.0", "ecosystem": "npm" }, { "name": "@vueuse/metadata", "direct": false, "version": "12.5.0", "ecosystem": "npm" }, { "name": "@vueuse/shared", "direct": false, "version": "12.5.0", "ecosystem": "npm" }, { "name": "acorn", "direct": false, "version": "8.14.0", "ecosystem": "npm" }, { "name": "algoliasearch", "direct": false, "version": "5.20.2", "ecosystem": "npm" }, { "name": "ansi-colors", "direct": false, "version": "4.1.3", "ecosystem": "npm" }, { "name": "ansi-regex", "direct": false, "version": "5.0.1", "ecosystem": "npm" }, { "name": "ansi-regex", "direct": false, "version": "6.1.0", "ecosystem": "npm" }, { "name": "ansi-styles", "direct": false, "version": "4.3.0", "ecosystem": "npm" }, { "name": "ansi-styles", "direct": false, "version": "6.2.1", "ecosystem": "npm" }, { "name": "any-promise", "direct": false, "version": "1.3.0", "ecosystem": "npm" }, { "name": "argparse", "direct": false, "version": "1.0.10", "ecosystem": "npm" }, { "name": "argparse", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "array-union", "direct": false, "version": "2.1.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": "better-path-resolve", "direct": false, "version": "1.0.0", "ecosystem": "npm" }, { "name": "birpc", "direct": false, "version": "0.2.19", "ecosystem": "npm" }, { "name": "blake3-wasm", "direct": false, "version": "2.1.5", "ecosystem": "npm" }, { "name": "brace-expansion", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "braces", "direct": false, "version": "3.0.3", "ecosystem": "npm" }, { "name": "bundle-require", "direct": false, "version": "5.1.0", "ecosystem": "npm" }, { "name": "cac", "direct": false, "version": "6.7.14", "ecosystem": "npm" }, { "name": "ccount", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "chai", "direct": false, "version": "5.2.1", "ecosystem": "npm" }, { "name": "character-entities-html4", "direct": false, "version": "2.1.0", "ecosystem": "npm" }, { "name": "character-entities-legacy", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "chardet", "direct": false, "version": "2.1.1", "ecosystem": "npm" }, { "name": "check-error", "direct": false, "version": "2.1.1", "ecosystem": "npm" }, { "name": "chokidar", "direct": false, "version": "4.0.3", "ecosystem": "npm" }, { "name": "cjs-module-lexer", "direct": false, "version": "1.4.1", "ecosystem": "npm" }, { "name": "color-convert", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "color-name", "direct": false, "version": "1.1.4", "ecosystem": "npm" }, { "name": "comma-separated-tokens", "direct": false, "version": "2.0.3", "ecosystem": "npm" }, { "name": "commander", "direct": false, "version": "4.1.1", "ecosystem": "npm" }, { "name": "confbox", "direct": false, "version": "0.1.8", "ecosystem": "npm" }, { "name": "consola", "direct": false, "version": "3.4.2", "ecosystem": "npm" }, { "name": "cookie", "direct": false, "version": "1.1.1", "ecosystem": "npm" }, { "name": "copy-anything", "direct": false, "version": "3.0.5", "ecosystem": "npm" }, { "name": "cross-spawn", "direct": false, "version": "7.0.5", "ecosystem": "npm" }, { "name": "csstype", "direct": false, "version": "3.1.3", "ecosystem": "npm" }, { "name": "dataloader", "direct": false, "version": "1.4.0", "ecosystem": "npm" }, { "name": "debug", "direct": false, "version": "4.4.1", "ecosystem": "npm" }, { "name": "deep-eql", "direct": false, "version": "5.0.2", "ecosystem": "npm" }, { "name": "dequal", "direct": false, "version": "2.0.3", "ecosystem": "npm" }, { "name": "detect-indent", "direct": false, "version": "6.1.0", "ecosystem": "npm" }, { "name": "detect-libc", "direct": false, "version": "2.1.2", "ecosystem": "npm" }, { "name": "devlop", "direct": false, "version": "1.1.0", "ecosystem": "npm" }, { "name": "dir-glob", "direct": false, "version": "3.0.1", "ecosystem": "npm" }, { "name": "dotenv", "direct": false, "version": "8.6.0", "ecosystem": "npm" }, { "name": "eastasianwidth", "direct": false, "version": "0.2.0", "ecosystem": "npm" }, { "name": "emoji-regex", "direct": false, "version": "8.0.0", "ecosystem": "npm" }, { "name": "emoji-regex", "direct": false, "version": "9.2.2", "ecosystem": "npm" }, { "name": "emoji-regex-xs", "direct": false, "version": "1.0.0", "ecosystem": "npm" }, { "name": "enquirer", "direct": false, "version": "2.4.1", "ecosystem": "npm" }, { "name": "entities", "direct": false, "version": "4.5.0", "ecosystem": "npm" }, { "name": "error-stack-parser-es", "direct": false, "version": "1.0.5", "ecosystem": "npm" }, { "name": "es-module-lexer", "direct": false, "version": "1.7.0", "ecosystem": "npm" }, { "name": "esbuild", "direct": false, "version": "0.21.5", "ecosystem": "npm" }, { "name": "esbuild", "direct": false, "version": "0.27.0", "ecosystem": "npm" }, { "name": "esprima", "direct": false, "version": "4.0.1", "ecosystem": "npm" }, { "name": "estree-walker", "direct": false, "version": "2.0.2", "ecosystem": "npm" }, { "name": "estree-walker", "direct": false, "version": "3.0.3", "ecosystem": "npm" }, { "name": "expect-type", "direct": false, "version": "1.2.2", "ecosystem": "npm" }, { "name": "extendable-error", "direct": false, "version": "0.1.7", "ecosystem": "npm" }, { "name": "fast-glob", "direct": false, "version": "3.3.3", "ecosystem": "npm" }, { "name": "fastq", "direct": false, "version": "1.20.1", "ecosystem": "npm" }, { "name": "fdir", "direct": false, "version": "6.4.6", "ecosystem": "npm" }, { "name": "fill-range", "direct": false, "version": "7.1.1", "ecosystem": "npm" }, { "name": "find-up", "direct": false, "version": "4.1.0", "ecosystem": "npm" }, { "name": "fix-dts-default-cjs-exports", "direct": false, "version": "1.0.1", "ecosystem": "npm" }, { "name": "focus-trap", "direct": false, "version": "7.6.4", "ecosystem": "npm" }, { "name": "foreground-child", "direct": false, "version": "3.3.0", "ecosystem": "npm" }, { "name": "fs-extra", "direct": false, "version": "7.0.1", "ecosystem": "npm" }, { "name": "fs-extra", "direct": false, "version": "8.1.0", "ecosystem": "npm" }, { "name": "fsevents", "direct": false, "version": "2.3.3", "ecosystem": "npm" }, { "name": "glob", "direct": false, "version": "10.4.5", "ecosystem": "npm" }, { "name": "glob-parent", "direct": false, "version": "5.1.2", "ecosystem": "npm" }, { "name": "globby", "direct": false, "version": "11.1.0", "ecosystem": "npm" }, { "name": "graceful-fs", "direct": false, "version": "4.2.11", "ecosystem": "npm" }, { "name": "hast-util-to-html", "direct": false, "version": "9.0.4", "ecosystem": "npm" }, { "name": "hast-util-whitespace", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "hookable", "direct": false, "version": "5.5.3", "ecosystem": "npm" }, { "name": "html-void-elements", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "human-id", "direct": false, "version": "4.1.3", "ecosystem": "npm" }, { "name": "iconv-lite", "direct": false, "version": "0.7.2", "ecosystem": "npm" }, { "name": "ignore", "direct": false, "version": "5.3.2", "ecosystem": "npm" }, { "name": "is-extglob", "direct": false, "version": "2.1.1", "ecosystem": "npm" }, { "name": "is-fullwidth-code-point", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "is-glob", "direct": false, "version": "4.0.3", "ecosystem": "npm" }, { "name": "is-number", "direct": false, "version": "7.0.0", "ecosystem": "npm" }, { "name": "is-subdir", "direct": false, "version": "1.2.0", "ecosystem": "npm" }, { "name": "is-what", "direct": false, "version": "4.1.16", "ecosystem": "npm" }, { "name": "is-windows", "direct": false, "version": "1.0.2", "ecosystem": "npm" }, { "name": "isexe", "direct": false, "version": "2.0.0", "ecosystem": "npm" }, { "name": "jackspeak", "direct": false, "version": "3.4.3", "ecosystem": "npm" }, { "name": "joycon", "direct": false, "version": "3.1.1", "ecosystem": "npm" }, { "name": "js-tokens", "direct": false, "version": "9.0.1", "ecosystem": "npm" }, { "name": "js-yaml", "direct": false, "version": "3.14.2", "ecosystem": "npm" }, { "name": "js-yaml", "direct": false, "version": "4.1.1", "ecosystem": "npm" }, { "name": "jsonfile", "direct": false, "version": "4.0.0", "ecosystem": "npm" }, { "name": "kleur", "direct": false, "version": "4.1.5", "ecosystem": "npm" }, { "name": "lilconfig", "direct": false, "version": "3.1.2", "ecosystem": "npm" }, { "name": "lines-and-columns", "direct": false, "version": "1.2.4", "ecosystem": "npm" }, { "name": "load-tsconfig", "direct": false, "version": "0.2.5", "ecosystem": "npm" }, { "name": "locate-path", "direct": false, "version": "5.0.0", "ecosystem": "npm" }, { "name": "lodash.startcase", "direct": false, "version": "4.4.0", "ecosystem": "npm" }, { "name": "loupe", "direct": false, "version": "3.2.0", "ecosystem": "npm" }, { "name": "lru-cache", "direct": false, "version": "10.4.3", "ecosystem": "npm" }, { "name": "magic-string", "direct": false, "version": "0.30.17", "ecosystem": "npm" }, { "name": "mark.js", "direct": false, "version": "8.11.1", "ecosystem": "npm" }, { "name": "mdast-util-to-hast", "direct": false, "version": "13.2.0", "ecosystem": "npm" }, { "name": "merge2", "direct": false, "version": "1.4.1", "ecosystem": "npm" }, { "name": "micromark-util-character", "direct": false, "version": "2.1.1", "ecosystem": "npm" }, { "name": "micromark-util-encode", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "micromark-util-sanitize-uri", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "micromark-util-symbol", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "micromark-util-types", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "micromatch", "direct": false, "version": "4.0.8", "ecosystem": "npm" }, { "name": "miniflare", "direct": false, "version": "4.20260120.0", "ecosystem": "npm" }, { "name": "minimatch", "direct": false, "version": "9.0.5", "ecosystem": "npm" }, { "name": "minipass", "direct": false, "version": "7.1.2", "ecosystem": "npm" }, { "name": "minisearch", "direct": false, "version": "7.1.1", "ecosystem": "npm" }, { "name": "mitt", "direct": false, "version": "3.0.1", "ecosystem": "npm" }, { "name": "mlly", "direct": false, "version": "1.7.4", "ecosystem": "npm" }, { "name": "mri", "direct": false, "version": "1.2.0", "ecosystem": "npm" }, { "name": "ms", "direct": false, "version": "2.1.3", "ecosystem": "npm" }, { "name": "mz", "direct": false, "version": "2.7.0", "ecosystem": "npm" }, { "name": "nanoid", "direct": false, "version": "3.3.8", "ecosystem": "npm" }, { "name": "node-fetch", "direct": false, "version": "2.7.0", "ecosystem": "npm" }, { "name": "object-assign", "direct": false, "version": "4.1.1", "ecosystem": "npm" }, { "name": "oniguruma-to-es", "direct": false, "version": "3.1.0", "ecosystem": "npm" }, { "name": "outdent", "direct": false, "version": "0.5.0", "ecosystem": "npm" }, { "name": "p-filter", "direct": false, "version": "2.1.0", "ecosystem": "npm" }, { "name": "p-limit", "direct": false, "version": "2.3.0", "ecosystem": "npm" }, { "name": "p-locate", "direct": false, "version": "4.1.0", "ecosystem": "npm" }, { "name": "p-map", "direct": false, "version": "2.1.0", "ecosystem": "npm" }, { "name": "p-try", "direct": false, "version": "2.2.0", "ecosystem": "npm" }, { "name": "package-json-from-dist", "direct": false, "version": "1.0.1", "ecosystem": "npm" }, { "name": "package-manager-detector", "direct": false, "version": "0.2.11", "ecosystem": "npm" }, { "name": "path-exists", "direct": false, "version": "4.0.0", "ecosystem": "npm" }, { "name": "path-key", "direct": false, "version": "3.1.1", "ecosystem": "npm" }, { "name": "path-scurry", "direct": false, "version": "1.11.1", "ecosystem": "npm" }, { "name": "path-to-regexp", "direct": false, "version": "6.3.0", "ecosystem": "npm" }, { "name": "path-type", "direct": false, "version": "4.0.0", "ecosystem": "npm" }, { "name": "pathe", "direct": false, "version": "2.0.3", "ecosystem": "npm" }, { "name": "pathval", "direct": false, "version": "2.0.1", "ecosystem": "npm" }, { "name": "perfect-debounce", "direct": false, "version": "1.0.0", "ecosystem": "npm" }, { "name": "picocolors", "direct": false, "version": "1.1.1", "ecosystem": "npm" }, { "name": "picomatch", "direct": false, "version": "2.3.1", "ecosystem": "npm" }, { "name": "picomatch", "direct": false, "version": "4.0.2", "ecosystem": "npm" }, { "name": "pify", "direct": false, "version": "4.0.1", "ecosystem": "npm" }, { "name": "pirates", "direct": false, "version": "4.0.6", "ecosystem": "npm" }, { "name": "pkg-types", "direct": false, "version": "1.3.1", "ecosystem": "npm" }, { "name": "postcss", "direct": false, "version": "8.5.2", "ecosystem": "npm" }, { "name": "postcss-load-config", "direct": false, "version": "6.0.1", "ecosystem": "npm" }, { "name": "preact", "direct": false, "version": "10.25.4", "ecosystem": "npm" }, { "name": "prettier", "direct": false, "version": "2.8.8", "ecosystem": "npm" }, { "name": "property-information", "direct": false, "version": "6.5.0", "ecosystem": "npm" }, { "name": "quansync", "direct": false, "version": "0.2.11", "ecosystem": "npm" }, { "name": "queue-microtask", "direct": false, "version": "1.2.3", "ecosystem": "npm" }, { "name": "read-yaml-file", "direct": false, "version": "1.1.0", "ecosystem": "npm" }, { "name": "readdirp", "direct": false, "version": "4.1.2", "ecosystem": "npm" }, { "name": "regex", "direct": false, "version": "6.0.1", "ecosystem": "npm" }, { "name": "regex-recursion", "direct": false, "version": "6.0.2", "ecosystem": "npm" }, { "name": "regex-utilities", "direct": false, "version": "2.3.0", "ecosystem": "npm" }, { "name": "resolve-from", "direct": false, "version": "5.0.0", "ecosystem": "npm" }, { "name": "reusify", "direct": false, "version": "1.1.0", "ecosystem": "npm" }, { "name": "rfdc", "direct": false, "version": "1.4.1", "ecosystem": "npm" }, { "name": "rollup", "direct": false, "version": "4.43.0", "ecosystem": "npm" }, { "name": "run-parallel", "direct": false, "version": "1.2.0", "ecosystem": "npm" }, { "name": "safer-buffer", "direct": false, "version": "2.1.2", "ecosystem": "npm" }, { "name": "search-insights", "direct": false, "version": "2.17.3", "ecosystem": "npm" }, { "name": "semver", "direct": false, "version": "7.7.3", "ecosystem": "npm" }, { "name": "sharp", "direct": false, "version": "0.34.5", "ecosystem": "npm" }, { "name": "shebang-command", "direct": false, "version": "2.0.0", "ecosystem": "npm" }, { "name": "shebang-regex", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "shiki", "direct": false, "version": "2.3.2", "ecosystem": "npm" }, { "name": "siginfo", "direct": false, "version": "2.0.0", "ecosystem": "npm" }, { "name": "signal-exit", "direct": false, "version": "4.1.0", "ecosystem": "npm" }, { "name": "slash", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "source-map", "direct": false, "version": "0.7.6", "ecosystem": "npm" }, { "name": "source-map-js", "direct": false, "version": "1.2.1", "ecosystem": "npm" }, { "name": "space-separated-tokens", "direct": false, "version": "2.0.2", "ecosystem": "npm" }, { "name": "spawndamnit", "direct": false, "version": "3.0.1", "ecosystem": "npm" }, { "name": "speakingurl", "direct": false, "version": "14.0.1", "ecosystem": "npm" }, { "name": "sprintf-js", "direct": false, "version": "1.0.3", "ecosystem": "npm" }, { "name": "stackback", "direct": false, "version": "0.0.2", "ecosystem": "npm" }, { "name": "std-env", "direct": false, "version": "3.9.0", "ecosystem": "npm" }, { "name": "string-width", "direct": false, "version": "4.2.3", "ecosystem": "npm" }, { "name": "string-width", "direct": false, "version": "5.1.2", "ecosystem": "npm" }, { "name": "stringify-entities", "direct": false, "version": "4.0.4", "ecosystem": "npm" }, { "name": "strip-ansi", "direct": false, "version": "6.0.1", "ecosystem": "npm" }, { "name": "strip-ansi", "direct": false, "version": "7.1.0", "ecosystem": "npm" }, { "name": "strip-bom", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "strip-literal", "direct": false, "version": "3.0.0", "ecosystem": "npm" }, { "name": "sucrase", "direct": false, "version": "3.35.0", "ecosystem": "npm" }, { "name": "superjson", "direct": false, "version": "2.2.2", "ecosystem": "npm" }, { "name": "supports-color", "direct": false, "version": "10.2.2", "ecosystem": "npm" }, { "name": "tabbable", "direct": false, "version": "6.2.0", "ecosystem": "npm" }, { "name": "term-size", "direct": false, "version": "2.2.1", "ecosystem": "npm" }, { "name": "thenify", "direct": false, "version": "3.3.1", "ecosystem": "npm" }, { "name": "thenify-all", "direct": false, "version": "1.6.0", "ecosystem": "npm" }, { "name": "tinybench", "direct": false, "version": "2.9.0", "ecosystem": "npm" }, { "name": "tinyexec", "direct": false, "version": "0.3.2", "ecosystem": "npm" }, { "name": "tinyglobby", "direct": false, "version": "0.2.14", "ecosystem": "npm" }, { "name": "tinypool", "direct": false, "version": "1.1.1", "ecosystem": "npm" }, { "name": "tinyrainbow", "direct": false, "version": "2.0.0", "ecosystem": "npm" }, { "name": "tinyspy", "direct": false, "version": "4.0.3", "ecosystem": "npm" }, { "name": "to-regex-range", "direct": false, "version": "5.0.1", "ecosystem": "npm" }, { "name": "tr46", "direct": false, "version": "0.0.3", "ecosystem": "npm" }, { "name": "tree-kill", "direct": false, "version": "1.2.2", "ecosystem": "npm" }, { "name": "trim-lines", "direct": false, "version": "3.0.1", "ecosystem": "npm" }, { "name": "ts-interface-checker", "direct": false, "version": "0.1.13", "ecosystem": "npm" }, { "name": "tslib", "direct": false, "version": "2.8.1", "ecosystem": "npm" }, { "name": "tsup", "direct": false, "version": "8.5.1", "ecosystem": "npm" }, { "name": "typescript", "direct": false, "version": "5.9.3", "ecosystem": "npm" }, { "name": "ufo", "direct": false, "version": "1.6.1", "ecosystem": "npm" }, { "name": "undici", "direct": false, "version": "7.18.2", "ecosystem": "npm" }, { "name": "undici-types", "direct": false, "version": "6.19.8", "ecosystem": "npm" }, { "name": "unenv", "direct": false, "version": "2.0.0-rc.24", "ecosystem": "npm" }, { "name": "unist-util-is", "direct": false, "version": "6.0.0", "ecosystem": "npm" }, { "name": "unist-util-position", "direct": false, "version": "5.0.0", "ecosystem": "npm" }, { "name": "unist-util-stringify-position", "direct": false, "version": "4.0.0", "ecosystem": "npm" }, { "name": "unist-util-visit", "direct": false, "version": "5.0.0", "ecosystem": "npm" }, { "name": "unist-util-visit-parents", "direct": false, "version": "6.0.1", "ecosystem": "npm" }, { "name": "universalify", "direct": false, "version": "0.1.2", "ecosystem": "npm" }, { "name": "vfile", "direct": false, "version": "6.0.3", "ecosystem": "npm" }, { "name": "vfile-message", "direct": false, "version": "4.0.2", "ecosystem": "npm" }, { "name": "vite", "direct": false, "version": "5.4.14", "ecosystem": "npm" }, { "name": "vite-node", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "vitepress", "direct": false, "version": "1.6.4", "ecosystem": "npm" }, { "name": "vitest", "direct": false, "version": "3.2.4", "ecosystem": "npm" }, { "name": "vue", "direct": false, "version": "3.5.13", "ecosystem": "npm" }, { "name": "webidl-conversions", "direct": false, "version": "3.0.1", "ecosystem": "npm" }, { "name": "whatwg-url", "direct": false, "version": "5.0.0", "ecosystem": "npm" }, { "name": "which", "direct": false, "version": "2.0.2", "ecosystem": "npm" }, { "name": "why-is-node-running", "direct": false, "version": "2.3.0", "ecosystem": "npm" }, { "name": "workerd", "direct": false, "version": "1.20260120.0", "ecosystem": "npm" }, { "name": "wrangler", "direct": false, "version": "4.60.0", "ecosystem": "npm" }, { "name": "wrap-ansi", "direct": false, "version": "7.0.0", "ecosystem": "npm" }, { "name": "wrap-ansi", "direct": false, "version": "8.1.0", "ecosystem": "npm" }, { "name": "ws", "direct": false, "version": "8.18.0", "ecosystem": "npm" }, { "name": "youch", "direct": false, "version": "4.1.0-beta.10", "ecosystem": "npm" }, { "name": "youch-core", "direct": false, "version": "0.3.3", "ecosystem": "npm" }, { "name": "zod", "direct": false, "version": "3.25.76", "ecosystem": "npm" }, { "name": "zwitch", "direct": false, "version": "2.0.4", "ecosystem": "npm" } ], "collected": true, "truncated": false, "total_count": 469, "direct_count": 0, "indirect_count": 469 } }, "maintainership": { "issues": { "open_prs": 1, "merged_prs": 96, "open_issues": 1, "closed_ratio": 0.963, "closed_issues": 26, "closed_unmerged_prs": 46 }, "bus_factor": 1, "bot_contributors": 3, "top_contributors": [ { "type": "User", "login": "G4brym", "commits": 183, "avatar_url": "https://avatars.githubusercontent.com/u/5445926?v=4" }, { "type": "User", "login": "LuisDuarte1", "commits": 3, "avatar_url": "https://avatars.githubusercontent.com/u/24589619?v=4" }, { "type": "User", "login": "fc221", "commits": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24759664?v=4" }, { "type": "User", "login": "Caio-Nogueira", "commits": 1, "avatar_url": "https://avatars.githubusercontent.com/u/56550668?v=4" }, { "type": "User", "login": "johnlombardo-dev", "commits": 1, "avatar_url": "https://avatars.githubusercontent.com/u/1026196?v=4" }, { "type": "User", "login": "repalash", "commits": 1, "avatar_url": "https://avatars.githubusercontent.com/u/7613915?v=4" }, { "type": "User", "login": "tarushnagpal", "commits": 1, "avatar_url": "https://avatars.githubusercontent.com/u/24592076?v=4" } ], "contributors_sampled": 7, "top_contributor_share": 0.958 }, "quality_signals": { "has_ci": true, "has_tests": true, "ci_workflows": [ "changeset-check.yml", "release.yml", "test.yml" ], "has_docs_dir": true, "linter_configs": [ "biome.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": null, "reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection" }, { "name": "CI-Tests", "score": 9, "reason": "20 out of 21 merged PRs checked by a CI test -- score normalized to 9", "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/28 approved changesets -- score normalized to 0", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review" }, { "name": "Contributors", "score": 3, "reason": "project has 1 contributing companies or organizations -- score normalized to 3", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors" }, { "name": "Dangerous-Workflow", "score": 10, "reason": "no dangerous workflow patterns detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow" }, { "name": "Dependency-Update-Tool", "score": 10, "reason": "update tool detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool" }, { "name": "Fuzzing", "score": 0, "reason": "project is not fuzzed", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing" }, { "name": "License", "score": 10, "reason": "license file detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license" }, { "name": "Maintained", "score": 1, "reason": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1", "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": 0, "reason": "dependency not pinned by hash detected -- score normalized to 0", "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": null, "reason": "no releases found", "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": "51 existing vulnerabilities detected", "documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities" } ], "commit": "38ccea78197007baadccc27dc398f2821d7dc20c", "ran_at": "2026-08-04T06:04:40Z", "aggregate_score": 3.7, "scorecard_version": "v5.5.0" }, "has_codeql_workflow": false, "has_security_policy": false, "has_dependabot_config": true }, "contribution_flow": { "collected": true, "recent_prs": { "merged_7d": 0, "decided_7d": 0, "merged_30d": 1, "authors_30d": 1, "decided_30d": 1, "sample_size": 60, "window_days": 30, "sample_exhausted": false, "authors_probed_30d": 1, "newcomer_merged_30d": 0, "bot_prs_excluded_30d": 1, "newcomer_authors_30d": 0, "newcomer_decided_30d": 0 }, "ci_last_run_at": "2026-07-24T14:08:54Z", "oldest_open_prs": [ { "number": 166, "created_at": "2026-03-23T16:58:22Z", "last_comment_at": null, "last_comment_author": null } ], "last_merged_pr_at": "2026-07-24T14:08:07Z", "ci_last_conclusion": "SUCCESS", "oldest_open_issues": [ { "number": 87, "created_at": "2024-11-25T16:53:04Z", "last_comment_at": "2025-08-17T18:29:12Z", "last_comment_author": "igoforth" } ] } }, "config": { "disabled_metrics": [], "disabled_categories": [], "disabled_components": {} }, "source": { "url": "https://github.com/G4brym/workers-qb", "host": "github.com", "name": "workers-qb", "owner": "G4brym" }, "metrics": { "overall": { "key": "overall", "band": "good", "name": "Overall health", "note": "The weighted overall 67 is calibrated to 78 on the published index scale (record calibration 2026-08-02).", "notes": [ { "code": "overall_calibration", "params": { "raw": 67, "calibrated": 78, "calibration": "2026-08-02" } } ], "value": 78, "inputs": { "security": 50, "vitality": 69, "community": 60, "governance": 60, "calibration": "2026-08-02", "engineering": 89, "ai_readiness": 78, "weighted_overall_raw": 67 }, "components": [] }, "categories": [ { "key": "vitality", "band": "good", "name": "Vitality", "value": 69, "weight": 0.21, "metrics": [ { "key": "development_activity", "band": "moderate", "name": "Development activity", "note": null, "notes": [], "value": 53, "inputs": { "commits_last_year": 51, "human_commit_share": 0.82, "days_since_last_push": 10, "active_weeks_last_year": 11 }, "components": [ { "key": "push_recency", "name": "Push recency", "detail": "last push 10 days ago", "points": 28.8, "status": "partial", "details": [ { "code": "push_recency", "params": { "days": 10 } } ], "max_points": 36 }, { "key": "commit_cadence", "name": "Commit cadence", "detail": "11/52 weeks with commits", "points": 7.6, "status": "partial", "details": [ { "code": "commit_cadence_weeks", "params": { "weeks": 11 } } ], "max_points": 36 }, { "key": "commit_volume", "name": "Commit volume", "detail": "51 commits in the last year", "points": 15.4, "status": "partial", "details": [ { "code": "commits_last_year", "params": { "count": 51 } } ], "max_points": 18 }, { "key": "openssf_scorecard_maintained", "name": "OpenSSF Scorecard: Maintained", "detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1", "points": 1, "status": "partial", "details": [], "max_points": 10 } ] }, { "key": "release_discipline", "band": "excellent", "name": "Release discipline", "note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "openssf_scorecard_signed_releases" ] } }, { "code": "weights_renormalized", "params": {} } ], "value": 92, "inputs": { "releases_count": 52, "latest_release_tag": "v1.15.0", "releases_from_tags": false, "days_since_latest_release": 10, "mean_days_between_releases": 61.8 }, "components": [ { "key": "ships_releases", "name": "Ships releases", "detail": "52 releases published", "points": 27, "status": "met", "details": [ { "code": "releases_published", "params": { "count": 52 } } ], "max_points": 27 }, { "key": "release_recency", "name": "Release recency", "detail": "latest release 10 days ago", "points": 36, "status": "met", "details": [ { "code": "release_recency", "params": { "days": 10 } } ], "max_points": 36 }, { "key": "release_cadence", "name": "Release cadence", "detail": "a release every ~61.8 days", "points": 19.8, "status": "partial", "details": [ { "code": "release_cadence", "params": { "gap": 61.8 } } ], "max_points": 27 }, { "key": "openssf_scorecard_signed_releases", "name": "OpenSSF Scorecard: Signed-Releases", "detail": "no releases found", "points": 0, "status": "excluded", "details": [ { "code": "no_data", "params": {} } ], "max_points": 10 } ] }, { "key": "abandonment", "band": "exceptional", "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": 11, "days_since_last_human_commit_is_floor": false }, "components": [ { "key": "project_is_still_maintained", "name": "Project is still maintained", "detail": "last human commit 11 days ago", "points": 100, "status": "met", "details": [ { "code": "abandonment_maintained", "params": { "days": 11 } } ], "max_points": 100 } ] } ], "description": "Is the project alive — is code being written and are releases shipping?" }, { "key": "community", "band": "moderate", "name": "Community & Adoption", "value": 60, "weight": 0.17, "metrics": [ { "key": "popularity", "band": "moderate", "name": "Popularity & adoption", "note": null, "notes": [], "value": 56, "inputs": { "forks": 26, "stars": 398, "watchers": 3, "growth_state": "unverified", "growth_factor_pct": 100, "growth_unverified_reason": "no_history" }, "components": [ { "key": "stars", "name": "Stars", "detail": "398 stars", "points": 42.2, "status": "partial", "details": [ { "code": "stars", "params": { "count": 398 } } ], "max_points": 60 }, { "key": "forks", "name": "Forks", "detail": "26 forks", "points": 11.7, "status": "partial", "details": [ { "code": "forks", "params": { "count": 26 } } ], "max_points": 25 }, { "key": "watchers", "name": "Watchers", "detail": "3 watchers", "points": 1.7, "status": "partial", "details": [ { "code": "watchers", "params": { "count": 3 } } ], "max_points": 15 } ] }, { "key": "community_health", "band": "moderate", "name": "Community health", "note": null, "notes": [], "value": 50, "inputs": { "has_readme": true, "has_license": true, "readme_badges": 3, "has_contributing": false, "has_issue_template": false, "has_code_of_conduct": false, "readme_badge_services": [ "shields.io" ], "has_pull_request_template": false }, "components": [ { "key": "readme", "name": "README", "detail": null, "points": 22.5, "status": "met", "details": [], "max_points": 22.5 }, { "key": "license", "name": "License", "detail": "recognized license (MIT)", "points": 22.5, "status": "met", "details": [ { "code": "license_standard", "params": {} }, { "code": "license_spdx", "params": { "spdx": "MIT" } } ], "max_points": 22.5 }, { "key": "contributing_guide", "name": "CONTRIBUTING guide", "detail": null, "points": 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": "excellent", "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": 80, "inputs": { "packages": [ "workers-qb" ], "dependents": null, "ecosystems": "npm", "total_downloads": null, "monthly_downloads": 64152 }, "components": [ { "key": "monthly_downloads", "name": "Monthly downloads", "detail": "64,152 downloads/month across npm", "points": 64.1, "status": "partial", "details": [ { "code": "downloads_monthly", "params": { "count": 64152, "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": 60, "weight": 0.23, "metrics": [ { "key": "maintainer_resilience", "band": "at_risk", "name": "Maintainer resilience (bus factor)", "note": null, "notes": [], "value": 22, "inputs": { "bus_factor": 1, "contributors_sampled": 7, "top_contributor_share": 0.958 }, "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 96% of commits", "points": 0.9, "status": "partial", "details": [ { "code": "top_contributor_share", "params": { "share": 96 } } ], "max_points": 22.5 }, { "key": "contributor_breadth", "name": "Contributor breadth", "detail": "7 contributors", "points": 9.5, "status": "partial", "details": [ { "code": "contributors_sampled", "params": { "count": 7 } } ], "max_points": 13.5 }, { "key": "openssf_scorecard_contributors", "name": "OpenSSF Scorecard: Contributors", "detail": "project has 1 contributing companies or organizations -- score normalized to 3", "points": 3, "status": "partial", "details": [], "max_points": 10 } ] }, { "key": "responsiveness", "band": "good", "name": "Issue & PR responsiveness", "note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "newcomer_pr_acceptance" ] } }, { "code": "weights_renormalized", "params": {} } ], "value": 70, "inputs": { "merged_prs": 96, "open_issues": 1, "closed_issues": 26, "prs_merged_7d": 0, "prs_decided_7d": 0, "prs_merged_30d": 1, "prs_decided_30d": 1, "issue_closed_ratio": 0.963, "closed_unmerged_prs": 46, "first_time_authors_30d": 0, "first_time_prs_merged_30d": 0, "first_time_prs_decided_30d": 0 }, "components": [ { "key": "issue_resolution", "name": "Issue resolution", "detail": "96% of issues closed", "points": 40.4, "status": "partial", "details": [ { "code": "issues_closed_share", "params": { "share": 96 } } ], "max_points": 42 }, { "key": "pr_acceptance", "name": "PR acceptance", "detail": "96/142 decided PRs merged", "points": 20.3, "status": "partial", "details": [ { "code": "decided_prs_merged", "params": { "merged": 96, "decided": 142 } } ], "max_points": 30 }, { "key": "newcomer_pr_acceptance", "name": "Newcomer PR acceptance", "detail": "no first-time contributor's PR decided in 30d", "points": 0, "status": "excluded", "details": [ { "code": "no_newcomer_prs", "params": { "days": 30 } } ], "max_points": 13 }, { "key": "openssf_scorecard_code_review", "name": "OpenSSF Scorecard: Code-Review", "detail": "Found 1/28 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": 64, "inputs": { "followers": 194, "owner_type": "User", "is_verified": null, "owner_login": "G4brym", "public_repos": 58, "account_age_days": 4708 }, "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": "194 followers of G4brym", "points": 16.5, "status": "partial", "details": [ { "code": "owner_followers", "params": { "count": 194, "login": "G4brym" } } ], "max_points": 25 }, { "key": "track_record", "name": "Track record", "detail": "58 public repos, account ~12 yr old", "points": 24.9, "status": "partial", "details": [ { "code": "public_repos", "params": { "count": 58 } }, { "code": "account_age_years", "params": { "years": 12 } } ], "max_points": 25 } ] }, { "key": "package_maintenance", "band": "exceptional", "name": "Package maintenance", "note": null, "notes": [], "value": 100, "inputs": { "packages": [ "workers-qb" ], "ecosystems": "npm", "any_deprecated": false, "min_days_since_publish": 10 }, "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 10 days ago", "points": 35, "status": "met", "details": [ { "code": "publish_recency", "params": { "days": 10 } } ], "max_points": 35 }, { "key": "version_history", "name": "Version history", "detail": "53 published versions", "points": 20, "status": "met", "details": [ { "code": "published_versions", "params": { "count": 53 } } ], "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": "excellent", "name": "Engineering Quality", "value": 89, "weight": 0.19, "metrics": [ { "key": "engineering_practices", "band": "excellent", "name": "Engineering practices", "note": null, "notes": [], "value": 88, "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": "3 workflow(s)", "points": 24, "status": "met", "details": [ { "code": "ci_workflows", "params": { "count": 3 } } ], "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": "biome.json", "points": 16, "status": "met", "details": [ { "code": "file_list", "params": { "files": "biome.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": "20 out of 21 merged PRs checked by a CI test -- score normalized to 9", "points": 18, "status": "partial", "details": [], "max_points": 20 } ] }, { "key": "documentation", "band": "excellent", "name": "Documentation", "note": null, "notes": [], "value": 90, "inputs": { "topics": [ "cloudflare-workers", "sql-builder", "worker", "cloudflare-d1", "d1sql", "workers", "typescript", "query-builder", "javascript", "cloudflare", "nodejs" ], "has_wiki": false, "homepage": "https://workers-qb.massadas.com", "has_readme": true, "has_docs_dir": true, "has_description": true }, "components": [ { "key": "readme", "name": "README", "detail": null, "points": 30, "status": "met", "details": [], "max_points": 30 }, { "key": "documentation_directory", "name": "Documentation directory", "detail": null, "points": 25, "status": "met", "details": [], "max_points": 25 }, { "key": "documentation_homepage_site", "name": "Documentation / homepage site", "detail": "https://workers-qb.massadas.com", "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": "11 topics", "points": 10, "status": "met", "details": [ { "code": "topics_count", "params": { "count": 11 } } ], "max_points": 10 }, { "key": "wiki", "name": "Wiki", "detail": null, "points": 0, "status": "missed", "details": [], "max_points": 10 } ] } ], "description": "Are baseline engineering and documentation practices in place?" }, { "key": "security", "band": "moderate", "name": "Security", "value": 50, "weight": 0.16, "metrics": [ { "key": "security_posture", "band": "weak", "name": "Security posture", "note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "branch_protection", "packaging", "signed_releases" ] } }, { "code": "weights_renormalized", "params": {} } ], "value": 37, "inputs": { "source": "openssf_scorecard", "checks_evaluated": 15, "scorecard_version": "v5.5.0", "checks_inconclusive": 3, "scorecard_aggregate": 3.7 }, "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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md", "points": 0, "status": "excluded", "details": [ { "code": "no_data", "params": {} } ], "max_points": 7.5 }, { "key": "ci_tests", "name": "CI-Tests", "detail": "20 out of 21 merged PRs checked by a CI test -- score normalized to 9", "points": 2.2, "status": "partial", "details": [], "max_points": 2.5 }, { "key": "cii_best_practices", "name": "CII-Best-Practices", "detail": "no effort to earn an OpenSSF best practices badge detected", "points": 0, "status": "missed", "details": [], "max_points": 2.5 }, { "key": "code_review", "name": "Code-Review", "detail": "Found 1/28 approved changesets -- score normalized to 0", "points": 0, "status": "missed", "details": [], "max_points": 7.5 }, { "key": "contributors", "name": "Contributors", "detail": "project has 1 contributing companies or organizations -- score normalized to 3", "points": 0.8, "status": "partial", "details": [], "max_points": 2.5 }, { "key": "dangerous_workflow", "name": "Dangerous-Workflow", "detail": "no dangerous workflow patterns detected", "points": 10, "status": "met", "details": [], "max_points": 10 }, { "key": "dependency_update_tool", "name": "Dependency-Update-Tool", "detail": "update tool detected", "points": 7.5, "status": "met", "details": [], "max_points": 7.5 }, { "key": "fuzzing", "name": "Fuzzing", "detail": "project is not fuzzed", "points": 0, "status": "missed", "details": [], "max_points": 5 }, { "key": "license", "name": "License", "detail": "license file detected", "points": 2.5, "status": "met", "details": [], "max_points": 2.5 }, { "key": "maintained", "name": "Maintained", "detail": "2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1", "points": 0.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 0", "points": 0, "status": "missed", "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": "no releases found", "points": 0, "status": "excluded", "details": [ { "code": "no_data", "params": {} } ], "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": "51 existing vulnerabilities detected", "points": 0, "status": "missed", "details": [], "max_points": 7.5 } ] }, { "key": "dependency_advisories", "band": "exceptional", "name": "Dependency advisories", "note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 469 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.", "notes": [ { "code": "excluded_no_data", "params": { "components": [ "indirect_dependencies_free_of_known_advisories", "no_advisories_left_outstanding" ] } }, { "code": "weights_renormalized", "params": {} }, { "code": "advisories_scope_repository", "params": { "assessed": 469 } }, { "code": "advisories_repo_graph_caveat", "params": {} }, { "code": "advisories_reachability", "params": {} } ], "value": 100, "inputs": { "source": "osv", "advisories": 55, "affected_packages": 16, "assessed_packages": 469, "unassessed_packages": 0, "affected_by_severity": "critical 2, high 12, moderate 2", "direct_affected_packages": 0 }, "components": [ { "key": "direct_dependencies_free_of_known_advisories", "name": "Direct dependencies free of known advisories", "detail": "no direct dependency carries a known advisory", "points": 35, "status": "met", "details": [ { "code": "no_direct_advisories", "params": {} } ], "max_points": 35 }, { "key": "indirect_dependencies_free_of_known_advisories", "name": "Indirect dependencies free of known advisories", "detail": "transitive set not separable from development and test dependencies in this scope", "points": 0, "status": "excluded", "details": [ { "code": "advisories_scope_not_separable", "params": {} } ], "max_points": 25 }, { "key": "no_advisories_left_outstanding", "name": "No advisories left outstanding", "detail": "no advisory carries a publication date", "points": 0, "status": "excluded", "details": [ { "code": "advisories_no_publication_date", "params": {} } ], "max_points": 40 } ] }, { "key": "malicious_dependencies", "band": "exceptional", "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": 469, "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": "exceptional", "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" ], "commit_weight_rule": { "min_commits": 50, "min_commit_share": 0.1 }, "review_only_matches": 0, "below_threshold_exposures": [], "assessed_self_published_locations": 8 }, "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": "good", "name": "AI Readiness", "value": 78, "weight": 0.04, "metrics": [ { "key": "ai_agent_context", "band": "good", "name": "Agent context & guidance", "note": null, "notes": [], "value": 75, "inputs": { "has_llms_txt": false, "legible_history_share": 0.561, "agent_instruction_files": [ "CLAUDE.md" ], "agent_instruction_max_bytes": 2784 }, "components": [ { "key": "agent_instructions", "name": "Agent instructions", "detail": "CLAUDE.md", "points": 45, "status": "met", "details": [ { "code": "file_list", "params": { "files": "CLAUDE.md" } } ], "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": "46 of 82 human commits state their intent (structured subject or explanatory body)", "points": 29.9, "status": "partial", "details": [ { "code": "legible_history", "params": { "legible": 46, "sampled": 82 } } ], "max_points": 40 } ] }, { "key": "ai_verify_loop", "band": "good", "name": "Verify loop (build / test / typecheck)", "note": null, "notes": [], "value": 72, "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": [ "tests/tsconfig.json", "tsconfig.json" ], "agent_commit_share": 0.25, "toolchain_manifests": [], "dependency_bot_commit_share": 0.15 }, "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": "biome.json", "points": 11, "status": "met", "details": [ { "code": "file_list", "params": { "files": "biome.json" } } ], "max_points": 11 }, { "key": "static_type_checking", "name": "Static type checking", "detail": "tests/tsconfig.json, tsconfig.json", "points": 11, "status": "met", "details": [ { "code": "file_list", "params": { "files": "tests/tsconfig.json, tsconfig.json" } } ], "max_points": 11 }, { "key": "reproducible_environment", "name": "Reproducible environment", "detail": "lockfile", "points": 10, "status": "met", "details": [ { "code": "file_list", "params": { "files": "lockfile" } } ], "max_points": 10 }, { "key": "demonstrated_agent_practice", "name": "Demonstrated agent practice", "detail": "25 of the last 100 commits agent-authored or agent-credited", "points": 10, "status": "met", "details": [ { "code": "agent_authored_commits", "params": { "count": 25, "sampled": 100 } } ], "max_points": 10 }, { "key": "automated_maintenance", "name": "Automated maintenance", "detail": "15 of the last 100 commits are automated dependency updates", "points": 8, "status": "met", "details": [ { "code": "dependency_bot_commits", "params": { "count": 15, "sampled": 100 } } ], "max_points": 8 }, { "key": "openssf_scorecard_pinned_dependencies", "name": "OpenSSF Scorecard: Pinned-Dependencies", "detail": "dependency not pinned by hash detected -- score normalized to 0", "points": 0, "status": "missed", "details": [], "max_points": 10 } ] }, { "key": "ai_code_legibility", "band": "exceptional", "name": "Code legibility for models", "note": null, "notes": [], "value": 100, "inputs": { "primary_language": "TypeScript", "largest_source_bytes": 49305, "source_files_sampled": 39, "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/39 source files over 60KB", "points": 55, "status": "met", "details": [ { "code": "oversized_source_files", "params": { "kb": 60, "sampled": 39, "oversized": 0 } } ], "max_points": 55 } ] } ], "description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)." } ], "classification": { "top": [ "library" ], "labels": [ "library" ], "scores": { "library": 16 }, "primary": "library", "evidence": [ { "tier": "declared", "label": "library", "source": "npm.entry", "weight": 8 }, { "tier": "distribution", "label": "library", "source": "registry:npm", "weight": 6 }, { "tier": "tags", "label": "library", "source": "tag:middleware", "weight": 2 } ], "artifacts": [ { "path": "package.json", "labels": [ "library" ], "ecosystem": "npm" } ], "confidence": "high", "host_extension": false, "runs_as_process": false, "consumed_by_code": true }, "metrics_version": "2.5.0" }, "warnings": [ "Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token" ], "report_type": "repository", "generated_at": "2026-08-04T06:04:56.701429Z", "schema_version": "0.30.0", "badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/g/G4brym/workers-qb.svg", "full_name": "G4brym/workers-qb", "license_state": "standard", "license_spdx": "MIT" }, "repoMeta": null, "notFound": false, "related": [ { "id": 49862, "full_name": "middyjs/middy", "url": "https://github.com/middyjs/middy", "description": "🛵 The stylish Node.js middleware engine for AWS Lambda 🛵", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "JavaScript", "languages": [ "JavaScript" ], "topics": [ "serverless", "aws", "aws-lambda", "framework", "middleware", "lambda-handler", "lambda", "nodejs", "javascript", "typescript", "middy", "node", "serverless-framework", "aws-serverless", "serverless-applications", "serverless-express", "powertools", "aws-powertools", "middleware-engine", "node.js", "esm", "api-gateway", "function-url", "streamify-response", "durable-function", "event-driven", "observability", "dsql", "aurora-dsql", "postgresql", "dynamodb", "appconfig", "cors", "cross-origin-resource-sharing", "credentials", "error", "logger", "kinesis", "sqs", "sns" ], "license_spdx": "MIT", "license_state": "standard", "stars": 3906, "forks": 400, "watchers": 34, "monthly_downloads": 4950430, "latest_score": 97, "latest_band": "exceptional", "latest_scanned_at": "2026-08-01T04:04:58.405818Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "icon_url": "", "icon_source_type": null, "badge_url": "" }, { "id": 4498, "full_name": "honojs/hono", "url": "https://github.com/honojs/hono", "description": "Web framework built on Web Standards", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "TypeScript", "languages": [ "TypeScript" ], "topics": [ "cloudflare", "web-framework", "cloudflare-workers", "npm", "router", "deno", "bun", "aws-lambda", "typescript", "hono", "web", "app", "http", "application", "framework", "workers", "fastly", "compute", "lambda", "nodejs" ], "license_spdx": "MIT", "license_state": "standard", "stars": 31586, "forks": 1201, "watchers": 87, "monthly_downloads": 217570965, "latest_score": 96, "latest_band": "exceptional", "latest_scanned_at": "2026-08-04T20:01:45.860040Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "icon_url": "/icon/v1/honojs/hono?v=8a253ca0-1", "icon_source_type": "homepage", "badge_url": "" }, { "id": 19077, "full_name": "cloudflare/workers-sdk", "url": "https://github.com/cloudflare/workers-sdk", "description": "⛅️ Home to Wrangler, the CLI for Cloudflare Workers®", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "TypeScript", "languages": [ "TypeScript" ], "topics": [ "serverless", "cli", "javascript", "wasm", "cloudflare", "cloudflare-workers" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 4342, "forks": 1355, "watchers": 67, "monthly_downloads": null, "latest_score": 96, "latest_band": "exceptional", "latest_scanned_at": "2026-07-17T22:58:22.733694Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "unverified", "red_flags": [], "icon_url": "", "icon_source_type": null, "badge_url": "" }, { "id": 23941, "full_name": "apify/crawlee", "url": "https://github.com/apify/crawlee", "description": "Crawlee—A web scraping and browser automation library for Node.js to build reliable crawlers. In JavaScript and TypeScript. Extract data for AI, LLMs, RAG, or GPTs. Download HTML, PDF, JPG, PNG, and other files from websites. Works with Puppeteer, Playwright, Cheerio, JSDOM, and raw HTTP. Both headful and headless mode. With proxy rotation.", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "TypeScript", "languages": [ "TypeScript", "MDX" ], "topics": [ "web-scraping", "web-crawling", "npm", "headless-chrome", "puppeteer", "automation", "apify", "scraping", "crawling", "crawler", "headless", "scraper", "web-crawler", "javascript", "nodejs", "playwright", "typescript", "chrome", "api", "crawlee", "types", "crawlers", "utilities", "utils" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 25188, "forks": 1593, "watchers": 133, "monthly_downloads": 5952432, "latest_score": 96, "latest_band": "exceptional", "latest_scanned_at": "2026-08-05T03:21:24.798917Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "icon_url": "/icon/v1/apify/crawlee?v=19b2bfc4-1", "icon_source_type": "homepage", "badge_url": "" }, { "id": 16084, "full_name": "valkey-io/valkey-glide", "url": "https://github.com/valkey-io/valkey-glide", "description": "An open source Valkey client library that supports Valkey, and Redis open source 6.2, 7.0 and 7.2. Valkey GLIDE is designed for reliability, optimized performance, and high-availability, for Valkey and Redis OSS based applications. GLIDE is a multi language client library, written in Rust with programming language bindings, such as Java and Python", "ecosystem": "npm", "ecosystems": [ "npm", "go", "crates", "maven", "pypi" ], "primary_language": "Java", "languages": [ "Java", "Python", "Rust", "Go", "TypeScript" ], "topics": [ "cache", "fault-tolerance", "golang", "java", "javascript", "kotlin", "nodejs", "open-source", "performance", "python", "reliability", "rust", "typescript", "valkey", "valkey-client", "database", "key-value", "csharp", "pubsub", "scala", "redis", "client", "driver", "napi", "cross-platform", "cluster", "standalone", "high-availability", "fault-tolerant", "distributed", "scalable", "resilient", "valkey-glide" ], "license_spdx": "Apache-2.0", "license_state": "standard", "stars": 767, "forks": 168, "watchers": 12, "monthly_downloads": 1695966, "latest_score": 98, "latest_band": "exceptional", "latest_scanned_at": "2026-07-24T13:54:33.733944Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "icon_url": "", "icon_source_type": null, "badge_url": "" }, { "id": 455, "full_name": "payloadcms/payload", "url": "https://github.com/payloadcms/payload", "description": "Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.", "ecosystem": "npm", "ecosystems": [ "npm" ], "primary_language": "TypeScript", "languages": [ "TypeScript" ], "topics": [ "headless-cms", "cms", "express", "graphql", "react", "payload", "nodejs", "typescript", "javascript", "mongodb", "headless", "content-management-system", "content-management", "mit-license", "open-source", "payloadcms", "jamstack", "postgres", "nextjs" ], "license_spdx": "MIT", "license_state": "standard", "stars": 43984, "forks": 3999, "watchers": 154, "monthly_downloads": 7035256, "latest_score": 98, "latest_band": "exceptional", "latest_scanned_at": "2026-08-05T00:21:16.595734Z", "has_high_risk_jurisdiction_exposure": false, "has_malicious_dependency": false, "growth_authenticity": "unverified", "abandonment_state": "maintained", "red_flags": [], "icon_url": "/icon/v1/payloadcms/payload?v=83d57533-1", "icon_source_type": "homepage", "badge_url": "" } ] } }
公开记录
软件健康报告模式 0.30.0 · 指标 2.5.0 · 2026-08-04 06:04 UTC

G4brym / workers-qb

Zero dependencies Query Builder for Cloudflare Workers

TypeScriptMIT★ 398 星标⑂ 26 复刻始于 2022年7月在 GitHub 上查看 ↗
类型如何判定

G4brym/workers-qb 的健康指数为 100 分中的 78 分,处于「良好」区间。 其得分最高的类别是Engineering Quality(89/100),最低的是Security(50/100)。 最近一次更新在 10 天前。 近期的大部分工作由 1 位贡献者完成。

78
总分 / 100
良好

软件健康指数

指标归入加权类别,统一采用 1–100 量表。总体分先取类别加权平均,再依据公开记录的分布进行校准,使各等级具有百分位含义;当公开证据触发高风险司法辖区政策时,评级会按政策调整,并设置 34(存在风险)的上限。

78
卓越93-100公开记录中的最高层级(约前 5%);基本满足所有检验标准
优秀80-92各方面均表现强劲;仅有少量不足
良好65-79健康;不足之处有限且可控
中等50-64可接受,但存在明显不足;建议进行审查
薄弱35-49多个领域存在实质性薄弱环节
存在风险20-34存在重大薄弱环节;采用时应保持审慎
危急1-19问题严重(项目被弃置、仅有单一维护者、缺乏基本工程规范)
活力社区与采用可持续性与治理工程质量安全AI 就绪度

评分画像

每条轴代表一个类别。形状比平均值更重要——健康的对象会填满整个图形,而“一峰一谷”式画像意味着某一维度的优势正掩盖另一维度的风险。

加权总体分 67 经校准后在公布的指数量表上为 78(记录校准 2026-08-02)。

所有权

Gabriel Massadas个人账户
194 关注者58 个公开仓库始于 2013年9月@Cloudflare

该仓库由个人账户拥有。相较于组织支持的项目,单一所有者项目的延续性风险更高。

软件包生态系统

按类别列示的指标

活力

项目是否仍有生命——是否仍在编写代码,是否仍在发布版本?

69良好 · 占总体的 21%
评分方式
28.8/36推送新近度 — 最近一次推送于 10 天前
7.6/36提交节奏 — 52 周中有 11 周有提交
15.4/18提交量 — 最近一年 51 次提交
1/10OpenSSF Scorecard:Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
所用输入
commits_last_year51
human_commit_share0.82
days_since_last_push10
active_weeks_last_year11

发布纪律

92优秀
评分方式
27/27有发布版本 — 已发布 52 个发布版本
36/36发布时效 — 最近一次发布版本于 10 天前
19.8/27发布节奏 — 约每 61.8 天发布一次
0/10OpenSSF Scorecard:Signed-Releases — 无数据
所用输入
releases_count52
latest_release_tagv1.15.0
releases_from_tags
days_since_latest_release10
mean_days_between_releases61.8
已排除计分(无数据或不适用):OpenSSF Scorecard:Signed-Releases。 其余权重已重新归一化。

社区与采用

项目是否拥有用户、下载量与关注度,并具备欢迎贡献者参与的配置?

60中等 · 占总体的 17%
评分方式
42.2/60星标 — 398 个星标
11.7/25复刻 — 26 个复刻
1.7/15关注者 — 3 位关注者
所用输入
forks26
stars398
watchers3
growth_stateunverified
growth_factor_pct100
growth_unverified_reasonno_history

社区健康

50中等
评分方式
22.5/22.5README
22.5/22.5许可证 — 可识别的许可证(MIT)
0/18CONTRIBUTING 指南
0/13.5行为准则
0/7.2议题模板
0/6.3PR 模板
所用输入
has_readme
has_license
readme_badges3
has_contributing
has_issue_template
has_code_of_conduct
readme_badge_servicesshields.io
has_pull_request_template
评分方式
64.1/80月度下载量 — npm 合计每月 64,152 次下载
0/20注册表被依赖数 — 该生态系统不报告此项
所用输入
packagesworkers-qb
dependents
ecosystemsnpm
total_downloads
monthly_downloads64,152
已排除计分(无数据或不适用):注册表被依赖数。 其余权重已重新归一化。

可持续性与治理

项目能否在其成员之外延续——巴士系数、响应能力、由谁支持,以及软件包的维护状况?

60中等 · 占总体的 23%
评分方式
9/54巴士系数 — 1 位贡献者贡献了半数提交
0.9/22.5提交分布 — 头号贡献者编写了 96% 的提交
9.5/13.5贡献者广度 — 7 位贡献者
3/10OpenSSF Scorecard:Contributors — project has 1 contributing companies or organizations -- score normalized to 3
所用输入
bus_factor1
contributors_sampled7
top_contributor_share0.958
评分方式
40.4/42议题解决 — 96% 的议题已关闭
20.3/30PR 接受 — 已裁定的 PR 中 96/142 已合并
0/13Newcomer PR acceptance — 30 天内没有首次贡献者的 PR 得到裁决
0/15OpenSSF Scorecard:Code-Review — Found 1/28 approved changesets -- score normalized to 0
所用输入
merged_prs96
open_issues1
closed_issues26
prs_merged_7d0
prs_decided_7d0
prs_merged_30d1
prs_decided_30d1
issue_closed_ratio0.963
closed_unmerged_prs46
first_time_authors_30d0
first_time_prs_merged_30d0
first_time_prs_decided_30d0
已排除计分(无数据或不适用):newcomer_pr_acceptance。 其余权重已重新归一化。
评分方式
10/30所有权背书 — 个人(用户)账户
0/20已验证域名 — 不适用于个人账户
16.5/25所有者影响力 — G4brym 有 194 位关注者
24.9/25既往记录 — 58 个公开仓库,账户约 12 年
所用输入
followers194
owner_typeUser
is_verified
owner_loginG4brym
public_repos58
account_age_days4,708
已排除计分(无数据或不适用):已验证域名。 其余权重已重新归一化。
评分方式
25/25已发布且可解析 — npm 上有 1 个软件包
35/35发布时效 — 最近一次发布于 10 天前
20/20版本历史 — 53 个已发布版本
20/20未被弃用 — 活跃,未被弃用或撤回
所用输入
packagesworkers-qb
ecosystemsnpm
any_deprecated
min_days_since_publish10

工程质量

基础的工程与文档实践是否到位?

89优秀 · 占总体的 19%

工程实践

88优秀
评分方式
24/24CI 工作流 — 3 个工作流
24/24存在测试
16/16Linter 配置 — biome.json
0/9.6Pre-commit 钩子
6.4/6.4.editorconfig
18/20OpenSSF Scorecard:CI-Tests — 20 out of 21 merged PRs checked by a CI test -- score normalized to 9
所用输入
has_ci
has_tests
has_editorconfig
has_linter_config
has_precommit_config

文档

90优秀
评分方式
30/30README
25/25文档目录
15/15文档 / 主页站点 — https://workers-qb.massadas.com
10/10仓库描述
10/10主题标签 — 11 个主题标签
0/10Wiki
所用输入
topicscloudflare-workers, sql-builder, worker, cloudflare-d1, d1sql, workers, typescript, query-builder, javascript, cloudflare, nodejs
has_wiki
homepagehttps://workers-qb.massadas.com
has_readme
has_docs_dir
has_description

安全

可见的安全与供应链实践是否稳固,且不存在未解决的高风险司法辖区暴露?

50中等 · 占总体的 16%

安全态势

37薄弱
评分方式
7.5/7.5Binary-Artifacts — no binaries found in the repo
0/7.5Branch-Protection — 无数据
2.2/2.5CI-Tests — 20 out of 21 merged PRs checked by a CI test -- score normalized to 9
0/2.5CII-Best-Practices — no effort to earn an OpenSSF best practices badge detected
0/7.5Code-Review — Found 1/28 approved changesets -- score normalized to 0
0.8/2.5Contributors — project has 1 contributing companies or organizations -- score normalized to 3
10/10Dangerous-Workflow — no dangerous workflow patterns detected
7.5/7.5Dependency-Update-Tool — update tool detected
0/5Fuzzing — project is not fuzzed
2.5/2.5许可证 — license file detected
0.8/7.5Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
0/5Packaging — 无数据
0/5Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
0/5SAST — SAST tool is not run on all commits -- score normalized to 0
0/5Security-Policy — security policy file not detected
0/7.5Signed-Releases — 无数据
0/7.5Token-Permissions — detected GitHub workflow tokens with excessive permissions
0/7.5Vulnerabilities — 51 existing vulnerabilities detected
所用输入
sourceopenssf_scorecard
checks_evaluated15
scorecard_versionv5.5.0
checks_inconclusive3
scorecard_aggregate3.7
已排除计分(无数据或不适用):branch_protection, packaging, signed_releases。 其余权重已重新归一化。
评分方式
35/35直接依赖不含已知公告 — 没有直接依赖携带已知公告
0/25间接依赖不含已知公告 — 在此范围内,传递依赖集合无法与开发和测试依赖区分
0/40没有长期未处理的公告 — 没有公告带有发布日期
所用输入
sourceosv
advisories55
affected_packages16
assessed_packages469
unassessed_packages0
affected_by_severitycritical 2, high 12, moderate 2
direct_affected_packages0
已排除计分(无数据或不适用):间接依赖不含已知公告, 没有长期未处理的公告。 其余权重已重新归一化。 已将 469 个已解析依赖与 OSV 比对。 该仓库未发布任何索引可解析的软件包,因此改为评估仓库依赖图。该图将开发与测试版本固定同交付的依赖混在一起,因此仅对声明的运行时依赖计分;传递性发现仅作为背景信息列出,不计入评分。 未对可达性进行分析。

AI 就绪度

该仓库在多大程度上具备与 AI 编码代理协同开发与维护的条件?权重刻意设小(4%):代理工具链是一项真实的维护信号,但完全不具备的仓库仍可达到 100/100。

78良好 · 占总体的 4%
评分方式
45/45代理指令 — CLAUDE.md
0/15机器可读文档(llms.txt)
29.9/40可读的提交历史 — 82 次人类提交中有 46 次说明了意图(结构化标题或解释性正文)
所用输入
has_llms_txt
legible_history_share0.561
agent_instruction_filesCLAUDE.md
agent_instruction_max_bytes2,784
评分方式
0/18一条命令的引导启动
22/22自动化测试
11/11Lint / 格式化配置 — biome.json
11/11静态类型检查 — tests/tsconfig.json, tsconfig.json
10/10可复现环境 — lockfile
10/10已体现的代理实践 — 最近 100 次提交中有 25 次由代理编写或署名代理
8/8自动化维护 — 最近 100 次提交中有 15 次为自动依赖更新
0/10OpenSSF Scorecard:Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
所用输入
has_nix
has_tests
lockfilespackage-lock.json
has_dockerfile
typed_language
bootstrap_files
has_devcontainer
has_linter_config
typecheck_configstests/tsconfig.json, tsconfig.json
agent_commit_share0.25
toolchain_manifests
dependency_bot_commit_share0.15
评分方式
45/45可类型检查的代码 — TypeScript(静态类型)
55/55可控的文件大小 — 采样的 39 个源文件中有 0 个超过 60KB
所用输入
primary_languageTypeScript
largest_source_bytes49,305
source_files_sampled39
oversized_source_files0

关键数据

398GitHub 星标
7贡献者
51最近 12 个月提交数
10距最近推送天数
52发布版本数
1巴士系数(bus factor)
1开放议题
npm软件包生态系统数

数据采集警告

  • Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token

更多细节

Star 与 Fork 历史 0 ★ / 26 ⇿
0Star
26Fork
47发布

每颗 star 和每个 fork 的添加时间,来自 GitHub 并按天汇总。累计增长位于其构成来源——每日新增——的正上方,二者可相互对照:稳定的自然增长与短暂的突增形态截然不同。当这一差别可被衡量时,它会作为增长真实性予以报告。

0510152025302622022-092024-062026-03
主版本 1次版本 13修订 33

每个点涵盖 4 天。

OpenSSF Scorecard 3.7 / 10
3.7综合

来自开源项目 OpenSSF Scorecard 的独立、工具无关的安全评估。每项检查奖励的是安全实践本身,而非特定供应商的工具。Scorecard 无法判定的检查项标记为 不适用,并从安全评分中剔除(绝不按零分计)。Scorecard v5.5.0 · 2026-08-04 06:04 UTC

10Binary-Artifactsno binaries found in the repo
不适用Branch-Protectioninternal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
9CI-Tests20 out of 21 merged PRs checked by a CI test -- score normalized to 9
0CII-Best-Practicesno effort to earn an OpenSSF best practices badge detected
0Code-ReviewFound 1/28 approved changesets -- score normalized to 0
3Contributorsproject has 1 contributing companies or organizations -- score normalized to 3
10Dangerous-Workflowno dangerous workflow patterns detected
10Dependency-Update-Toolupdate tool detected
0Fuzzingproject is not fuzzed
10Licenselicense file detected
1Maintained2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
不适用Packagingpackaging workflow not detected
0Pinned-Dependenciesdependency not pinned by hash detected -- score normalized to 0
0SASTSAST tool is not run on all commits -- score normalized to 0
0Security-Policysecurity policy file not detected
不适用Signed-Releasesno releases found
0Token-Permissionsdetected GitHub workflow tokens with excessive permissions
0Vulnerabilities51 existing vulnerabilities detected
全部依赖 469

来自 GitHub 依赖图的完整解析依赖集合:0 个直接依赖与 469 个间接(传递)软件包。仓库提交锁文件时,传递闭包才是完整的。

注册表软件包版本关系
npm@algolia/autocomplete-core1.17.7间接
npm@algolia/autocomplete-plugin-algolia-insights1.17.7间接
npm@algolia/autocomplete-preset-algolia1.17.7间接
npm@algolia/autocomplete-shared1.17.7间接
npm@algolia/client-abtesting5.20.2间接
npm@algolia/client-analytics5.20.2间接
npm@algolia/client-common5.20.2间接
npm@algolia/client-insights5.20.2间接
npm@algolia/client-personalization5.20.2间接
npm@algolia/client-query-suggestions5.20.2间接
npm@algolia/client-search5.20.2间接
npm@algolia/ingestion1.20.2间接
npm@algolia/monitoring1.20.2间接
npm@algolia/recommend5.20.2间接
npm@algolia/requester-browser-xhr5.20.2间接
npm@algolia/requester-fetch5.20.2间接
npm@algolia/requester-node-http5.20.2间接
npm@babel/helper-string-parser7.25.9间接
npm@babel/helper-validator-identifier7.25.9间接
npm@babel/parser7.26.8间接
npm@babel/runtime7.28.6间接
npm@babel/types7.26.8间接
npm@biomejs/biome2.3.12间接
npm@biomejs/cli-darwin-arm642.3.12间接
npm@biomejs/cli-darwin-x642.3.12间接
npm@biomejs/cli-linux-arm642.3.12间接
npm@biomejs/cli-linux-arm64-musl2.3.12间接
npm@biomejs/cli-linux-x642.3.12间接
npm@biomejs/cli-linux-x64-musl2.3.12间接
npm@biomejs/cli-win32-arm642.3.12间接
npm@biomejs/cli-win32-x642.3.12间接
npm@changesets/apply-release-plan7.1.0间接
npm@changesets/assemble-release-plan6.0.9间接
npm@changesets/changelog-git0.2.1间接
npm@changesets/changelog-github0.6.0间接
npm@changesets/cli2.30.0间接
npm@changesets/config3.1.3间接
npm@changesets/errors0.2.0间接
npm@changesets/get-dependents-graph2.1.3间接
npm@changesets/get-github-info0.8.0间接
npm@changesets/get-release-plan4.0.15间接
npm@changesets/get-version-range-type0.4.0间接
npm@changesets/git3.0.4间接
npm@changesets/logger0.1.1间接
npm@changesets/parse0.4.3间接
npm@changesets/pre2.0.2间接
npm@changesets/read0.6.7间接
npm@changesets/should-skip-package0.1.2间接
npm@changesets/types4.1.0间接
npm@changesets/types6.1.0间接
npm@changesets/write0.4.0间接
npm@cloudflare/kv-asset-handler0.4.2间接
npm@cloudflare/unenv-preset2.11.0间接
npm@cloudflare/vitest-pool-workers0.12.6间接
npm@cloudflare/workerd-darwin-641.20260120.0间接
npm@cloudflare/workerd-darwin-arm641.20260120.0间接
npm@cloudflare/workerd-linux-641.20260120.0间接
npm@cloudflare/workerd-linux-arm641.20260120.0间接
npm@cloudflare/workerd-windows-641.20260120.0间接
npm@cloudflare/workers-types4.20260124.0间接
npm@cspotcode/source-map-support0.8.1间接
npm@docsearch/css3.8.2间接
npm@docsearch/js3.8.2间接
npm@docsearch/react3.8.2间接
npm@emnapi/runtime1.8.1间接
npm@esbuild/aix-ppc640.21.5间接
npm@esbuild/aix-ppc640.27.0间接
npm@esbuild/android-arm0.21.5间接
npm@esbuild/android-arm0.27.0间接
npm@esbuild/android-arm640.21.5间接
npm@esbuild/android-arm640.27.0间接
npm@esbuild/android-x640.21.5间接
npm@esbuild/android-x640.27.0间接
npm@esbuild/darwin-arm640.21.5间接
npm@esbuild/darwin-arm640.27.0间接
npm@esbuild/darwin-x640.21.5间接
npm@esbuild/darwin-x640.27.0间接
npm@esbuild/freebsd-arm640.21.5间接
npm@esbuild/freebsd-arm640.27.0间接
npm@esbuild/freebsd-x640.21.5间接
npm@esbuild/freebsd-x640.27.0间接
npm@esbuild/linux-arm0.21.5间接
npm@esbuild/linux-arm0.27.0间接
npm@esbuild/linux-arm640.21.5间接
npm@esbuild/linux-arm640.27.0间接
npm@esbuild/linux-ia320.21.5间接
npm@esbuild/linux-ia320.27.0间接
npm@esbuild/linux-loong640.21.5间接
npm@esbuild/linux-loong640.27.0间接
npm@esbuild/linux-mips64el0.21.5间接
npm@esbuild/linux-mips64el0.27.0间接
npm@esbuild/linux-ppc640.21.5间接
npm@esbuild/linux-ppc640.27.0间接
npm@esbuild/linux-riscv640.21.5间接
npm@esbuild/linux-riscv640.27.0间接
npm@esbuild/linux-s390x0.21.5间接
npm@esbuild/linux-s390x0.27.0间接
npm@esbuild/linux-x640.21.5间接
npm@esbuild/linux-x640.27.0间接
npm@esbuild/netbsd-arm640.27.0间接
npm@esbuild/netbsd-x640.21.5间接
npm@esbuild/netbsd-x640.27.0间接
npm@esbuild/openbsd-arm640.27.0间接
npm@esbuild/openbsd-x640.21.5间接
npm@esbuild/openbsd-x640.27.0间接
npm@esbuild/openharmony-arm640.27.0间接
npm@esbuild/sunos-x640.21.5间接
npm@esbuild/sunos-x640.27.0间接
npm@esbuild/win32-arm640.21.5间接
npm@esbuild/win32-arm640.27.0间接
npm@esbuild/win32-ia320.21.5间接
npm@esbuild/win32-ia320.27.0间接
npm@esbuild/win32-x640.21.5间接
npm@esbuild/win32-x640.27.0间接
npm@iconify-json/simple-icons1.2.24间接
npm@iconify/types2.0.0间接
npm@img/colour1.0.0间接
npm@img/sharp-darwin-arm640.34.5间接
npm@img/sharp-darwin-x640.34.5间接
npm@img/sharp-libvips-darwin-arm641.2.4间接
npm@img/sharp-libvips-darwin-x641.2.4间接
npm@img/sharp-libvips-linux-arm1.2.4间接
npm@img/sharp-libvips-linux-arm641.2.4间接
npm@img/sharp-libvips-linux-ppc641.2.4间接
npm@img/sharp-libvips-linux-riscv641.2.4间接
npm@img/sharp-libvips-linux-s390x1.2.4间接
npm@img/sharp-libvips-linux-x641.2.4间接
npm@img/sharp-libvips-linuxmusl-arm641.2.4间接
npm@img/sharp-libvips-linuxmusl-x641.2.4间接
npm@img/sharp-linux-arm0.34.5间接
npm@img/sharp-linux-arm640.34.5间接
npm@img/sharp-linux-ppc640.34.5间接
npm@img/sharp-linux-riscv640.34.5间接
npm@img/sharp-linux-s390x0.34.5间接
npm@img/sharp-linux-x640.34.5间接
npm@img/sharp-linuxmusl-arm640.34.5间接
npm@img/sharp-linuxmusl-x640.34.5间接
npm@img/sharp-wasm320.34.5间接
npm@img/sharp-win32-arm640.34.5间接
npm@img/sharp-win32-ia320.34.5间接
npm@img/sharp-win32-x640.34.5间接
npm@inquirer/external-editor1.0.3间接
npm@isaacs/cliui8.0.2间接
npm@jridgewell/gen-mapping0.3.5间接
npm@jridgewell/resolve-uri3.1.2间接
npm@jridgewell/set-array1.2.1间接
npm@jridgewell/sourcemap-codec1.5.0间接
npm@jridgewell/trace-mapping0.3.25间接
npm@jridgewell/trace-mapping0.3.9间接
npm@manypkg/find-root1.1.0间接
npm@manypkg/get-packages1.1.3间接
npm@nodelib/fs.scandir2.1.5间接
npm@nodelib/fs.stat2.0.5间接
npm@nodelib/fs.walk1.2.8间接
npm@pkgjs/parseargs0.11.0间接
npm@poppinss/colors4.1.6间接
npm@poppinss/dumper0.6.5间接
npm@poppinss/exception1.2.3间接
npm@rollup/rollup-android-arm-eabi4.43.0间接
npm@rollup/rollup-android-arm644.43.0间接
npm@rollup/rollup-darwin-arm644.43.0间接
npm@rollup/rollup-darwin-x644.43.0间接
npm@rollup/rollup-freebsd-arm644.43.0间接
npm@rollup/rollup-freebsd-x644.43.0间接
npm@rollup/rollup-linux-arm-gnueabihf4.43.0间接
npm@rollup/rollup-linux-arm-musleabihf4.43.0间接
npm@rollup/rollup-linux-arm64-gnu4.43.0间接
npm@rollup/rollup-linux-arm64-musl4.43.0间接
npm@rollup/rollup-linux-loongarch64-gnu4.43.0间接
npm@rollup/rollup-linux-powerpc64le-gnu4.43.0间接
npm@rollup/rollup-linux-riscv64-gnu4.43.0间接
npm@rollup/rollup-linux-riscv64-musl4.43.0间接
npm@rollup/rollup-linux-s390x-gnu4.43.0间接
npm@rollup/rollup-linux-x64-gnu4.43.0间接
npm@rollup/rollup-linux-x64-musl4.43.0间接
npm@rollup/rollup-win32-arm64-msvc4.43.0间接
npm@rollup/rollup-win32-ia32-msvc4.43.0间接
npm@rollup/rollup-win32-x64-msvc4.43.0间接
npm@shikijs/core2.3.2间接
npm@shikijs/engine-javascript2.3.2间接
npm@shikijs/engine-oniguruma2.3.2间接
npm@shikijs/langs2.3.2间接
npm@shikijs/themes2.3.2间接
npm@shikijs/transformers2.3.2间接
npm@shikijs/types2.3.2间接
npm@shikijs/vscode-textmate10.0.1间接
npm@sindresorhus/is7.2.0间接
npm@speed-highlight/core1.2.14间接
npm@types/chai5.2.2间接
npm@types/deep-eql4.0.2间接
npm@types/estree1.0.7间接
npm@types/hast3.0.4间接
npm@types/linkify-it5.0.0间接
npm@types/markdown-it14.1.2间接
npm@types/mdast4.0.4间接
npm@types/mdurl2.0.0间接
npm@types/node12.20.55间接
npm@types/node22.9.0间接
npm@types/unist3.0.3间接
npm@types/web-bluetooth0.0.20间接
npm@ungap/structured-clone1.3.0间接
npm@vitejs/plugin-vue5.2.1间接
npm@vitest/expect3.2.4间接
npm@vitest/mocker3.2.4间接
npm@vitest/pretty-format3.2.4间接
npm@vitest/runner3.2.4间接
npm@vitest/snapshot3.2.4间接
npm@vitest/spy3.2.4间接
npm@vitest/utils3.2.4间接
npm@vue/compiler-core3.5.13间接
npm@vue/compiler-dom3.5.13间接
npm@vue/compiler-sfc3.5.13间接
npm@vue/compiler-ssr3.5.13间接
npm@vue/devtools-api7.7.1间接
npm@vue/devtools-kit7.7.1间接
npm@vue/devtools-shared7.7.1间接
npm@vue/reactivity3.5.13间接
npm@vue/runtime-core3.5.13间接
npm@vue/runtime-dom3.5.13间接
npm@vue/server-renderer3.5.13间接
npm@vue/shared3.5.13间接
npm@vueuse/core12.5.0间接
npm@vueuse/integrations12.5.0间接
npm@vueuse/metadata12.5.0间接
npm@vueuse/shared12.5.0间接
npmacorn8.14.0间接
npmalgoliasearch5.20.2间接
npmansi-colors4.1.3间接
npmansi-regex5.0.1间接
npmansi-regex6.1.0间接
npmansi-styles4.3.0间接
npmansi-styles6.2.1间接
npmany-promise1.3.0间接
npmargparse1.0.10间接
npmargparse2.0.1间接
npmarray-union2.1.0间接
npmassertion-error2.0.1间接
npmbalanced-match1.0.2间接
npmbetter-path-resolve1.0.0间接
npmbirpc0.2.19间接
npmblake3-wasm2.1.5间接
npmbrace-expansion2.0.1间接
npmbraces3.0.3间接
npmbundle-require5.1.0间接
npmcac6.7.14间接
npmccount2.0.1间接
npmchai5.2.1间接
npmcharacter-entities-html42.1.0间接
npmcharacter-entities-legacy3.0.0间接
npmchardet2.1.1间接
npmcheck-error2.1.1间接
npmchokidar4.0.3间接
npmcjs-module-lexer1.4.1间接
npmcolor-convert2.0.1间接
npmcolor-name1.1.4间接
npmcomma-separated-tokens2.0.3间接
npmcommander4.1.1间接
npmconfbox0.1.8间接
npmconsola3.4.2间接
npmcookie1.1.1间接
npmcopy-anything3.0.5间接
npmcross-spawn7.0.5间接
npmcsstype3.1.3间接
npmdataloader1.4.0间接
npmdebug4.4.1间接
npmdeep-eql5.0.2间接
npmdequal2.0.3间接
npmdetect-indent6.1.0间接
npmdetect-libc2.1.2间接
npmdevlop1.1.0间接
npmdir-glob3.0.1间接
npmdotenv8.6.0间接
npmeastasianwidth0.2.0间接
npmemoji-regex8.0.0间接
npmemoji-regex9.2.2间接
npmemoji-regex-xs1.0.0间接
npmenquirer2.4.1间接
npmentities4.5.0间接
npmerror-stack-parser-es1.0.5间接
npmes-module-lexer1.7.0间接
npmesbuild0.21.5间接
npmesbuild0.27.0间接
npmesprima4.0.1间接
npmestree-walker2.0.2间接
npmestree-walker3.0.3间接
npmexpect-type1.2.2间接
npmextendable-error0.1.7间接
npmfast-glob3.3.3间接
npmfastq1.20.1间接
npmfdir6.4.6间接
npmfill-range7.1.1间接
npmfind-up4.1.0间接
npmfix-dts-default-cjs-exports1.0.1间接
npmfocus-trap7.6.4间接
npmforeground-child3.3.0间接
npmfs-extra7.0.1间接
npmfs-extra8.1.0间接
npmfsevents2.3.3间接
npmglob10.4.5间接
npmglob-parent5.1.2间接
npmglobby11.1.0间接
npmgraceful-fs4.2.11间接
npmhast-util-to-html9.0.4间接
npmhast-util-whitespace3.0.0间接
npmhookable5.5.3间接
npmhtml-void-elements3.0.0间接
npmhuman-id4.1.3间接
npmiconv-lite0.7.2间接
npmignore5.3.2间接
npmis-extglob2.1.1间接
npmis-fullwidth-code-point3.0.0间接
npmis-glob4.0.3间接
npmis-number7.0.0间接
npmis-subdir1.2.0间接
npmis-what4.1.16间接
npmis-windows1.0.2间接
npmisexe2.0.0间接
npmjackspeak3.4.3间接
npmjoycon3.1.1间接
npmjs-tokens9.0.1间接
npmjs-yaml3.14.2间接
npmjs-yaml4.1.1间接
npmjsonfile4.0.0间接
npmkleur4.1.5间接
npmlilconfig3.1.2间接
npmlines-and-columns1.2.4间接
npmload-tsconfig0.2.5间接
npmlocate-path5.0.0间接
npmlodash.startcase4.4.0间接
npmloupe3.2.0间接
npmlru-cache10.4.3间接
npmmagic-string0.30.17间接
npmmark.js8.11.1间接
npmmdast-util-to-hast13.2.0间接
npmmerge21.4.1间接
npmmicromark-util-character2.1.1间接
npmmicromark-util-encode2.0.1间接
npmmicromark-util-sanitize-uri2.0.1间接
npmmicromark-util-symbol2.0.1间接
npmmicromark-util-types2.0.1间接
npmmicromatch4.0.8间接
npmminiflare4.20260120.0间接
npmminimatch9.0.5间接
npmminipass7.1.2间接
npmminisearch7.1.1间接
npmmitt3.0.1间接
npmmlly1.7.4间接
npmmri1.2.0间接
npmms2.1.3间接
npmmz2.7.0间接
npmnanoid3.3.8间接
npmnode-fetch2.7.0间接
npmobject-assign4.1.1间接
npmoniguruma-to-es3.1.0间接
npmoutdent0.5.0间接
npmp-filter2.1.0间接
npmp-limit2.3.0间接
npmp-locate4.1.0间接
npmp-map2.1.0间接
npmp-try2.2.0间接
npmpackage-json-from-dist1.0.1间接
npmpackage-manager-detector0.2.11间接
npmpath-exists4.0.0间接
npmpath-key3.1.1间接
npmpath-scurry1.11.1间接
npmpath-to-regexp6.3.0间接
npmpath-type4.0.0间接
npmpathe2.0.3间接
npmpathval2.0.1间接
npmperfect-debounce1.0.0间接
npmpicocolors1.1.1间接
npmpicomatch2.3.1间接
npmpicomatch4.0.2间接
npmpify4.0.1间接
npmpirates4.0.6间接
npmpkg-types1.3.1间接
npmpostcss8.5.2间接
npmpostcss-load-config6.0.1间接
npmpreact10.25.4间接
npmprettier2.8.8间接
npmproperty-information6.5.0间接
npmquansync0.2.11间接
npmqueue-microtask1.2.3间接
npmread-yaml-file1.1.0间接
npmreaddirp4.1.2间接
npmregex6.0.1间接
npmregex-recursion6.0.2间接
npmregex-utilities2.3.0间接
npmresolve-from5.0.0间接
npmreusify1.1.0间接
npmrfdc1.4.1间接
npmrollup4.43.0间接
npmrun-parallel1.2.0间接
npmsafer-buffer2.1.2间接
npmsearch-insights2.17.3间接
npmsemver7.7.3间接
npmsharp0.34.5间接
npmshebang-command2.0.0间接
npmshebang-regex3.0.0间接
npmshiki2.3.2间接
npmsiginfo2.0.0间接
npmsignal-exit4.1.0间接
npmslash3.0.0间接
npmsource-map0.7.6间接
npmsource-map-js1.2.1间接
npmspace-separated-tokens2.0.2间接
npmspawndamnit3.0.1间接
npmspeakingurl14.0.1间接
npmsprintf-js1.0.3间接
npmstackback0.0.2间接
npmstd-env3.9.0间接
npmstring-width4.2.3间接
npmstring-width5.1.2间接
npmstringify-entities4.0.4间接
npmstrip-ansi6.0.1间接
npmstrip-ansi7.1.0间接
npmstrip-bom3.0.0间接
npmstrip-literal3.0.0间接
npmsucrase3.35.0间接
npmsuperjson2.2.2间接
npmsupports-color10.2.2间接
npmtabbable6.2.0间接
npmterm-size2.2.1间接
npmthenify3.3.1间接
npmthenify-all1.6.0间接
npmtinybench2.9.0间接
npmtinyexec0.3.2间接
npmtinyglobby0.2.14间接
npmtinypool1.1.1间接
npmtinyrainbow2.0.0间接
npmtinyspy4.0.3间接
npmto-regex-range5.0.1间接
npmtr460.0.3间接
npmtree-kill1.2.2间接
npmtrim-lines3.0.1间接
npmts-interface-checker0.1.13间接
npmtslib2.8.1间接
npmtsup8.5.1间接
npmtypescript5.9.3间接
npmufo1.6.1间接
npmundici7.18.2间接
npmundici-types6.19.8间接
npmunenv2.0.0-rc.24间接
npmunist-util-is6.0.0间接
npmunist-util-position5.0.0间接
npmunist-util-stringify-position4.0.0间接
npmunist-util-visit5.0.0间接
npmunist-util-visit-parents6.0.1间接
npmuniversalify0.1.2间接
npmvfile6.0.3间接
npmvfile-message4.0.2间接
npmvite5.4.14间接
npmvite-node3.2.4间接
npmvitepress1.6.4间接
npmvitest3.2.4间接
npmvue3.5.13间接
npmwebidl-conversions3.0.1间接
npmwhatwg-url5.0.0间接
npmwhich2.0.2间接
npmwhy-is-node-running2.3.0间接
npmworkerd1.20260120.0间接
npmwrangler4.60.0间接
npmwrap-ansi7.0.0间接
npmwrap-ansi8.1.0间接
npmws8.18.0间接
npmyouch4.1.0-beta.10间接
npmyouch-core0.3.3间接
npmzod3.25.76间接
npmzwitch2.0.4间接
依赖安全公告 16

该仓库未发布可被索引解析的包,因此评估的是其自身的依赖图——共 469 个包,其中也包含从不交付的开发与测试版本固定:16 个存在已知公告,0 个为直接依赖。

软件包版本关系严重程度公告数修复版本
rollup4.43.0间接严重14.59.0
vitest3.2.4间接严重14.1.0
brace-expansion2.0.1间接55.0.9
glob10.4.5间接111.1.0
js-yaml3.14.2间接24.3.0
js-yaml4.1.1间接24.3.0
minimatch9.0.5间接310.2.3
picomatch2.3.1间接24.0.4
picomatch4.0.2间接24.0.4
postcss8.5.2间接48.5.23
sharp0.34.5间接10.35.0
undici7.18.2间接168.9.0
vite5.4.14间接118.0.16
ws8.18.0间接28.21.0
esbuild0.21.5间接10.25.0
mdast-util-to-hast13.2.0间接113.2.1

公告表示依赖图中记录的版本落入某条公告的受影响范围。可达性未经分析,且依赖图包含开发与测试的版本固定——某项发现可能只涉及工具链而非交付的软件。

原始 JSON 报告 机器可读

评分是信号,而非担保。 评分反映的是 GitHub 上公开可见的实践——不是代码审计,也不是安全保证。

缺失数据将被剔除并重新归一化权重,绝不按零分计。方法论已版本化并公开:指标 v2.5.0、模式 v0.30.0—— 完整方法论 · 指标知识库.

单项结果在整体记录中的位置: 汇总统计npm.