{"id":17632339,"url":"https://github.com/lvqq/create-awesome-project","last_synced_at":"2025-11-12T22:29:29.131Z","repository":{"id":59203308,"uuid":"531974207","full_name":"lvqq/create-awesome-project","owner":"lvqq","description":"⚡ A command-line tool to help you initialize projects","archived":false,"fork":false,"pushed_at":"2025-11-12T19:54:39.000Z","size":1765,"stargazers_count":18,"open_issues_count":11,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-12T21:22:28.446Z","etag":null,"topics":["command-line-tool","create-app","template","tsup","typescript","vite","vitest"],"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/lvqq.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-09-02T15:10:01.000Z","updated_at":"2025-09-28T03:07:41.000Z","dependencies_parsed_at":"2024-01-31T02:38:18.085Z","dependency_job_id":"7d8dc36a-b2db-46e3-b4cd-2df15984342f","html_url":"https://github.com/lvqq/create-awesome-project","commit_stats":{"total_commits":365,"total_committers":2,"mean_commits":182.5,"dds":0.1698630136986301,"last_synced_commit":"e153f4206cb7e3eb139b76dcd799b176a5979e4c"},"previous_names":["lvqq/create-awesome-project","lvqq/cap"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/lvqq/create-awesome-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvqq%2Fcreate-awesome-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvqq%2Fcreate-awesome-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvqq%2Fcreate-awesome-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvqq%2Fcreate-awesome-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lvqq","download_url":"https://codeload.github.com/lvqq/create-awesome-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lvqq%2Fcreate-awesome-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284122917,"owners_count":26951149,"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","status":"online","status_checked_at":"2025-11-12T02:00:06.336Z","response_time":59,"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":["command-line-tool","create-app","template","tsup","typescript","vite","vitest"],"created_at":"2024-10-23T01:05:43.381Z","updated_at":"2025-11-12T22:29:29.112Z","avatar_url":"https://github.com/lvqq.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cap\n\n[![npm version](https://img.shields.io/npm/v/create-cap.svg)](https://www.npmjs.com/package/create-cap) ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/lvqq/cap/ci.yml?branch=main) [![Coverage Status](https://coveralls.io/repos/github/lvqq/cap/badge.svg?branch=main)](https://coveralls.io/github/lvqq/cap?branch=main) ![node-current (scoped)](https://img.shields.io/node/v/create-cap) ![GitHub](https://img.shields.io/github/license/lvqq/cap)\n\ncap means **create awesome project**, it has some common engineering configurations built in. You can create a project with one line of command.\n\n## Usage\n```bash\n# npm\nnpm create cap my-cap-app\n# yarn\nyarn create cap my-cap-app\n# pnpm\npnpm create cap my-cap-app\n```\n\nYou can also directly specify the template:\n\n```bash\n# npm\nnpm create cap my-cap-app --template react-ts\n# yarn\nyarn create cap my-cap-app --template react-ts\n# pnpm\npnpm create cap my-cap-app --template react-ts\n```\n\nSupported templates: `ts`, `react-ts`, `vue-ts`, `svelte-ts`, `astro-ts`\n\n## Common configurations\n- `TypeScript`\n- `ESLint`\n- `Prettier`\n- `Husky`\n- `Lint-Staged`\n- `Vitest`\n- `Github Workflow`\n\n## Templates\nWe have the following templates:\n\n### ts\nUse `tsup` to build project using only `TypeScript`\n\n### react-ts\nUse `vite` to build project using `React18` and `TypeScript`\n\n### vue-ts\nUse `vite` to build project using `Vue3` and `TypeScript`\n\n### svelte-ts\nUse `vite` to build project using `Svelte4` and `TypeScript`\n\n# Development\nFirst run install\n```bash\npnpm install\n```\n\nLink cli after build\n```bash\npnpm build \u0026\u0026 pnpm --dir ./packages/create-cap link --global\n```\n\nMake changes, run build or watch mode\n```bash\n# run build\npnpm build-create\n\n# run dev watch\npnpm dev-create\n```\n\nRun all test\n```bash\npnpm test \u0026\u0026 pnpm test:template\n```\n\n# Publish\n## latest\n```bash\npnpm -F=\u003cpkg\u003e publish\n```\n\n## beta\n```bash\npnpm -F=\u003cpkg\u003e publish --tag beta\n```\n\n# License\n[MIT](https://github.com/lvqq/cap/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flvqq%2Fcreate-awesome-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flvqq%2Fcreate-awesome-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flvqq%2Fcreate-awesome-project/lists"}