{"id":18048516,"url":"https://github.com/bent10/doogu","last_synced_at":"2025-04-10T09:52:18.416Z","repository":{"id":37810752,"uuid":"488931846","full_name":"bent10/doogu","owner":"bent10","description":"A wrapper around modern JavaScript tools.","archived":false,"fork":false,"pushed_at":"2025-03-01T02:46:40.000Z","size":1220,"stargazers_count":4,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-06T11:16:11.168Z","etag":null,"topics":["build","cli","coverage","development","doogu","eslint","javascript","lint","test","typescript","watch"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/doogu","language":"JavaScript","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/bent10.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-05T10:44:04.000Z","updated_at":"2025-01-02T06:30:03.000Z","dependencies_parsed_at":"2022-07-12T16:53:54.196Z","dependency_job_id":"aae6019b-df7d-4dc8-962c-7e4e09f38ca8","html_url":"https://github.com/bent10/doogu","commit_stats":{"total_commits":331,"total_committers":5,"mean_commits":66.2,"dds":0.5287009063444108,"last_synced_commit":"ea0a03bb4412faf6eecae7f4f42c768240d9f127"},"previous_names":[],"tags_count":232,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bent10%2Fdoogu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bent10%2Fdoogu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bent10%2Fdoogu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bent10%2Fdoogu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bent10","download_url":"https://codeload.github.com/bent10/doogu/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248198052,"owners_count":21063624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["build","cli","coverage","development","doogu","eslint","javascript","lint","test","typescript","watch"],"created_at":"2024-10-30T20:13:15.323Z","updated_at":"2025-04-10T09:52:18.391Z","avatar_url":"https://github.com/bent10.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# doogu\n\nA wrapper around modern JavaScript tools.\n\n- [Install](#install)\n- [What includes?](#what-includes)\n- [Shareable configs](#shareable-configs)\n  - [ESLint Configuration](#eslint-configuration)\n  - [Prettier Configuration](#prettier-configuration)\n  - [Semantic Release Configuration](#semantic-release-configuration)\n- [NPM Scripts](#npm-scripts)\n- [Related](#related)\n- [Contributing](#contributing)\n- [Thank you](#thank-you)\n\n## Install\n\n```bash\nnpm i -D doogu\n```\n\n## What includes?\n\nThis package comes with a set of essential development dependencies:\n\n- [Typescript](https://www.typescriptlang.org/) – A language for application-scale JavaScript\n- [Vite](https://vitejs.dev/) – Next generation frontend tooling\n- [Vitest](https://www.npmjs.com/package/chokidar-cli) – A Vite-native unit test framework. It's fast!\n- [ESLint](https://eslint.org/) – Pluggable JavaScript linter\n- [Prettier](https://prettier.io/) – An opinionated code formatter\n\n## Shareable configs\n\nDoogu provides shareable configs for ESLint, Prettier, and Semantic Release that can be reused across projects.\n\n### ESLint Configuration\n\nCreate your `eslint.config.js` file, add the following:\n\n```js\nexport { default } from 'doogu/eslint.config.js'\n```\n\n### Prettier Configuration\n\nTo extend the shareable Prettier configuration in your `package.json` file, add the following:\n\n```json\n{\n  \"prettier\": \"doogu/prettier.config.js\"\n}\n```\n\n### Semantic Release Configuration\n\nTo extend the shareable Semantic Release config in your `package.json` file, add the following:\n\n```json\n{\n  \"release\": \"doogu/release.config.js\"\n}\n```\n\n## NPM Scripts\n\nYou can utilize the following commands in your `package.json` file:\n\n```json\n{\n  \"scripts\": {\n    \"dev\": \"vite\",\n    \"build\": \"vite build\",\n    \"preview\": \"vite preview\",\n    \"test\": \"vitest\",\n    \"coverage\": \"vitest run --coverage\",\n    \"lint\": \"eslint .\",\n    \"format\": \"prettier --write .\"\n  }\n}\n```\n\nOr do anything you want:\n\n```json\n{\n  \"scripts\": {\n    \"start\": \"npm run dev\",\n    \"dev\": \"npm run types \u0026\u0026 vite build --ssr src/index.ts --emptyOutDir=false --watch\",\n    \"build\": \"vite build --ssr src/index.ts \u0026\u0026 npm run types\",\n    \"test\": \"vitest --ui\",\n    \"coverage\": \"vitest run --coverage\",\n    \"types\": \"tsc -d --emitDeclarationOnly --outDir ./dist\",\n    \"lint\": \"tsc --noEmit \u0026\u0026 eslint .\",\n    \"format\": \"prettier --write .\"\n  }\n}\n```\n\n## Related\n\n- [module-starter](https://github.com/bent10/module-starter) – A bare-bones template designed for modern web projects\n- [monorepo-starter](https://github.com/bent10/monorepo-starter) – A monorepo starter template using native NPM workspace\n\n## Contributing\n\nWe 💛 issues.\n\nWhen committing, please conform to [the semantic-release commit standards](https://www.conventionalcommits.org/). Please install `commitizen` and the adapter globally, if you have not already.\n\n```bash\nnpm i -g commitizen cz-conventional-changelog\n```\n\nNow you can use `git cz` or just `cz` instead of `git commit` when committing. You can also use `git-cz`, which is an alias for `cz`.\n\n```bash\ngit add . \u0026\u0026 git cz\n```\n\n## Thank you\n\nA project by [Stilearning](https://stilearning.com) \u0026copy; 2022-2024.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbent10%2Fdoogu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbent10%2Fdoogu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbent10%2Fdoogu/lists"}