, 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úblico
Informe de salud del softwareesquema 0.30.0 · métricas 2.5.0 · 2026-08-04 06:04 UTC

G4brym / workers-qb

Zero dependencies Query Builder for Cloudflare Workers

TypeScriptMIT★ 398 estrellas⑂ 26 forksdesde jul 2022Ver en GitHub ↗
TipoBibliotecacómo se determina

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.

78
global / 100
Bueno

Í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
Excepcional93-100El nivel más alto del registro (≈ el 5% superior); cumple prácticamente todos los criterios evaluados
Excelente80-92Sólido en todos los frentes; carencias menores
Bueno65-79Saludable; carencias limitadas y manejables
Moderado50-64Aceptable con carencias notables; se recomienda revisión
Débil35-49Debilidades sustanciales en varias áreas
En riesgo20-34Debilidades significativas; su adopción exige cautela
Crítico1-19Problemas graves (proyecto abandonado, un solo mantenedor, sin higiene)
VitalidadComunidad yAdopciónSostenibilidady GobernanzaCalidad deIngenieríaSeguridadPreparaciónpara 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

Gabriel MassadasCuenta personal
194 seguidores58 repositorios públicosdesde 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

Vitalidad

¿Está vivo el proyecto: se escribe código y se publican versiones?

69Bueno · 21% del índice global
Cómo se puntúa
28.8/36Recencia de push — último push hace 10 días
7.6/36Cadencia de commits — 11/52 semanas con commits
15.4/18Volumen de commits — 51 commits en el último año
1/10OpenSSF Scorecard: Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Datos de entrada utilizados
commits_last_year51
human_commit_share0,82
days_since_last_push10
active_weeks_last_year11
Cómo se puntúa
27/27Publica versiones — 52 versiones publicadas
36/36Recencia de las versiones — última versión hace 10 días
19.8/27Cadencia de publicación — una versión cada ~61,8 días
0/10OpenSSF Scorecard: Signed-Releases — sin datos
Datos de entrada utilizados
releases_count52
latest_release_tagv1.15.0
releases_from_tagsno
days_since_latest_release10
mean_days_between_releases61,8
Excluidos de la puntuación (sin datos o no aplicable): OpenSSF Scorecard: Signed-Releases. Los pesos restantes se han renormalizado.

Comunidad y Adopción

¿Tiene el proyecto usuarios, descargas, atención y unas condiciones acogedoras para quienes contribuyen?

60Moderado · 17% del índice global
Cómo se puntúa
42.2/60Estrellas — 398 estrellas
11.7/25Forks — 26 forks
1.7/15Observadores — 3 observadores
Datos de entrada utilizados
forks26
stars398
watchers3
growth_stateunverified
growth_factor_pct100
growth_unverified_reasonno_history
Cómo se puntúa
22.5/22.5README
22.5/22.5Licencia — licencia reconocida (MIT)
0/18Guía CONTRIBUTING
0/13.5Código de conducta
0/7.2Plantilla de issues
0/6.3Plantilla de PR
Datos de entrada utilizados
has_readme
has_license
readme_badges3
has_contributingno
has_issue_templateno
has_code_of_conductno
readme_badge_servicesshields.io
has_pull_request_templateno
Cómo se puntúa
64.1/80Descargas mensuales — 64.152 descargas/mes en npm
0/20Dependientes en el registro — no lo informa este ecosistema
Datos de entrada utilizados
packagesworkers-qb
dependents
ecosystemsnpm
total_downloads
monthly_downloads64.152
Excluidos de la puntuación (sin datos o no aplicable): Dependientes en el registro. Los pesos restantes se han renormalizado.

Sostenibilidad y Gobernanza

¿Sobrevivirá el proyecto a sus personas: factor bus, capacidad de respuesta, quién lo respalda y mantenimiento del paquete?

