{"id":51077098,"url":"https://github.com/z-js-framework/z","last_synced_at":"2026-06-23T15:02:59.568Z","repository":{"id":262776414,"uuid":"888309959","full_name":"Z-Js-Framework/z","owner":"Z-Js-Framework","description":"A Typescript + Vite Rewrite Of The Z Js Framework","archived":false,"fork":false,"pushed_at":"2024-11-23T13:32:01.000Z","size":51,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-11-23T14:26:39.361Z","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/Z-Js-Framework.png","metadata":{"files":{"readme":"README-old.md","changelog":null,"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":"2024-11-14T07:15:04.000Z","updated_at":"2024-11-23T13:32:04.000Z","dependencies_parsed_at":"2024-11-14T08:24:23.711Z","dependency_job_id":"8df7e31f-1a54-4e8e-b9e6-8c9d9ec23dd6","html_url":"https://github.com/Z-Js-Framework/z","commit_stats":null,"previous_names":["z-js-framework/z"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Z-Js-Framework/z","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z-Js-Framework%2Fz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z-Js-Framework%2Fz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z-Js-Framework%2Fz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z-Js-Framework%2Fz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Z-Js-Framework","download_url":"https://codeload.github.com/Z-Js-Framework/z/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Z-Js-Framework%2Fz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34694786,"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-23T02:00:07.161Z","response_time":65,"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":"2026-06-23T15:02:58.574Z","updated_at":"2026-06-23T15:02:59.560Z","avatar_url":"https://github.com/Z-Js-Framework.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vite-setup\n\nA robust TypeScript library boilerplate built with Vite, featuring comprehensive development tooling and automated workflows.\n\n## How To Use?\n\nTo use this template or setup make sure to do some house cleaning first, update the following files with the right info:\n\n- package.json -- the github links, package name etc.\n- License file -- to whatever type of license you want.\n- Readme file -- yes this very one you reading, correct instructions as per your lib\n- index.html file if any, perhaps the head part and meta tags!\n\n\u003e Note: don't touch the scripts section unless you really should.\n\n## Features\n\n- 🏗️ **Built with Vite \u0026 TypeScript** - Modern build tooling with type safety\n- 🧪 **Testing** - Configured with Vitest for unit testing and coverage reports\n- 📦 **Size Limits** - Enforced bundle size limits with `size-limit`\n- 🔄 **Automated Versioning** - Using `changesets` for version management\n- 🎨 **Code Quality**\n  - ESLint for code linting\n  - Prettier for consistent code formatting\n  - TypeScript strict mode enabled\n- ✅ **Quality Checks**\n  - Export validation with `@arethetypeswrong/cli`\n  - Automated CI/CD with GitHub Actions\n  - Pre-commit and version hooks\n- 📊 **Bundle Analysis** - Size analysis with detailed reports\n\n## Installation\n\n```bash\nnpm install vite-setup\n# or\nyarn add vite-setup\n# or\npnpm add vite-setup\n```\n\n## Usage\n\n```typescript\nimport { yourFunction } from 'vite-setup';\n\n// Your usage example here\n```\n\n## Development Scripts\n\n| Script               | Description                   |\n| -------------------- | ----------------------------- |\n| `pnpm build`         | Build the library             |\n| `pnpm test`          | Run tests                     |\n| `pnpm test:watch`    | Run tests in watch mode       |\n| `pnpm test:coverage` | Generate test coverage report |\n| `pnpm type-check`    | Run TypeScript type checking  |\n| `pnpm lint`          | Lint the codebase             |\n| `pnpm format`        | Format code with Prettier     |\n| `pnpm size`          | Check bundle size             |\n| `pnpm size:analyze`  | Analyze bundle size in detail |\n| `pnpm check-exports` | Validate package exports      |\n| `pnpm ci`            | Run all CI checks             |\n\n## Development Workflow\n\n1. Make your changes\n2. Run quality checks:\n\n   ```bash\n   pnpm type-check\n   pnpm lint\n   pnpm test\n   ```\n\n3. Create a changeset (for version management):\n\n   ```bash\n   pnpm changeset\n   ```\n\n4. Commit changes and push\n\n## Bundle Size Limits\n\nCurrent limits are set to:\n\n- ES Module: 10kb\n- UMD Bundle: 10kb\n\nConfigure limits in `package.json` under `size-limit` section.\n\n## Environment Requirements\n\n- Node.js \u003e=18\n- pnpm 8.0.0 or higher\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch: `git checkout -b feature/new-feature`\n3. Commit your changes: `git commit -am 'Add new feature'`\n4. Push to the branch: `git push origin feature/new-feature`\n5. Submit a pull request\n\n## Quality Checks\n\nBefore each release, the following checks are automatically run:\n\n- TypeScript type checking\n- ESLint validation\n- Unit tests\n- Export validation\n- Bundle size checks\n\n## License\n\nMIT License - see the [LICENSE](LICENSE) file for details\n\n## Support\n\n- Issues: [GitHub Issues](https://github.com/yourusername/vite-setup/issues)\n- Discussions: [GitHub Discussions](https://github.com/yourusername/vite-setup/discussions)\n\n## Acknowledgments\n\nThis template includes configurations and tooling inspired by modern JavaScript library development best practices.\n\n---\n\nBuilt with ❤️ using Vite, TypeScript And A Bunch Of Cool Lovely Little Tools. Looking to improve? PRs and suggestions are welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz-js-framework%2Fz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz-js-framework%2Fz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz-js-framework%2Fz/lists"}