{"id":39764932,"url":"https://github.com/mparticle/aquarium","last_synced_at":"2026-02-17T04:03:38.568Z","repository":{"id":333021822,"uuid":"727900340","full_name":"mParticle/aquarium","owner":"mParticle","description":"mParticle Component Library","archived":false,"fork":false,"pushed_at":"2026-01-23T04:11:08.000Z","size":165697,"stargazers_count":5,"open_issues_count":16,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-01-23T21:22:53.779Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mParticle.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2023-12-05T20:07:02.000Z","updated_at":"2026-01-16T21:45:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"b78606a9-b16e-4bf0-86fe-0fd0c6abe03b","html_url":"https://github.com/mParticle/aquarium","commit_stats":null,"previous_names":["mparticle/aquarium"],"tags_count":307,"template":false,"template_full_name":null,"purl":"pkg:github/mParticle/aquarium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mParticle%2Faquarium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mParticle%2Faquarium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mParticle%2Faquarium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mParticle%2Faquarium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mParticle","download_url":"https://codeload.github.com/mParticle/aquarium/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mParticle%2Faquarium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28798586,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T01:07:07.743Z","status":"online","status_checked_at":"2026-01-27T02:00:07.755Z","response_time":168,"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-01-18T11:44:09.153Z","updated_at":"2026-01-27T03:00:51.290Z","avatar_url":"https://github.com/mParticle.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![higgs_aquarium](https://github.com/user-attachments/assets/7c883814-792b-4a72-9621-94c16be6753f)\n\n\u003ca href=\"https://mparticle.github.io/aquarium/\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/storybooks/brand/master/badge/badge-storybook.svg\"\u003e\u003c/a\u003e\n\u0026nbsp;\u0026nbsp;\n\n# mParticle Aquarium\n\nmParticle Component Library built on top of [Ant Design](https://ant.design/).\n\n_Components That Scale_\n\n## Installation\n\n\u003ca href=\"https://github.com/mParticle/aquarium/blob/main/LLM_SETUP_PROMPT.md\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/badge/📋_Setup_with_LLM-blue?style=flat\" alt=\"Setup with LLM\"\u003e\u003c/a\u003e\n\n### Requirements\n\n| Dependency | Version     | Notes                    |\n| ---------- | ----------- | ------------------------ |\n| React      | `\u003e=17.0.2`  | React 17 or 18           |\n| React DOM  | `\u003e=17.0.2`  | Must match React version |\n| Node.js    | `\u003e=24.12.0` | For development          |\n\n### Quick Start\n\n```bash\nyarn add @mparticle/aquarium antd@5 dayjs@1\n```\n\nOr with npm:\n\n```bash\nnpm install @mparticle/aquarium antd@5 dayjs@1\n```\n\n### Setup\n\nAdd the CSS reset to your app entry point (`_app.tsx`, `layout.tsx`, or `index.tsx`):\n\n```typescript\nimport 'antd/dist/reset.css'\n```\n\n### Usage\n\n```tsx\nimport { Button, Space, Typography } from '@mparticle/aquarium'\nimport { PaddingSm } from '@mparticle/aquarium/dist/style'\n\nexport const MyComponent = () =\u003e {\n  return (\n    \u003cSpace direction=\"vertical\"\u003e\n      \u003cTypography.Title level={3}\u003eHello Aquarium\u003c/Typography.Title\u003e\n      \u003cTypography.Text\u003eSuccessfully installed!\u003c/Typography.Text\u003e\n      \u003cSpace\u003e\n        \u003cButton type=\"primary\" style={{ paddingLeft: PaddingSm }}\u003e\n          Primary\n        \u003c/Button\u003e\n        \u003cButton\u003eDefault\u003c/Button\u003e\n      \u003c/Space\u003e\n    \u003c/Space\u003e\n  )\n}\n```\n\n## Development\n\nClone the repository and install dependencies:\n\n```bash\ngit clone git@github.com:mParticle/aquarium.git\ncd aquarium\nnpm install\n```\n\nRun Storybook for local development:\n\n```bash\nnpm run storybook\n```\n\nRun unit tests:\n\n```bash\nnpm run test-storybook\n```\n\n## Contributing\n\nSee [CONTRIBUTING.md](https://github.com/mParticle/aquarium/blob/main/CONTRIBUTING.md).\n\nPlease make sure any new or updated components are present, tested and verified within [Storybook](https://storybook.js.org/).\n\n## Support\n\n\u003csupport@mparticle.com\u003e\n\n## License\n\nmParticle's Aquarium is available under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0). See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmparticle%2Faquarium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmparticle%2Faquarium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmparticle%2Faquarium/lists"}