{"id":51261306,"url":"https://github.com/vanduo-oss/vd2","last_synced_at":"2026-06-29T12:02:20.232Z","repository":{"id":367822118,"uuid":"1277066048","full_name":"vanduo-oss/vd2","owner":"vanduo-oss","description":"Documentation site for Vanduo Framework built on Vue3","archived":false,"fork":false,"pushed_at":"2026-06-27T19:44:29.000Z","size":25611,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-27T21:19:09.764Z","etag":null,"topics":["documentation","typescript","vanduo-framework","vue3"],"latest_commit_sha":null,"homepage":"http://vanduo.dev/","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/vanduo-oss.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":"SECURITY-AUDIT.md","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":"2026-06-22T14:50:05.000Z","updated_at":"2026-06-27T19:44:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vanduo-oss/vd2","commit_stats":null,"previous_names":["vanduo-oss/vd2"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/vanduo-oss/vd2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanduo-oss%2Fvd2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanduo-oss%2Fvd2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanduo-oss%2Fvd2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanduo-oss%2Fvd2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vanduo-oss","download_url":"https://codeload.github.com/vanduo-oss/vd2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vanduo-oss%2Fvd2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34925718,"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-29T02:00:05.398Z","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":["documentation","typescript","vanduo-framework","vue3"],"created_at":"2026-06-29T12:02:19.651Z","updated_at":"2026-06-29T12:02:20.225Z","avatar_url":"https://github.com/vanduo-oss.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vd2 — Vue 3 docs for `@vanduo-oss/framework`\n\n`vd2` is a Vue 3 + Vite + `vite-ssg` recreation of the Vanduo docs\nsite. It consumes `@vanduo-oss/framework` for CSS tokens and component\nclasses only — no JavaScript coupling to the framework runtime.\n\n## Stack\n\n- Vue 3 (Composition API, `\u003cscript setup lang=\"ts\"\u003e`)\n- vue-router 4 (`createWebHistory`, clean URLs)\n- Pinia 2 (setup-style stores)\n- Vite 5 + `vite-ssg` 0.24 (pre-rendered static output)\n- TypeScript 5 (strict) + `vue-tsc`\n- Vitest 2 + `@vue/test-utils` for composables/logic\n- Playwright 1.60 for e2e\n\n## Requirements\n\n- Node ≥ 20\n- pnpm 10.28.2 (auto-provisioned via `corepack enable`)\n\n## Install\n\n```bash\ncorepack enable\npnpm install\n```\n\n\u003e Note: `.npmrc` mirrors the framework repo's hardened install policy\n\u003e (`save-exact=true`, `ignore-scripts=true`, `minimum-release-age=1440`,\n\u003e `trust-policy=no-downgrade`, `block-exotic-subdeps=true`,\n\u003e `strict-peer-dependencies=true`). The `@vanduo-oss/*` scope is\n\u003e excluded from the 24-hour release-age gate so internal publishes are\n\u003e consumed immediately.\n\n## Scripts\n\n```bash\npnpm run dev          # Vite dev server at http://localhost:5173\npnpm run build        # vite-ssg -\u003e dist/\npnpm run preview      # static preview at http://localhost:8787\npnpm run typecheck    # vue-tsc --noEmit\npnpm run lint         # ESLint (flat config)\npnpm run stylelint    # Stylelint\npnpm run format       # Prettier write\npnpm run format:check # Prettier check (CI)\npnpm test             # Vitest (unit)\npnpm run test:size    # gzipped bundle-size reporter\npnpm run test:e2e     # Playwright Chromium Desktop smoke\n```\n\n## Layout\n\n```text\nsrc/\n  main.ts             # vite-ssg app factory\n  App.vue             # \u003cRouterView /\u003e shell\n  router.ts           # route table\n  nav.ts              # navigation tree\n  components/         # Vd* SFCs (primitives, layout, overlays, etc.)\n  components/primitives/\n  composables/        # reusable composition functions\n  layout/             # navbar, footer, sidenav, sticky, waypoint\n  overlays/           # offcanvas, search modal\n  pages/              # one SFC per route\n  stores/             # Pinia setup-style stores\n  styles/             # CSS (app.css shell only)\n\ntests/\n  unit/               # Vitest specs\n  e2e/                # Playwright specs\n  scripts/size.mjs    # bundle-size reporter\n\nopenspec/\n  changes/            # OpenSpec change proposals\n  specs/              # normative specs\n```\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for the OpenSpec change-folder\nconvention, branch/no-push policy, validation commands, and release\nprocess.\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md) for the release history.\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvanduo-oss%2Fvd2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvanduo-oss%2Fvd2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvanduo-oss%2Fvd2/lists"}