{"id":19197891,"url":"https://github.com/flarebyte/baldrick-dev-ts","last_synced_at":"2026-06-11T20:31:17.873Z","repository":{"id":44900488,"uuid":"399871528","full_name":"flarebyte/baldrick-dev-ts","owner":"flarebyte","description":"CLI for TypeScript package development","archived":false,"fork":false,"pushed_at":"2025-09-20T15:50:06.000Z","size":401,"stargazers_count":0,"open_issues_count":4,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T16:24:05.122Z","etag":null,"topics":["cli","experimental","npm-cli"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flarebyte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-08-25T15:38:18.000Z","updated_at":"2025-09-20T15:50:09.000Z","dependencies_parsed_at":"2022-08-12T11:40:24.723Z","dependency_job_id":null,"html_url":"https://github.com/flarebyte/baldrick-dev-ts","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/flarebyte/baldrick-dev-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-dev-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-dev-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-dev-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-dev-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flarebyte","download_url":"https://codeload.github.com/flarebyte/baldrick-dev-ts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-dev-ts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34217312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","experimental","npm-cli"],"created_at":"2024-11-09T12:19:11.607Z","updated_at":"2026-06-11T20:31:17.867Z","avatar_url":"https://github.com/flarebyte.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Baldrick-dev-ts\n\n![npm](https://img.shields.io/npm/v/baldrick-dev-ts) ![Build status](https://github.com/flarebyte/baldrick-dev-ts/actions/workflows/main.yml/badge.svg)\n![npm bundle size](https://img.shields.io/bundlephobia/min/baldrick-dev-ts)\n\n![npm type definitions](https://img.shields.io/npm/types/baldrick-dev-ts)\n![node-current](https://img.shields.io/node/v/baldrick-dev-ts)\n![NPM](https://img.shields.io/npm/l/baldrick-dev-ts)\n\n\u003e CLI utilities to help with Markdown hygiene and release checks for TypeScript packages (ESM).\n\n![Hero image for baldrick-dev-ts](baldrick-dev-ts-hero-512.jpeg)\n\nThe current scope is intentionally small and focused to reduce setup time and dev-dependencies.\n\n- TypeScript (ESM) friendly\n- Markdown checks and formatting (remark + Prettier-based normalisation)\n- Release checks and publishing helper\n- Minimal config; tools invoked via `npx`\n- Requires Node.js \u003e= 22\n\n## Why this exists\n\nMost projects only need a thin layer of polish and safety around docs and releases. This CLI keeps the toolchain tiny by:\n\n- Focusing on the high‑value parts (Markdown + release checks).\n- Using `npx` to run heavy tools on demand (no permanent dev-deps).\n- Working out of the box with sensible defaults for ESM/TypeScript repos.\n\nIf you need full linting/testing stacks, use dedicated tools; this CLI won’t get in your way.\n\n## Quickstart\n\n1) Prerequisite: Node.js 22+\n\n2) Check your Markdown\n\n```bash\nnpx baldrick-dev-ts markdown check --with-path-starting .\n```\n\n3) Fix formatting (wrap lines, bullet style, etc.)\n\n```bash\nnpx baldrick-dev-ts markdown fix --with-path-starting .\n```\n\n4) Sanity‑check your release (no publish)\n\n```bash\nnpx baldrick-dev-ts release check\n```\n\n## Usage\n\nMarkdown: check and fix\n\n```bash\n# Check markdown under current repository (default extension .md)\nnpx baldrick-dev-ts markdown check --with-path-starting .\n\n# Check markdown in .github/ only\nnpx baldrick-dev-ts markdown check --with-path-starting .github/\n\n# Fix markdown formatting and line wrapping in-place\nnpx baldrick-dev-ts markdown fix --with-path-starting .\n```\n\nRelease: dry-run check\n\n```bash\n# Check if the current version can be published (no publishing happens)\nnpx baldrick-dev-ts release check\n```\n\nDeprecated commands\n\n- `lint` and `test` subcommands are no longer supported and only print a deprecation notice.\n\n## Acknowledgements\n\n`baldrick-dev-ts` was initially created as a fork of the brilliant\n[tsdx](https://github.com/jaredpalmer/tsdx) project.\nEventually, the code has been massively refactored to match the new\nrequirements, and very little remain of the `tsdx` starting point, except our\ngratitude to this initial project.\n\n## Documentation and links\n\n-   [Code Maintenance](MAINTENANCE.md)\n-   [Code Of Conduct](CODE_OF_CONDUCT.md)\n-   [Api for baldrick-dev-ts](API.md)\n-   [Contributing](CONTRIBUTING.md)\n-   [Glossary](GLOSSARY.md)\n-   [Diagram for the code base](INTERNAL.md)\n-   [Vocabulary used in the code base](CODE_VOCABULARY.md)\n-   [Architectural Decision Records](DECISIONS.md)\n-   [Contributors](https://github.com/flarebyte/baldrick-dev-ts/graphs/contributors)\n-   [Dependencies](https://github.com/flarebyte/baldrick-dev-ts/network/dependencies)\n\n## Installation \u0026 running\n\nThis package is [ESM only](https://blog.sindresorhus.com/get-ready-for-esm-aa53530b3f77).\n\nRun without installing globally:\n\n```bash\nnpx baldrick-dev-ts --help\n```\n\nOr install locally in your project and add scripts:\n\n```bash\nyarn add -D baldrick-dev-ts\nyarn baldrick-dev-ts --help\n```\n\n## Development\n\n- Build: `yarn build`\n- Lint: `yarn lint` (Biome via `npx @biomejs/biome@latest`)\n- Unit tests: `yarn test:ci` (Node.js test runner)\n- Coverage: `yarn test:cov` (via `npx c8@latest`)\n- CLI smoke tests: `yarn test:pest` (baldrick-pest specs in `pest-spec/`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflarebyte%2Fbaldrick-dev-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflarebyte%2Fbaldrick-dev-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflarebyte%2Fbaldrick-dev-ts/lists"}