60Moderado · 23% del índice global
Cómo se puntúa
9/54Factor bus — la mitad de los commits recae en 1 contribuyente(s)
0.9/22.5Distribución de commits — el principal contribuyente firma el 96% de los commits
9.5/13.5Amplitud de contribuyentes — 7 contribuyentes
3/10OpenSSF Scorecard: Contributors — project has 1 contributing companies or organizations -- score normalized to 3
Datos de entrada utilizados
bus_factor1
contributors_sampled7
top_contributor_share0,958
Cómo se puntúa
40.4/42Resolución de issues — 96% de issues cerradas
20.3/30Aceptación de PR — 96/142 PR decididos fusionados
0/13Newcomer PR acceptance — ningún PR de un contribuyente primerizo decidido en 30 d
0/15OpenSSF Scorecard: Code-Review — Found 1/28 approved changesets -- score normalized to 0
Datos de entrada utilizados
merged_prs96
open_issues1
closed_issues26
prs_merged_7d0
prs_decided_7d0
prs_merged_30d1
prs_decided_30d1
issue_closed_ratio0,963
closed_unmerged_prs46
first_time_authors_30d0
first_time_prs_merged_30d0
first_time_prs_decided_30d0
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/30Respaldo de la propiedad — cuenta personal (usuario)
0/20Dominio verificado — no aplicable a cuentas de usuario
16.5/25Alcance del propietario — 194 seguidores de G4brym
24.9/25Trayectoria — 58 repos públicos, cuenta de ~12 años
Datos de entrada utilizados
followers194
owner_typeUser
is_verified
owner_loginG4brym
public_repos58
account_age_days4708
Excluidos de la puntuación (sin datos o no aplicable): Dominio verificado. Los pesos restantes se han renormalizado.
Cómo se puntúa
25/25Publicado y resoluble — 1 paquete(s) en npm
35/35Recencia de publicación — última publicación hace 10 días
20/20Historial de versiones — 53 versiones en el registro
20/20No obsoleto — activo, ni obsoleto ni retirado
Datos de entrada utilizados
packagesworkers-qb
ecosystemsnpm
any_deprecatedno
min_days_since_publish10

Calidad de Ingeniería

¿Existen unas prácticas mínimas de ingeniería y documentación?

89Excelente · 19% del índice global
Cómo se puntúa
24/24Flujos de trabajo de CI — 3 flujo(s) de trabajo
24/24Pruebas presentes
16/16Configuración de linter — biome.json
0/9.6Hooks de pre-commit
6.4/6.4.editorconfig
18/20OpenSSF Scorecard: CI-Tests — 20 out of 21 merged PRs checked by a CI test -- score normalized to 9
Datos de entrada utilizados
has_ci
has_tests
has_editorconfig
has_linter_config
has_precommit_configno

Documentación

90Excelente
Cómo se puntúa
30/30README
25/25Directorio de documentación
15/15Sitio de documentación / página del proyecto — https://workers-qb.massadas.com
10/10Descripción del repositorio
10/10Topics — 11 topics
0/10Wiki
Datos de entrada utilizados
topicscloudflare-workers, sql-builder, worker, cloudflare-d1, d1sql, workers, typescript, query-builder, javascript, cloudflare, nodejs
has_wikino
homepagehttps://workers-qb.massadas.com
has_readme
has_docs_dir
has_description

Seguridad

¿Son sólidas las prácticas visibles de seguridad y de cadena de suministro, sin exposición jurisdiccional de alto riesgo sin resolver?

50Moderado · 16% del índice global
Cómo se puntúa
7.5/7.5Binary-Artifacts — no binaries found in the repo
0/7.5Branch-Protection — sin datos
2.2/2.5CI-Tests — 20 out of 21 merged PRs checked by a CI test -- score normalized to 9
0/2.5CII-Best-Practices — no effort to earn an OpenSSF best practices badge detected
0/7.5Code-Review — Found 1/28 approved changesets -- score normalized to 0
0.8/2.5Contributors — project has 1 contributing companies or organizations -- score normalized to 3
10/10Dangerous-Workflow — no dangerous workflow patterns detected
7.5/7.5Dependency-Update-Tool — update tool detected
0/5Fuzzing — project is not fuzzed
2.5/2.5Licencia — license file detected
0.8/7.5Maintained — 2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
0/5Packaging — sin datos
0/5Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
0/5SAST — SAST tool is not run on all commits -- score normalized to 0
0/5Security-Policy — security policy file not detected
0/7.5Signed-Releases — sin datos
0/7.5Token-Permissions — detected GitHub workflow tokens with excessive permissions
0/7.5Vulnerabilities — 51 existing vulnerabilities detected
Datos de entrada utilizados
sourceopenssf_scorecard
checks_evaluated15
scorecard_versionv5.5.0
checks_inconclusive3
scorecard_aggregate3,7
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/35Dependencias directas libres de avisos conocidos — ninguna dependencia directa tiene un aviso conocido
0/25Dependencias indirectas libres de avisos conocidos — el conjunto transitivo no es separable de las dependencias de desarrollo y prueba en este alcance
0/40Sin avisos pendientes — ningún aviso tiene fecha de publicación
Datos de entrada utilizados
sourceosv
advisories55
affected_packages16
assessed_packages469
unassessed_packages0
affected_by_severitycritical 2, high 12, moderate 2
direct_affected_packages0
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.

