{"id":18409977,"url":"https://github.com/snowdogapps/alpaca-ui","last_synced_at":"2025-04-07T09:34:20.331Z","repository":{"id":44481573,"uuid":"147656576","full_name":"SnowdogApps/alpaca-ui","owner":"SnowdogApps","description":"Components library of Alpaca design system crafted for ecommerce","archived":false,"fork":false,"pushed_at":"2022-08-01T08:12:06.000Z","size":7160,"stargazers_count":19,"open_issues_count":36,"forks_count":7,"subscribers_count":16,"default_branch":"develop","last_synced_at":"2024-10-29T08:28:26.144Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"https://alpaca-ui.now.sh","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/SnowdogApps.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}},"created_at":"2018-09-06T10:20:11.000Z","updated_at":"2023-07-27T12:04:18.000Z","dependencies_parsed_at":"2022-08-12T11:11:28.798Z","dependency_job_id":null,"html_url":"https://github.com/SnowdogApps/alpaca-ui","commit_stats":null,"previous_names":["snowdogapps/alpaca-storybook"],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SnowdogApps%2Falpaca-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SnowdogApps%2Falpaca-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SnowdogApps%2Falpaca-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SnowdogApps%2Falpaca-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SnowdogApps","download_url":"https://codeload.github.com/SnowdogApps/alpaca-ui/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223277060,"owners_count":17118464,"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":["hacktoberfest"],"created_at":"2024-11-06T03:28:23.093Z","updated_at":"2024-11-06T03:28:25.460Z","avatar_url":"https://github.com/SnowdogApps.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://alpaca-ui.now.sh/assets/icons/alpaca.svg\" alt=\"Alpaca logo\" height=\"100\" /\u003e\n\u003c/p\u003e\n\u003cbr/\u003e\n\n\n## Alpaca UI\n\n[![CircleCI](https://circleci.com/gh/SnowdogApps/alpaca-ui/tree/develop.svg?style=svg)](https://circleci.com/gh/SnowdogApps/alpaca-ui/tree/develop)\n[![npm version](https://badge.fury.io/js/%40snowdog%2Falpaca-ui.svg)](https://www.npmjs.com/package/@snowdog/alpaca-ui)\n[![codecov](https://codecov.io/gh/SnowdogApps/alpaca-ui/branch/develop/graph/badge.svg)](https://codecov.io/gh/SnowdogApps/alpaca-ui)\n\nHighly customizable library of responsive UI components crafted for e-commerce. It is based on Vue.js and Alpaca design system.\n\n\u003e ⚠️ This library is currently in an early stage. Expect things to be broken or APIs to change as this project matures. DO NOT USE IT IN PRODUCTION!\n\n## Features\n\n- High customization and performance\n- Possibility to override global variables\n- Possibility to override components from partials (HTML/JS/SCSS)\n- Semantic and accessible code output\n- Ready to use with Vue CLI, Vue Storefornt and Nuxt.js\n\n\n## Getting Started\n\n### Installation\n\nAdd Alpaca UI to your project by using Yarn\n```bash\nyarn add @snowdog/alpaca-ui\n```\n\nor NPM\n```bash\nnpm install @snowdog/alpaca-ui\n```\n\n### Usage\n\nImport component in your app using named imports:\n\n`import { AButton } from '@snowdog/alpaca-ui'`\n\n```vue\n\u003ctemplate\u003e\n  \u003ca-button\u003e\n    Alpaca button\n  \u003c/a-button\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport { AButton } from '@snowdog/alpaca-ui'\n\nexport default {\n  name: 'MyComponent',\n  components: AButton\n}\n\u003c/script\u003e\n```\n\nIf you need more flexibility you can take the source:\n\n```vue\n\u003ctemplate src=\"@snowdog/alpaca-ui/src/atoms/button/Button.html\" /\u003e\n\n\u003cscript\u003e\nimport AButton from '@snowdog/alpaca-ui/src/atoms/button/Button.js'\n\nexport default {\n  mixins: [AButton]\n}\n\u003c/script\u003e\n\n\u003cstyle src=\"@snowdog/alpaca-ui/src/atoms/button/Button.scss\" lang=\"scss\" /\u003e\n```\nFor now, to see all possible cases/modifiers, you should clone and run repo as in Development point, or check .stories.js file in component.\n\n## Browser support\n\nRecent versions of Firefox, Chrome, Edge, Opera, Safari and IE11+.\n\n## Contributing\n\nRead our contributing guide and let's build a better components together.\nWe welcome all contributions. Please read our [CONTRIBUTING.md](https://github.com/SnowdogApps/alpaca-ui/blob/develop/CONTRIBUTING.md) first. You can submit any ideas as GitHub issues.\n\n## Development\n\n```bash\ngit clone git@github.com:SnowdogApps/alpaca-ui.git\ncd alpaca-ui\nyarn\nyarn dev\n```\n\nOpen your browser, visit http://127.0.0.1:6006 and have fun.\n\n## License\n\nCode released under MIT license.\nCopyright (c), [SNOW.DOG](https://snow.dog).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowdogapps%2Falpaca-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnowdogapps%2Falpaca-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowdogapps%2Falpaca-ui/lists"}