, 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": 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": 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": 262,
"full_name": "npm/cli",
"url": "https://github.com/npm/cli",
"description": "the package manager for JavaScript",
"ecosystem": "npm",
"ecosystems": [
"npm"
],
"primary_language": "JavaScript",
"languages": [
"JavaScript"
],
"topics": [
"package-manager",
"npm",
"nodejs",
"javascript",
"tools",
"npm-cli",
"install",
"modules",
"package.json"
],
"license_spdx": null,
"license_state": "custom",
"stars": 10003,
"forks": 4592,
"watchers": 232,
"monthly_downloads": 64494323,
"latest_score": 98,
"latest_band": "exceptional",
"latest_scanned_at": "2026-08-04T21:36:13.105252Z",
"has_high_risk_jurisdiction_exposure": false,
"has_malicious_dependency": false,
"growth_authenticity": "unverified",
"abandonment_state": "maintained",
"red_flags": [],
"icon_url": "/icon/v1/npm/cli?v=10fa8041-1",
"icon_source_type": "avatar",
"badge_url": ""
},
{
"id": 5729,
"full_name": "Azure/azure-sdk-for-js",
"url": "https://github.com/Azure/azure-sdk-for-js",
"description": "This repository is for active development of the Azure SDK for JavaScript (NodeJS & Browser). For consumers of the SDK we recommend visiting our public developer docs at https://docs.microsoft.com/javascript/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-js. ",
"ecosystem": "npm",
"ecosystems": [
"npm"
],
"primary_language": "TypeScript",
"languages": [
"TypeScript",
"JavaScript"
],
"topics": [
"azure",
"azure-sdk",
"browser",
"hacktoberfest",
"javascript",
"nodejs",
"typescript"
],
"license_spdx": "MIT",
"license_state": "standard",
"stars": 2296,
"forks": 1378,
"watchers": 393,
"monthly_downloads": null,
"latest_score": 98,
"latest_band": "exceptional",
"latest_scanned_at": "2026-07-15T02:43:31.379164Z",
"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": ""
}
]
}
}
Registro públicoInforme de salud del software esquema 0.30.0 · métricas 2.5.0 · 2026-08-04 06:04 UTC
Zero dependencies Query Builder for Cloudflare Workers
Añadir la insignia de puntuación al README Comparar con…
TypeScript MIT ★ 398 estrellas ⑂ 26 forks desde jul 2022 Ver en GitHub ↗ G4brym/workers-qb tiene un índice de salud de 78 sobre 100, lo que lo sitúa en la banda Bueno. Su puntuación más alta es Engineering Quality (89/100) y la más baja, Security (50/100). Se actualizó por última vez hace 10 días. Una sola persona concentra la mayor parte del trabajo reciente.
Índice de salud del software Las métricas se agrupan en categorías ponderadas sobre una escala estandarizada de 1 a 100. El resultado global parte de su media ponderada, calibrada contra la distribución del registro público para que las bandas tengan significado percentil; cuando la evidencia pública activa la Política de Jurisdicciones de Alto Riesgo, la calificación se ajusta y recibe un límite «En riesgo» de 34.
78
Excepcional 93-100 El nivel más alto del registro (≈ el 5% superior); cumple prácticamente todos los criterios evaluados
Excelente 80-92 Sólido en todos los frentes; carencias menores
Bueno 65-79 Saludable; carencias limitadas y manejables
Moderado 50-64 Aceptable con carencias notables; se recomienda revisión
Débil 35-49 Debilidades sustanciales en varias áreas
En riesgo 20-34 Debilidades significativas; su adopción exige cautela
Crítico 1-19 Problemas graves (proyecto abandonado, un solo mantenedor, sin higiene)
Vitalidad Comunidad y Adopción Sostenibilidad y Gobernanza Calidad de Ingeniería Seguridad Preparación para IA Perfil de puntuación Cada eje es una categoría. La forma importa más que la media: un proyecto sano llena toda la figura, mientras que un perfil de picos y cráteres indica que la fortaleza en una dimensión enmascara el riesgo en otra.
El resultado global ponderado 67 se calibra a 78 en la escala publicada del índice (calibración del registro 2026-08-02).
Titularidad 194 seguidores 58 repositorios públicos desde sept 2013 @Cloudflare
Este repositorio pertenece a una cuenta personal . Un proyecto con un único propietario conlleva más riesgo de continuidad que uno respaldado por una organización.
Ecosistemas de paquetes
Métricas por categoría ¿Está vivo el proyecto: se escribe código y se publican versiones?
69 Bueno · 21% del índice global
Cómo se puntúa 28.8/36 Recencia de push — último push hace 10 días 7.6/36 Cadencia de commits — 11/52 semanas con commits 15.4/18 Volumen de commits — 51 commits en el último año 1/10 OpenSSF Scorecard: Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Datos de entrada utilizados
Cómo se puntúa 27/27 Publica versiones — 52 versiones publicadas 36/36 Recencia de las versiones — última versión hace 10 días 19.8/27 Cadencia de publicación — una versión cada ~61,8 días 0/10 OpenSSF Scorecard: Signed-Releases — sin datos
Datos de entrada utilizados Excluidos de la puntuación (sin datos o no aplicable): OpenSSF Scorecard: Signed-Releases. Los pesos restantes se han renormalizado.
¿Tiene el proyecto usuarios, descargas, atención y unas condiciones acogedoras para quienes contribuyen?
60 Moderado · 17% del índice global
Cómo se puntúa 42.2/60 Estrellas — 398 estrellas 11.7/25 Forks — 26 forks 1.7/15 Observadores — 3 observadores
Datos de entrada utilizados
Cómo se puntúa 22.5/22.5 README 22.5/22.5 Licencia — licencia reconocida (MIT) 0/18 Guía CONTRIBUTING 0/13.5 Código de conducta 0/7.2 Plantilla de issues 0/6.3 Plantilla de PR
Datos de entrada utilizados
Cómo se puntúa 64.1/80 Descargas mensuales — 64.152 descargas/mes en npm 0/20 Dependientes en el registro — no lo informa este ecosistema
Datos de entrada utilizados Excluidos de la puntuación (sin datos o no aplicable): Dependientes en el registro. Los pesos restantes se han renormalizado.
¿Sobrevivirá el proyecto a sus personas: factor bus, capacidad de respuesta, quién lo respalda y mantenimiento del paquete?
60 Moderado · 23% del índice global
Cómo se puntúa 9/54 Factor bus — la mitad de los commits recae en 1 contribuyente(s) 0.9/22.5 Distribución de commits — el principal contribuyente firma el 96% de los commits 9.5/13.5 Amplitud de contribuyentes — 7 contribuyentes 3/10 OpenSSF Scorecard: Contributors — project has 1 contributing companies or organizations -- score normalized to 3
Datos de entrada utilizados
Cómo se puntúa 40.4/42 Resolución de issues — 96% de issues cerradas 20.3/30 Aceptación de PR — 96/142 PR decididos fusionados 0/13 Newcomer PR acceptance — ningún PR de un contribuyente primerizo decidido en 30 d 0/15 OpenSSF Scorecard: Code-Review — Found 1/28 approved changesets -- score normalized to 0
Datos de entrada utilizados Excluidos de la puntuación (sin datos o no aplicable): newcomer_pr_acceptance. Los pesos restantes se han renormalizado.
Cómo se puntúa 10/30 Respaldo de la propiedad — cuenta personal (usuario) 0/20 Dominio verificado — no aplicable a cuentas de usuario 16.5/25 Alcance del propietario — 194 seguidores de G4brym 24.9/25 Trayectoria — 58 repos públicos, cuenta de ~12 años
Datos de entrada utilizados Excluidos de la puntuación (sin datos o no aplicable): Dominio verificado. Los pesos restantes se han renormalizado.
Cómo se puntúa 25/25 Publicado y resoluble — 1 paquete(s) en npm 35/35 Recencia de publicación — última publicación hace 10 días 20/20 Historial de versiones — 53 versiones en el registro 20/20 No obsoleto — activo, ni obsoleto ni retirado
Datos de entrada utilizados ¿Existen unas prácticas mínimas de ingeniería y documentación?
89 Excelente · 19% del índice global
Cómo se puntúa 24/24 Flujos de trabajo de CI — 3 flujo(s) de trabajo 24/24 Pruebas presentes 16/16 Configuración de linter — biome.json 0/9.6 Hooks de pre-commit 6.4/6.4 .editorconfig 18/20 OpenSSF Scorecard: CI-Tests — 20 out of 21 merged PRs checked by a CI test -- score normalized to 9
Datos de entrada utilizados
Cómo se puntúa 30/30 README 25/25 Directorio de documentación 15/15 Sitio de documentación / página del proyecto — https://workers-qb.massadas.com 10/10 Descripción del repositorio 10/10 Topics — 11 topics 0/10 Wiki
Datos de entrada utilizados ¿Son sólidas las prácticas visibles de seguridad y de cadena de suministro, sin exposición jurisdiccional de alto riesgo sin resolver?
50 Moderado · 16% del índice global
Cómo se puntúa 7.5/7.5 Binary-Artifacts — no binaries found in the repo 0/7.5 Branch-Protection — sin datos 2.2/2.5 CI-Tests — 20 out of 21 merged PRs checked by a CI test -- score normalized to 9 0/2.5 CII-Best-Practices — no effort to earn an OpenSSF best practices badge detected 0/7.5 Code-Review — Found 1/28 approved changesets -- score normalized to 0 0.8/2.5 Contributors — project has 1 contributing companies or organizations -- score normalized to 3 10/10 Dangerous-Workflow — no dangerous workflow patterns detected 7.5/7.5 Dependency-Update-Tool — update tool detected 0/5 Fuzzing — project is not fuzzed 2.5/2.5 Licencia — license file detected 0.8/7.5 Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1 0/5 Packaging — sin datos 0/5 Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0 0/5 SAST — SAST tool is not run on all commits -- score normalized to 0 0/5 Security-Policy — security policy file not detected 0/7.5 Signed-Releases — sin datos 0/7.5 Token-Permissions — detected GitHub workflow tokens with excessive permissions 0/7.5 Vulnerabilities — 51 existing vulnerabilities detected
Datos de entrada utilizados Excluidos de la puntuación (sin datos o no aplicable): branch_protection, packaging, signed_releases. Los pesos restantes se han renormalizado.
Cómo se puntúa 35/35 Dependencias directas libres de avisos conocidos — ninguna dependencia directa tiene un aviso conocido 0/25 Dependencias indirectas libres de avisos conocidos — el conjunto transitivo no es separable de las dependencias de desarrollo y prueba en este alcance 0/40 Sin avisos pendientes — ningún aviso tiene fecha de publicación
Datos de entrada utilizados Excluidos de la puntuación (sin datos o no aplicable): Dependencias indirectas libres de avisos conocidos, Sin avisos pendientes. Los pesos restantes se han renormalizado. Se cotejaron 469 dependencias resueltas con OSV. Este repositorio no publica ningún paquete que el índice resuelva, por lo que se evaluó en su lugar el grafo de dependencias del repositorio. Ese grafo mezcla fijaciones de desarrollo y prueba con las dependencias distribuidas, de modo que solo se puntúan las dependencias declaradas en tiempo de ejecución; los hallazgos transitivos se informan como contexto y quedan excluidos de la puntuación. No se analiza la alcanzabilidad.
¿Hasta qué punto está el repositorio preparado para desarrollarse y mantenerse con agentes de codificación de IA? Tiene un peso deliberadamente pequeño (4%): las herramientas para agentes son una señal real de mantenimiento, pero un repositorio sin ninguna puede alcanzar igualmente 100/100.
78 Bueno · 4% del índice global
Cómo se puntúa 45/45 Instrucciones para agentes — CLAUDE.md 0/15 Documentación legible por máquinas (llms.txt) 29.9/40 Historial de commits legible — 46 de 82 commits humanos declaran su intención (asunto estructurado o cuerpo explicativo)
Datos de entrada utilizados
Cómo se puntúa 0/18 Arranque con un solo comando 22/22 Pruebas automatizadas 11/11 Configuración de lint / formato — biome.json 11/11 Verificación estática de tipos — tests/tsconfig.json, tsconfig.json 10/10 Entorno reproducible — lockfile 10/10 Práctica demostrada con agentes — 25 de los últimos 100 commits con autoría o crédito de agente 8/8 Mantenimiento automatizado — 15 de los últimos 100 commits son actualizaciones automáticas de dependencias 0/10 OpenSSF Scorecard: Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
Datos de entrada utilizados
Cómo se puntúa 45/45 Código verificable por tipos — TypeScript (tipado estático) 55/55 Tamaños de archivo manejables — 0/39 archivos fuente de más de 60 KB
Datos de entrada utilizados
Datos clave 398 estrellas de GitHub
7 contribuidores
51 commits en los últimos 12 meses
10 días desde el último push
52 versiones publicadas
1 factor bus
1 issues abiertas
npm ecosistemas de paquetes
Advertencias de recopilación de datos Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token
Más detalle Historial de estrellas y forks 0 ★ / 26 ⇿ 0 Estrellas
26 Forks
47 Versiones
Cuándo se añadió cada estrella y fork, recopilado de GitHub y agrupado por día. El crecimiento acumulado se sitúa justo encima de las adiciones diarias que lo componen, de modo que ambos se leen en conjunto: la acumulación orgánica sostenida no se parece en nada a un pico abrupto y efímero. Cuando esa diferencia es medible, se informa como autenticidad del crecimiento.
Forks Forks/día Versiones
Todo 3 años Año 3 meses Mes
0 5 10 15 20 25 30 26 2 2022-09 2024-06 2026-03 Mayor 1 Menor 13 Parche 33
Cada punto abarca 4 días.
OpenSSF Scorecard 3.7 / 10 3.7 agregado
Evaluación de seguridad independiente y agnóstica en cuanto a herramientas, procedente del proyecto de código abierto OpenSSF Scorecard . Cada comprobación premia una práctica de seguridad, no la herramienta de un proveedor concreto. Las comprobaciones que Scorecard no pudo determinar se marcan como n/d y se excluyen de la puntuación de seguridad (nunca se cuentan como cero). Scorecard v5.5.0 · 2026-08-04 06:04 UTC
10 Binary-Artifacts no binaries found in the repo n/d Branch-Protection 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 9 CI-Tests 20 out of 21 merged PRs checked by a CI test -- score normalized to 9 0 CII-Best-Practices no effort to earn an OpenSSF best practices badge detected 0 Code-Review Found 1/28 approved changesets -- score normalized to 0 3 Contributors project has 1 contributing companies or organizations -- score normalized to 3 10 Dangerous-Workflow no dangerous workflow patterns detected 10 Dependency-Update-Tool update tool detected 0 Fuzzing project is not fuzzed 10 License license file detected 1 Maintained 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1 n/d Packaging packaging workflow not detected 0 Pinned-Dependencies dependency not pinned by hash detected -- score normalized to 0 0 SAST SAST tool is not run on all commits -- score normalized to 0 0 Security-Policy security policy file not detected n/d Signed-Releases no releases found 0 Token-Permissions detected GitHub workflow tokens with excessive permissions 0 Vulnerabilities 51 existing vulnerabilities detected
Todas las dependencias 469 Conjunto completo de dependencias resueltas según el grafo de dependencias de GitHub: 0 paquetes directos y 469 indirectos (transitivos). El cierre transitivo es completo cuando el repositorio incluye un lockfile.
Registro Paquete Versión Relación npm @algolia/autocomplete-core 1.17.7indirecta npm @algolia/autocomplete-plugin-algolia-insights 1.17.7indirecta npm @algolia/autocomplete-preset-algolia 1.17.7indirecta npm @algolia/autocomplete-shared 1.17.7indirecta npm @algolia/client-abtesting 5.20.2indirecta npm @algolia/client-analytics 5.20.2indirecta npm @algolia/client-common 5.20.2indirecta npm @algolia/client-insights 5.20.2indirecta npm @algolia/client-personalization 5.20.2indirecta npm @algolia/client-query-suggestions 5.20.2indirecta npm @algolia/client-search 5.20.2indirecta npm @algolia/ingestion 1.20.2indirecta npm @algolia/monitoring 1.20.2indirecta npm @algolia/recommend 5.20.2indirecta npm @algolia/requester-browser-xhr 5.20.2indirecta npm @algolia/requester-fetch 5.20.2indirecta npm @algolia/requester-node-http 5.20.2indirecta npm @babel/helper-string-parser 7.25.9indirecta npm @babel/helper-validator-identifier 7.25.9indirecta npm @babel/parser 7.26.8indirecta npm @babel/runtime 7.28.6indirecta npm @babel/types 7.26.8indirecta npm @biomejs/biome 2.3.12indirecta npm @biomejs/cli-darwin-arm64 2.3.12indirecta npm @biomejs/cli-darwin-x64 2.3.12indirecta npm @biomejs/cli-linux-arm64 2.3.12indirecta npm @biomejs/cli-linux-arm64-musl 2.3.12indirecta npm @biomejs/cli-linux-x64 2.3.12indirecta npm @biomejs/cli-linux-x64-musl 2.3.12indirecta npm @biomejs/cli-win32-arm64 2.3.12indirecta npm @biomejs/cli-win32-x64 2.3.12indirecta npm @changesets/apply-release-plan 7.1.0indirecta npm @changesets/assemble-release-plan 6.0.9indirecta npm @changesets/changelog-git 0.2.1indirecta npm @changesets/changelog-github 0.6.0indirecta npm @changesets/cli 2.30.0indirecta npm @changesets/config 3.1.3indirecta npm @changesets/errors 0.2.0indirecta npm @changesets/get-dependents-graph 2.1.3indirecta npm @changesets/get-github-info 0.8.0indirecta npm @changesets/get-release-plan 4.0.15indirecta npm @changesets/get-version-range-type 0.4.0indirecta npm @changesets/git 3.0.4indirecta npm @changesets/logger 0.1.1indirecta npm @changesets/parse 0.4.3indirecta npm @changesets/pre 2.0.2indirecta npm @changesets/read 0.6.7indirecta npm @changesets/should-skip-package 0.1.2indirecta npm @changesets/types 4.1.0indirecta npm @changesets/types 6.1.0indirecta npm @changesets/write 0.4.0indirecta npm @cloudflare/kv-asset-handler 0.4.2indirecta npm @cloudflare/unenv-preset 2.11.0indirecta npm @cloudflare/vitest-pool-workers 0.12.6indirecta npm @cloudflare/workerd-darwin-64 1.20260120.0indirecta npm @cloudflare/workerd-darwin-arm64 1.20260120.0indirecta npm @cloudflare/workerd-linux-64 1.20260120.0indirecta npm @cloudflare/workerd-linux-arm64 1.20260120.0indirecta npm @cloudflare/workerd-windows-64 1.20260120.0indirecta npm @cloudflare/workers-types 4.20260124.0indirecta npm @cspotcode/source-map-support 0.8.1indirecta npm @docsearch/css 3.8.2indirecta npm @docsearch/js 3.8.2indirecta npm @docsearch/react 3.8.2indirecta npm @emnapi/runtime 1.8.1indirecta npm @esbuild/aix-ppc64 0.21.5indirecta npm @esbuild/aix-ppc64 0.27.0indirecta npm @esbuild/android-arm 0.21.5indirecta npm @esbuild/android-arm 0.27.0indirecta npm @esbuild/android-arm64 0.21.5indirecta npm @esbuild/android-arm64 0.27.0indirecta npm @esbuild/android-x64 0.21.5indirecta npm @esbuild/android-x64 0.27.0indirecta npm @esbuild/darwin-arm64 0.21.5indirecta npm @esbuild/darwin-arm64 0.27.0indirecta npm @esbuild/darwin-x64 0.21.5indirecta npm @esbuild/darwin-x64 0.27.0indirecta npm @esbuild/freebsd-arm64 0.21.5indirecta npm @esbuild/freebsd-arm64 0.27.0indirecta npm @esbuild/freebsd-x64 0.21.5indirecta npm @esbuild/freebsd-x64 0.27.0indirecta npm @esbuild/linux-arm 0.21.5indirecta npm @esbuild/linux-arm 0.27.0indirecta npm @esbuild/linux-arm64 0.21.5indirecta npm @esbuild/linux-arm64 0.27.0indirecta npm @esbuild/linux-ia32 0.21.5indirecta npm @esbuild/linux-ia32 0.27.0indirecta npm @esbuild/linux-loong64 0.21.5indirecta npm @esbuild/linux-loong64 0.27.0indirecta npm @esbuild/linux-mips64el 0.21.5indirecta npm @esbuild/linux-mips64el 0.27.0indirecta npm @esbuild/linux-ppc64 0.21.5indirecta npm @esbuild/linux-ppc64 0.27.0indirecta npm @esbuild/linux-riscv64 0.21.5indirecta npm @esbuild/linux-riscv64 0.27.0indirecta npm @esbuild/linux-s390x 0.21.5indirecta npm @esbuild/linux-s390x 0.27.0indirecta npm @esbuild/linux-x64 0.21.5indirecta npm @esbuild/linux-x64 0.27.0indirecta npm @esbuild/netbsd-arm64 0.27.0indirecta npm @esbuild/netbsd-x64 0.21.5indirecta npm @esbuild/netbsd-x64 0.27.0indirecta npm @esbuild/openbsd-arm64 0.27.0indirecta npm @esbuild/openbsd-x64 0.21.5indirecta npm @esbuild/openbsd-x64 0.27.0indirecta npm @esbuild/openharmony-arm64 0.27.0indirecta npm @esbuild/sunos-x64 0.21.5indirecta npm @esbuild/sunos-x64 0.27.0indirecta npm @esbuild/win32-arm64 0.21.5indirecta npm @esbuild/win32-arm64 0.27.0indirecta npm @esbuild/win32-ia32 0.21.5indirecta npm @esbuild/win32-ia32 0.27.0indirecta npm @esbuild/win32-x64 0.21.5indirecta npm @esbuild/win32-x64 0.27.0indirecta npm @iconify-json/simple-icons 1.2.24indirecta npm @iconify/types 2.0.0indirecta npm @img/colour 1.0.0indirecta npm @img/sharp-darwin-arm64 0.34.5indirecta npm @img/sharp-darwin-x64 0.34.5indirecta npm @img/sharp-libvips-darwin-arm64 1.2.4indirecta npm @img/sharp-libvips-darwin-x64 1.2.4indirecta npm @img/sharp-libvips-linux-arm 1.2.4indirecta npm @img/sharp-libvips-linux-arm64 1.2.4indirecta npm @img/sharp-libvips-linux-ppc64 1.2.4indirecta npm @img/sharp-libvips-linux-riscv64 1.2.4indirecta npm @img/sharp-libvips-linux-s390x 1.2.4indirecta npm @img/sharp-libvips-linux-x64 1.2.4indirecta npm @img/sharp-libvips-linuxmusl-arm64 1.2.4indirecta npm @img/sharp-libvips-linuxmusl-x64 1.2.4indirecta npm @img/sharp-linux-arm 0.34.5indirecta npm @img/sharp-linux-arm64 0.34.5indirecta npm @img/sharp-linux-ppc64 0.34.5indirecta npm @img/sharp-linux-riscv64 0.34.5indirecta npm @img/sharp-linux-s390x 0.34.5indirecta npm @img/sharp-linux-x64 0.34.5indirecta npm @img/sharp-linuxmusl-arm64 0.34.5indirecta npm @img/sharp-linuxmusl-x64 0.34.5indirecta npm @img/sharp-wasm32 0.34.5indirecta npm @img/sharp-win32-arm64 0.34.5indirecta npm @img/sharp-win32-ia32 0.34.5indirecta npm @img/sharp-win32-x64 0.34.5indirecta npm @inquirer/external-editor 1.0.3indirecta npm @isaacs/cliui 8.0.2indirecta npm @jridgewell/gen-mapping 0.3.5indirecta npm @jridgewell/resolve-uri 3.1.2indirecta npm @jridgewell/set-array 1.2.1indirecta npm @jridgewell/sourcemap-codec 1.5.0indirecta npm @jridgewell/trace-mapping 0.3.25indirecta npm @jridgewell/trace-mapping 0.3.9indirecta npm @manypkg/find-root 1.1.0indirecta npm @manypkg/get-packages 1.1.3indirecta npm @nodelib/fs.scandir 2.1.5indirecta npm @nodelib/fs.stat 2.0.5indirecta npm @nodelib/fs.walk 1.2.8indirecta npm @pkgjs/parseargs 0.11.0indirecta npm @poppinss/colors 4.1.6indirecta npm @poppinss/dumper 0.6.5indirecta npm @poppinss/exception 1.2.3indirecta npm @rollup/rollup-android-arm-eabi 4.43.0indirecta npm @rollup/rollup-android-arm64 4.43.0indirecta npm @rollup/rollup-darwin-arm64 4.43.0indirecta npm @rollup/rollup-darwin-x64 4.43.0indirecta npm @rollup/rollup-freebsd-arm64 4.43.0indirecta npm @rollup/rollup-freebsd-x64 4.43.0indirecta npm @rollup/rollup-linux-arm-gnueabihf 4.43.0indirecta npm @rollup/rollup-linux-arm-musleabihf 4.43.0indirecta npm @rollup/rollup-linux-arm64-gnu 4.43.0indirecta npm @rollup/rollup-linux-arm64-musl 4.43.0indirecta npm @rollup/rollup-linux-loongarch64-gnu 4.43.0indirecta npm @rollup/rollup-linux-powerpc64le-gnu 4.43.0indirecta npm @rollup/rollup-linux-riscv64-gnu 4.43.0indirecta npm @rollup/rollup-linux-riscv64-musl 4.43.0indirecta npm @rollup/rollup-linux-s390x-gnu 4.43.0indirecta npm @rollup/rollup-linux-x64-gnu 4.43.0indirecta npm @rollup/rollup-linux-x64-musl 4.43.0indirecta npm @rollup/rollup-win32-arm64-msvc 4.43.0indirecta npm @rollup/rollup-win32-ia32-msvc 4.43.0indirecta npm @rollup/rollup-win32-x64-msvc 4.43.0indirecta npm @shikijs/core 2.3.2indirecta npm @shikijs/engine-javascript 2.3.2indirecta npm @shikijs/engine-oniguruma 2.3.2indirecta npm @shikijs/langs 2.3.2indirecta npm @shikijs/themes 2.3.2indirecta npm @shikijs/transformers 2.3.2indirecta npm @shikijs/types 2.3.2indirecta npm @shikijs/vscode-textmate 10.0.1indirecta npm @sindresorhus/is 7.2.0indirecta npm @speed-highlight/core 1.2.14indirecta npm @types/chai 5.2.2indirecta npm @types/deep-eql 4.0.2indirecta npm @types/estree 1.0.7indirecta npm @types/hast 3.0.4indirecta npm @types/linkify-it 5.0.0indirecta npm @types/markdown-it 14.1.2indirecta npm @types/mdast 4.0.4indirecta npm @types/mdurl 2.0.0indirecta npm @types/node 12.20.55indirecta npm @types/node 22.9.0indirecta npm @types/unist 3.0.3indirecta npm @types/web-bluetooth 0.0.20indirecta npm @ungap/structured-clone 1.3.0indirecta npm @vitejs/plugin-vue 5.2.1indirecta npm @vitest/expect 3.2.4indirecta npm @vitest/mocker 3.2.4indirecta npm @vitest/pretty-format 3.2.4indirecta npm @vitest/runner 3.2.4indirecta npm @vitest/snapshot 3.2.4indirecta npm @vitest/spy 3.2.4indirecta npm @vitest/utils 3.2.4indirecta npm @vue/compiler-core 3.5.13indirecta npm @vue/compiler-dom 3.5.13indirecta npm @vue/compiler-sfc 3.5.13indirecta npm @vue/compiler-ssr 3.5.13indirecta npm @vue/devtools-api 7.7.1indirecta npm @vue/devtools-kit 7.7.1indirecta npm @vue/devtools-shared 7.7.1indirecta npm @vue/reactivity 3.5.13indirecta npm @vue/runtime-core 3.5.13indirecta npm @vue/runtime-dom 3.5.13indirecta npm @vue/server-renderer 3.5.13indirecta npm @vue/shared 3.5.13indirecta npm @vueuse/core 12.5.0indirecta npm @vueuse/integrations 12.5.0indirecta npm @vueuse/metadata 12.5.0indirecta npm @vueuse/shared 12.5.0indirecta npm acorn 8.14.0indirecta npm algoliasearch 5.20.2indirecta npm ansi-colors 4.1.3indirecta npm ansi-regex 5.0.1indirecta npm ansi-regex 6.1.0indirecta npm ansi-styles 4.3.0indirecta npm ansi-styles 6.2.1indirecta npm any-promise 1.3.0indirecta npm argparse 1.0.10indirecta npm argparse 2.0.1indirecta npm array-union 2.1.0indirecta npm assertion-error 2.0.1indirecta npm balanced-match 1.0.2indirecta npm better-path-resolve 1.0.0indirecta npm birpc 0.2.19indirecta npm blake3-wasm 2.1.5indirecta npm brace-expansion 2.0.1indirecta npm braces 3.0.3indirecta npm bundle-require 5.1.0indirecta npm cac 6.7.14indirecta npm ccount 2.0.1indirecta npm chai 5.2.1indirecta npm character-entities-html4 2.1.0indirecta npm character-entities-legacy 3.0.0indirecta npm chardet 2.1.1indirecta npm check-error 2.1.1indirecta npm chokidar 4.0.3indirecta npm cjs-module-lexer 1.4.1indirecta npm color-convert 2.0.1indirecta npm color-name 1.1.4indirecta npm comma-separated-tokens 2.0.3indirecta npm commander 4.1.1indirecta npm confbox 0.1.8indirecta npm consola 3.4.2indirecta npm cookie 1.1.1indirecta npm copy-anything 3.0.5indirecta npm cross-spawn 7.0.5indirecta npm csstype 3.1.3indirecta npm dataloader 1.4.0indirecta npm debug 4.4.1indirecta npm deep-eql 5.0.2indirecta npm dequal 2.0.3indirecta npm detect-indent 6.1.0indirecta npm detect-libc 2.1.2indirecta npm devlop 1.1.0indirecta npm dir-glob 3.0.1indirecta npm dotenv 8.6.0indirecta npm eastasianwidth 0.2.0indirecta npm emoji-regex 8.0.0indirecta npm emoji-regex 9.2.2indirecta npm emoji-regex-xs 1.0.0indirecta npm enquirer 2.4.1indirecta npm entities 4.5.0indirecta npm error-stack-parser-es 1.0.5indirecta npm es-module-lexer 1.7.0indirecta npm esbuild 0.21.5indirecta npm esbuild 0.27.0indirecta npm esprima 4.0.1indirecta npm estree-walker 2.0.2indirecta npm estree-walker 3.0.3indirecta npm expect-type 1.2.2indirecta npm extendable-error 0.1.7indirecta npm fast-glob 3.3.3indirecta npm fastq 1.20.1indirecta npm fdir 6.4.6indirecta npm fill-range 7.1.1indirecta npm find-up 4.1.0indirecta npm fix-dts-default-cjs-exports 1.0.1indirecta npm focus-trap 7.6.4indirecta npm foreground-child 3.3.0indirecta npm fs-extra 7.0.1indirecta npm fs-extra 8.1.0indirecta npm fsevents 2.3.3indirecta npm glob 10.4.5indirecta npm glob-parent 5.1.2indirecta npm globby 11.1.0indirecta npm graceful-fs 4.2.11indirecta npm hast-util-to-html 9.0.4indirecta npm hast-util-whitespace 3.0.0indirecta npm hookable 5.5.3indirecta npm html-void-elements 3.0.0indirecta npm human-id 4.1.3indirecta npm iconv-lite 0.7.2indirecta npm ignore 5.3.2indirecta npm is-extglob 2.1.1indirecta npm is-fullwidth-code-point 3.0.0indirecta npm is-glob 4.0.3indirecta npm is-number 7.0.0indirecta npm is-subdir 1.2.0indirecta npm is-what 4.1.16indirecta npm is-windows 1.0.2indirecta npm isexe 2.0.0indirecta npm jackspeak 3.4.3indirecta npm joycon 3.1.1indirecta npm js-tokens 9.0.1indirecta npm js-yaml 3.14.2indirecta npm js-yaml 4.1.1indirecta npm jsonfile 4.0.0indirecta npm kleur 4.1.5indirecta npm lilconfig 3.1.2indirecta npm lines-and-columns 1.2.4indirecta npm load-tsconfig 0.2.5indirecta npm locate-path 5.0.0indirecta npm lodash.startcase 4.4.0indirecta npm loupe 3.2.0indirecta npm lru-cache 10.4.3indirecta npm magic-string 0.30.17indirecta npm mark.js 8.11.1indirecta npm mdast-util-to-hast 13.2.0indirecta npm merge2 1.4.1indirecta npm micromark-util-character 2.1.1indirecta npm micromark-util-encode 2.0.1indirecta npm micromark-util-sanitize-uri 2.0.1indirecta npm micromark-util-symbol 2.0.1indirecta npm micromark-util-types 2.0.1indirecta npm micromatch 4.0.8indirecta npm miniflare 4.20260120.0indirecta npm minimatch 9.0.5indirecta npm minipass 7.1.2indirecta npm minisearch 7.1.1indirecta npm mitt 3.0.1indirecta npm mlly 1.7.4indirecta npm mri 1.2.0indirecta npm ms 2.1.3indirecta npm mz 2.7.0indirecta npm nanoid 3.3.8indirecta npm node-fetch 2.7.0indirecta npm object-assign 4.1.1indirecta npm oniguruma-to-es 3.1.0indirecta npm outdent 0.5.0indirecta npm p-filter 2.1.0indirecta npm p-limit 2.3.0indirecta npm p-locate 4.1.0indirecta npm p-map 2.1.0indirecta npm p-try 2.2.0indirecta npm package-json-from-dist 1.0.1indirecta npm package-manager-detector 0.2.11indirecta npm path-exists 4.0.0indirecta npm path-key 3.1.1indirecta npm path-scurry 1.11.1indirecta npm path-to-regexp 6.3.0indirecta npm path-type 4.0.0indirecta npm pathe 2.0.3indirecta npm pathval 2.0.1indirecta npm perfect-debounce 1.0.0indirecta npm picocolors 1.1.1indirecta npm picomatch 2.3.1indirecta npm picomatch 4.0.2indirecta npm pify 4.0.1indirecta npm pirates 4.0.6indirecta npm pkg-types 1.3.1indirecta npm postcss 8.5.2indirecta npm postcss-load-config 6.0.1indirecta npm preact 10.25.4indirecta npm prettier 2.8.8indirecta npm property-information 6.5.0indirecta npm quansync 0.2.11indirecta npm queue-microtask 1.2.3indirecta npm read-yaml-file 1.1.0indirecta npm readdirp 4.1.2indirecta npm regex 6.0.1indirecta npm regex-recursion 6.0.2indirecta npm regex-utilities 2.3.0indirecta npm resolve-from 5.0.0indirecta npm reusify 1.1.0indirecta npm rfdc 1.4.1indirecta npm rollup 4.43.0indirecta npm run-parallel 1.2.0indirecta npm safer-buffer 2.1.2indirecta npm search-insights 2.17.3indirecta npm semver 7.7.3indirecta npm sharp 0.34.5indirecta npm shebang-command 2.0.0indirecta npm shebang-regex 3.0.0indirecta npm shiki 2.3.2indirecta npm siginfo 2.0.0indirecta npm signal-exit 4.1.0indirecta npm slash 3.0.0indirecta npm source-map 0.7.6indirecta npm source-map-js 1.2.1indirecta npm space-separated-tokens 2.0.2indirecta npm spawndamnit 3.0.1indirecta npm speakingurl 14.0.1indirecta npm sprintf-js 1.0.3indirecta npm stackback 0.0.2indirecta npm std-env 3.9.0indirecta npm string-width 4.2.3indirecta npm string-width 5.1.2indirecta npm stringify-entities 4.0.4indirecta npm strip-ansi 6.0.1indirecta npm strip-ansi 7.1.0indirecta npm strip-bom 3.0.0indirecta npm strip-literal 3.0.0indirecta npm sucrase 3.35.0indirecta npm superjson 2.2.2indirecta npm supports-color 10.2.2indirecta npm tabbable 6.2.0indirecta npm term-size 2.2.1indirecta npm thenify 3.3.1indirecta npm thenify-all 1.6.0indirecta npm tinybench 2.9.0indirecta npm tinyexec 0.3.2indirecta npm tinyglobby 0.2.14indirecta npm tinypool 1.1.1indirecta npm tinyrainbow 2.0.0indirecta npm tinyspy 4.0.3indirecta npm to-regex-range 5.0.1indirecta npm tr46 0.0.3indirecta npm tree-kill 1.2.2indirecta npm trim-lines 3.0.1indirecta npm ts-interface-checker 0.1.13indirecta npm tslib 2.8.1indirecta npm tsup 8.5.1indirecta npm typescript 5.9.3indirecta npm ufo 1.6.1indirecta npm undici 7.18.2indirecta npm undici-types 6.19.8indirecta npm unenv 2.0.0-rc.24indirecta npm unist-util-is 6.0.0indirecta npm unist-util-position 5.0.0indirecta npm unist-util-stringify-position 4.0.0indirecta npm unist-util-visit 5.0.0indirecta npm unist-util-visit-parents 6.0.1indirecta npm universalify 0.1.2indirecta npm vfile 6.0.3indirecta npm vfile-message 4.0.2indirecta npm vite 5.4.14indirecta npm vite-node 3.2.4indirecta npm vitepress 1.6.4indirecta npm vitest 3.2.4indirecta npm vue 3.5.13indirecta npm webidl-conversions 3.0.1indirecta npm whatwg-url 5.0.0indirecta npm which 2.0.2indirecta npm why-is-node-running 2.3.0indirecta npm workerd 1.20260120.0indirecta npm wrangler 4.60.0indirecta npm wrap-ansi 7.0.0indirecta npm wrap-ansi 8.1.0indirecta npm ws 8.18.0indirecta npm youch 4.1.0-beta.10indirecta npm youch-core 0.3.3indirecta npm zod 3.25.76indirecta npm zwitch 2.0.4indirecta
Avisos de dependencias 16 Este repositorio no publica ningún paquete que el índice resuelva, así que se evaluó su propio grafo de dependencias — 469 paquetes, que incluyen también fijaciones de desarrollo y prueba que nunca se distribuyen: 16 tienen avisos conocidos, de los cuales 0 son directas.
Paquete Versión Relación Gravedad Avisos Corregido en rollup 4.43.0indirecta crítica 1 4.59.0vitest 3.2.4indirecta crítica 1 4.1.0brace-expansion 2.0.1indirecta alta 5 5.0.9glob 10.4.5indirecta alta 1 11.1.0js-yaml 3.14.2indirecta alta 2 4.3.0js-yaml 4.1.1indirecta alta 2 4.3.0minimatch 9.0.5indirecta alta 3 10.2.3picomatch 2.3.1indirecta alta 2 4.0.4picomatch 4.0.2indirecta alta 2 4.0.4postcss 8.5.2indirecta alta 4 8.5.23sharp 0.34.5indirecta alta 1 0.35.0undici 7.18.2indirecta alta 16 8.9.0vite 5.4.14indirecta alta 11 8.0.16ws 8.18.0indirecta alta 2 8.21.0esbuild 0.21.5indirecta moderada 1 0.25.0mdast-util-to-hast 13.2.0indirecta moderada 1 13.2.1
Un aviso significa que la versión registrada en el grafo de dependencias cae dentro del rango afectado de un aviso. No se analiza la alcanzabilidad, y el grafo incluye fijaciones de desarrollo y prueba: un hallazgo puede referirse al utillaje y no al software distribuido.
Informe JSON sin procesar legible por máquina