{"id":25807907,"url":"https://github.com/corrupt952/voyager","last_synced_at":"2025-08-26T12:07:52.041Z","repository":{"id":278553947,"uuid":"935971961","full_name":"corrupt952/voyager","owner":"corrupt952","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-24T05:09:53.000Z","size":746,"stargazers_count":2,"open_issues_count":23,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-24T12:59:15.242Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/corrupt952.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}},"created_at":"2025-02-20T10:19:08.000Z","updated_at":"2025-08-24T05:09:26.000Z","dependencies_parsed_at":"2025-07-05T18:31:53.242Z","dependency_job_id":"576528c1-e2ab-4fc9-a0eb-2ea56098eb77","html_url":"https://github.com/corrupt952/voyager","commit_stats":null,"previous_names":["corrupt952/voyager"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/corrupt952/voyager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fvoyager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fvoyager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fvoyager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fvoyager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/corrupt952","download_url":"https://codeload.github.com/corrupt952/voyager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corrupt952%2Fvoyager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271916364,"owners_count":24843209,"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-08-24T02:00:11.135Z","response_time":111,"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":[],"created_at":"2025-02-27T21:41:26.041Z","updated_at":"2025-08-26T12:07:52.018Z","avatar_url":"https://github.com/corrupt952.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Voyager - Vue Component Dependency Visualizer\n\nVoyager generates beautiful, interactive dependency diagrams from your Vue.js components. Whether you're working on small or large applications, Voyager helps you visualize complex component relationships with ease.\n\n![Voyager Demo](./docs/assets/demo.gif)\n\n## What's Voyager?\n\n- **Beautiful UI \u0026 Interactive**: Clean design with intuitive features like panning, zooming, and filtering make it easy to understand even the most complex component relationships.\n- **Simple Import Analysis**: Seamlessly analyze your Vue.js components and their dependencies without complex configuration.\n- **Atomic Design Support**: Automatically detect and visualize your component hierarchy based on Atomic Design principles.\n- **High Performance**: Optimized for both small and large projects, easily handling hundreds of components.\n- **Fully Open-Source**: Shape Voyager to fit your team's needs through contributions.\n\n## Features\n\n- 📊 Simple import analysis for dependency visualization\n- 🎨 Intuitive graph visualization\n- 🔍 Automatic Atomic Design hierarchy detection\n- 📁 Directory-based component grouping\n- 🔄 Interactive dependency exploration\n\n## Quick Start\n\n```bash\n# Install Voyager CLI\nnpm install -g @voyager-vue/cli\n\n# Or use npx directly\nnpx @voyager-vue/cli graph src/\n\n# Run in your Vue.js project\ncd /path/to/your/vue-project\n\n# Generate interactive dependency graph\nvoyager graph src/\n\n# Show dependencies for a specific file\nvoyager deps src/ -t components/MyComponent.vue\n\n# Show project statistics\nvoyager stats src/\n```\n\n## Commands\n\n### `voyager graph \u003cdirectory\u003e`\nGenerate an interactive HTML dependency graph.\n\n```bash\n# Basic usage\nvoyager graph src/\n\n# Custom output file\nvoyager graph src/ -o my-graph.html\n\n# With custom ignore patterns\nvoyager graph src/ --ignore \"**/*.config.js\" \"**/*.mock.js\"\n```\n\n### `voyager deps \u003cdirectory\u003e`\nShow dependencies for a specific file.\n\n```bash\n# Show direct dependencies only\nvoyager deps src/ -t components/Button.vue\n\n# Show dependencies up to depth 3\nvoyager deps src/ -t components/Button.vue -d 3\n\n# Show all dependency levels\nvoyager deps src/ -t components/Button.vue -d all\n\n# Output as JSON\nvoyager deps src/ -t components/Button.vue --json\n```\n\nExample output:\n```\nApp.vue\n├── imports (2):\n│   ├── ./components/Header.vue\n│   └── ./components/Footer.vue\n└── imported by: none\n```\n\n### `voyager stats \u003cdirectory\u003e`\nDisplay component statistics and analysis.\n\n```bash\n# Show statistics\nvoyager stats src/\n\n# Output as JSON for CI/CD integration\nvoyager stats src/ --json\n```\n\n## Roadmap\n\n- 🔄 Vuex store and component relationship visualization\n- 📝 Detailed Props and Emit relationship display\n- ✅ Test coverage integration\n- 📊 Performance analysis features\n\nVisit our [GitHub Projects](https://github.com/corrupt952/voyager/projects) page to see what we're working on.\n\n## Documentation\n\nComing soon...\n\n## Contributing\n\nThank you for your interest in contributing to Voyager!\nContribution guidelines are currently in preparation.\n\n**If you find this project helpful, please give it a star! ⭐**\nYour support helps us reach a wider audience and continue development.\n\n## License\n\nThis project is licensed under the [MIT License](./LICENSE).\n\n## Author\n\n- [K@zuki.](https://zuki.dev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorrupt952%2Fvoyager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorrupt952%2Fvoyager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorrupt952%2Fvoyager/lists"}