Preparación para IA

¿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.

78Bueno · 4% del índice global
Cómo se puntúa
45/45Instrucciones para agentes — CLAUDE.md
0/15Documentación legible por máquinas (llms.txt)
29.9/40Historial de commits legible — 46 de 82 commits humanos declaran su intención (asunto estructurado o cuerpo explicativo)
Datos de entrada utilizados
has_llms_txtno
legible_history_share0,561
agent_instruction_filesCLAUDE.md
agent_instruction_max_bytes2784
Cómo se puntúa
0/18Arranque con un solo comando
22/22Pruebas automatizadas
11/11Configuración de lint / formato — biome.json
11/11Verificación estática de tipos — tests/tsconfig.json, tsconfig.json
10/10Entorno reproducible — lockfile
10/10Práctica demostrada con agentes — 25 de los últimos 100 commits con autoría o crédito de agente
8/8Mantenimiento automatizado — 15 de los últimos 100 commits son actualizaciones automáticas de dependencias
0/10OpenSSF Scorecard: Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
Datos de entrada utilizados
has_nixno
has_tests
lockfilespackage-lock.json
has_dockerfileno
typed_language
bootstrap_files
has_devcontainerno
has_linter_config
typecheck_configstests/tsconfig.json, tsconfig.json
agent_commit_share0,25
toolchain_manifests
dependency_bot_commit_share0,15
Cómo se puntúa
45/45Código verificable por tipos — TypeScript (tipado estático)
55/55Tamaños de archivo manejables — 0/39 archivos fuente de más de 60 KB
Datos de entrada utilizados
primary_languageTypeScript
largest_source_bytes49.305
source_files_sampled39
oversized_source_files0

Datos clave

398estrellas de GitHub
7contribuidores
51commits en los últimos 12 meses
10días desde el último push
52versiones publicadas
1factor bus
1issues abiertas
npmecosistemas 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 ⇿
0Estrellas
26Forks
47Versiones

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.

0510152025302622022-092024-062026-03
Mayor 1Menor 13Parche 33

Cada punto abarca 4 días.

OpenSSF Scorecard 3.7 / 10
3.7agregado

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

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

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

PaqueteVersiónRelaciónGravedadAvisosCorregido en
rollup4.43.0indirectacrítica14.59.0
vitest3.2.4indirectacrítica14.1.0
brace-expansion2.0.1indirectaalta55.0.9
glob10.4.5indirectaalta111.1.0
js-yaml3.14.2indirectaalta24.3.0
js-yaml4.1.1indirectaalta24.3.0
minimatch9.0.5indirectaalta310.2.3
picomatch2.3.1indirectaalta24.0.4
picomatch4.0.2indirectaalta24.0.4
postcss8.5.2indirectaalta48.5.23
sharp0.34.5indirectaalta10.35.0
undici7.18.2indirectaalta168.9.0
vite5.4.14indirectaalta118.0.16
ws8.18.0indirectaalta28.21.0
esbuild0.21.5indirectamoderada10.25.0
mdast-util-to-hast13.2.0indirectamoderada113.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

Las puntuaciones son señales, no garantías. Reflejan prácticas públicamente visibles en GitHub; no son una auditoría de código ni una garantía de seguridad.

Los datos ausentes se excluyen y los pesos se renormalizan; nunca se puntúan como cero. La metodología es versionada y abierta: métricas v2.5.0, esquema v0.30.0 — metodología completa · wiki de métricas.

Cómo se sitúa un resultado dentro del registro general: estadísticas agregadasnpm.