{"id":35003351,"url":"https://github.com/productdevbook/abckit","last_synced_at":"2026-01-20T17:56:27.416Z","repository":{"id":328015058,"uuid":"1110103671","full_name":"productdevbook/abckit","owner":"productdevbook","description":"Nuxt 4 module — UI components, auth, storage, GraphQL","archived":false,"fork":false,"pushed_at":"2025-12-25T19:28:10.000Z","size":2175,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-26T10:40:28.880Z","etag":null,"topics":["auth","better-auth","graphql","nuxt","nuxt-module","pinia","reka-ui","shadcn","tailwindcss","ui-components","vue"],"latest_commit_sha":null,"homepage":"https://npmjs.com/package/abckit","language":"Vue","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/productdevbook.png","metadata":{"files":{"readme":"README.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["productdevbook"]}},"created_at":"2025-12-04T18:05:08.000Z","updated_at":"2025-12-25T19:28:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/productdevbook/abckit","commit_stats":null,"previous_names":["productdevbook/abckit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/productdevbook/abckit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fabckit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fabckit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fabckit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fabckit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/productdevbook","download_url":"https://codeload.github.com/productdevbook/abckit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fabckit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28071879,"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-12-27T02:00:05.897Z","response_time":58,"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":["auth","better-auth","graphql","nuxt","nuxt-module","pinia","reka-ui","shadcn","tailwindcss","ui-components","vue"],"created_at":"2025-12-27T04:12:33.541Z","updated_at":"2025-12-27T04:12:34.148Z","avatar_url":"https://github.com/productdevbook.png","language":"Vue","funding_links":["https://github.com/sponsors/productdevbook"],"categories":[],"sub_categories":[],"readme":"# abckit\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![License][license-src]][license-href]\n\nNuxt 4 module — UI components, auth, storage, GraphQL.\n\n## Install\n\n```bash\npnpm add abckit\n```\n\n```typescript\n// nuxt.config.ts\nexport default defineNuxtConfig({\n  modules: ['abckit'],\n})\n```\n\n## Modules\n\n```typescript\nabckit: {\n  modules: {\n    // Default: true\n    tailwindcss: true,\n    notivue: true,\n    icon: true,\n    colada: true,\n    colorMode: true,\n    vueuse: true,\n    pinia: true,\n    veeValidate: true,\n    graphql: true,\n    persistedState: true,\n    ionic: true,\n    scripts: true,\n\n    // Default: false\n    sentry: false,\n\n    // all: true // Enable all\n  },\n  auth: {\n    baseURL: 'https://api.example.com',\n    basePath: '/api/auth',\n    capacitor: false,\n  },\n}\n```\n\n## Usage\n\n```typescript\nimport { Button } from 'abckit/shadcn/button'\nimport { useAuth } from 'abckit/composables/useAuth'\nimport { cn } from 'abckit/utils'\n```\n\n## Runtime Config\n\n```typescript\nruntimeConfig: {\n  dragonfly: { host: 'localhost', port: 6379 },\n  s3: { accessKeyId: '', secretAccessKey: '', endpoint: '', bucket: '' },\n  storage: { redis: true, s3: true, disk: false },\n}\n```\n\n## Development\n\n```bash\npnpm install \u0026\u0026 pnpm dev:prepare \u0026\u0026 pnpm dev\n```\n\n## License\n\nMIT\n\n\u003c!-- Badges --\u003e\n[npm-version-src]: https://img.shields.io/npm/v/abckit?style=flat\u0026colorA=080f12\u0026colorB=1fa669\n[npm-version-href]: https://npmjs.com/package/abckit\n[npm-downloads-src]: https://img.shields.io/npm/dm/abckit?style=flat\u0026colorA=080f12\u0026colorB=1fa669\n[npm-downloads-href]: https://npmjs.com/package/abckit\n[license-src]: https://img.shields.io/github/license/productdevbook/abckit.svg?style=flat\u0026colorA=080f12\u0026colorB=1fa669\n[license-href]: https://github.com/productdevbook/abckit/blob/main/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproductdevbook%2Fabckit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproductdevbook%2Fabckit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproductdevbook%2Fabckit/lists"}