[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-82114":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":8,"htmlUrl":8,"language":9,"languages":8,"totalLinesOfCode":8,"stars":10,"forks":11,"watchers":12,"openIssues":13,"contributorsCount":13,"subscribersCount":13,"size":13,"stars1d":14,"stars7d":15,"stars30d":16,"stars90d":13,"forks30d":13,"starsTrendScore":17,"compositeScore":18,"rankGlobal":8,"rankLanguage":8,"license":8,"archived":19,"fork":19,"defaultBranch":20,"hasWiki":21,"hasPages":19,"topics":22,"createdAt":8,"pushedAt":8,"updatedAt":23,"readmeContent":24,"aiSummary":25,"trendingCount":13,"starSnapshotCount":13,"syncStatus":14,"lastSyncTime":26,"discoverSource":27},82114,"prediction-market","hkirat\u002Fprediction-market","hkirat",null,"TypeScript",29,4,21,0,2,5,7,6,2.1,false,"main",true,[],"2026-06-12 02:04:23","# Turborepo starter\n\nThis Turborepo starter is maintained by the Turborepo core team.\n\n## Using this example\n\nRun the following command:\n\n```sh\nnpx create-turbo@latest\n```\n\n## What's inside?\n\nThis Turborepo includes the following packages\u002Fapps:\n\n### Apps and Packages\n\n- `docs`: a [Next.js](https:\u002F\u002Fnextjs.org\u002F) app\n- `web`: another [Next.js](https:\u002F\u002Fnextjs.org\u002F) app\n- `@repo\u002Fui`: a stub React component library shared by both `web` and `docs` applications\n- `@repo\u002Feslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)\n- `@repo\u002Ftypescript-config`: `tsconfig.json`s used throughout the monorepo\n\nEach package\u002Fapp is 100% [TypeScript](https:\u002F\u002Fwww.typescriptlang.org\u002F).\n\n### Utilities\n\nThis Turborepo has some additional tools already setup for you:\n\n- [TypeScript](https:\u002F\u002Fwww.typescriptlang.org\u002F) for static type checking\n- [ESLint](https:\u002F\u002Feslint.org\u002F) for code linting\n- [Prettier](https:\u002F\u002Fprettier.io) for code formatting\n\n### Build\n\nTo build all apps and packages, run the following command:\n\nWith [global `turbo`](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fgetting-started\u002Finstallation#global-installation) installed (recommended):\n\n```sh\ncd my-turborepo\nturbo build\n```\n\nWithout global `turbo`, use your package manager:\n\n```sh\ncd my-turborepo\nnpx turbo build\nbun dlx turbo build\nbun exec turbo build\n```\n\nYou can build a specific package by using a [filter](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fcrafting-your-repository\u002Frunning-tasks#using-filters):\n\nWith [global `turbo`](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fgetting-started\u002Finstallation#global-installation) installed:\n\n```sh\nturbo build --filter=docs\n```\n\nWithout global `turbo`:\n\n```sh\nnpx turbo build --filter=docs\nbun exec turbo build --filter=docs\nbun exec turbo build --filter=docs\n```\n\n### Develop\n\nTo develop all apps and packages, run the following command:\n\nWith [global `turbo`](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fgetting-started\u002Finstallation#global-installation) installed (recommended):\n\n```sh\ncd my-turborepo\nturbo dev\n```\n\nWithout global `turbo`, use your package manager:\n\n```sh\ncd my-turborepo\nnpx turbo dev\nbun exec turbo dev\nbun exec turbo dev\n```\n\nYou can develop a specific package by using a [filter](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fcrafting-your-repository\u002Frunning-tasks#using-filters):\n\nWith [global `turbo`](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fgetting-started\u002Finstallation#global-installation) installed:\n\n```sh\nturbo dev --filter=web\n```\n\nWithout global `turbo`:\n\n```sh\nnpx turbo dev --filter=web\nbun exec turbo dev --filter=web\nbun exec turbo dev --filter=web\n```\n\n### Remote Caching\n\n> [!TIP]\n> Vercel Remote Cache is free for all plans. Get started today at [vercel.com](https:\u002F\u002Fvercel.com\u002Fsignup?utm_source=remote-cache-sdk&utm_campaign=free_remote_cache).\n\nTurborepo can use a technique known as [Remote Caching](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fcore-concepts\u002Fremote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI\u002FCD pipelines.\n\nBy default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https:\u002F\u002Fvercel.com\u002Fsignup?utm_source=turborepo-examples), then enter the following commands:\n\nWith [global `turbo`](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fgetting-started\u002Finstallation#global-installation) installed (recommended):\n\n```sh\ncd my-turborepo\nturbo login\n```\n\nWithout global `turbo`, use your package manager:\n\n```sh\ncd my-turborepo\nnpx turbo login\nbun exec turbo login\nbun exec turbo login\n```\n\nThis will authenticate the Turborepo CLI with your [Vercel account](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fconcepts\u002Fpersonal-accounts\u002Foverview).\n\nNext, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:\n\nWith [global `turbo`](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fgetting-started\u002Finstallation#global-installation) installed:\n\n```sh\nturbo link\n```\n\nWithout global `turbo`:\n\n```sh\nnpx turbo link\nbun exec turbo link\nbun exec turbo link\n```\n\n## Useful Links\n\nLearn more about the power of Turborepo:\n\n- [Tasks](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fcrafting-your-repository\u002Frunning-tasks)\n- [Caching](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fcrafting-your-repository\u002Fcaching)\n- [Remote Caching](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fcore-concepts\u002Fremote-caching)\n- [Filtering](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Fcrafting-your-repository\u002Frunning-tasks#using-filters)\n- [Configuration Options](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Freference\u002Fconfiguration)\n- [CLI Usage](https:\u002F\u002Fturborepo.dev\u002Fdocs\u002Freference\u002Fcommand-line-reference)\n","该项目提供了一个基于Turborepo的启动模板，旨在简化大型代码仓库（monorepo）的管理和开发流程。它包含了两个使用Next.js构建的应用程序、一个共享React组件库以及预配置的ESLint和TypeScript设置，全部采用TypeScript编写，确保了静态类型检查与代码质量。此外，项目支持通过Turbo进行高效的任务执行与远程缓存，这使得在不同环境间同步构建结果变得容易。此模板特别适用于需要维护多个相关项目的团队，尤其是那些希望利用现代前端工具链提高开发效率并保持代码一致性的场景。","2026-06-11 04:07:48","CREATED_QUERY"]